@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');
html{
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  /* font-family: "Nunito Sans", sans-serif; */
  font-size: 14px;
  font-weight: 300;
  color: #9e9e9e;
  background-color: #000;
}
/* h1, h2, h3, h4, h5, h6{
  font-family: "Archivo Narrow", sans-serif;
} */
label.error{
    color: #f76b6b;
    font-size: 12px;
}
.navbar {
  padding-top: 30px;
  transition: all ease-in 0.3s;
}
.navbar.sticky {
  padding-top: 10px;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00; /* Orange color */
}
.navbar-nav .nav-link {
  color: white;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
  background: #000;
  padding: 0;
}
.navbar-expand-lg .navbar-nav .dropdown-menu ul{
  padding-left: 0;
}
.navbar-expand-lg .navbar-nav .dropdown-menu ul li{
  list-style-type: none;
}
.dropdown-item{
  color: #fff;
  padding: .75rem 1.5rem;
  transition: all .2s ease-in;
}
.dropdown-item:hover{
  background: #818181;
  color:#fff;
}
.dropdown-item.active, .dropdown-item:active {
  background: #ff8c00;
}
.btn-custom {
  background-color: #ff8c00;
  color: white;
  border: none;
  font-size: 14px;
  padding: 10px 40px 10px 22px;
  position: relative;
}
.btn-custom::after {
  content: "➜";
  position: absolute;
  right: 20px;
  transform: rotate(-45deg);
  transition: all ease-in 0.2s;
}
.btn-custom::before {
  content: "";
  border: 2px solid #ff8c00;
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  transition: all ease-in-out 0.5s;
  filter: blur(0px);
  opacity: 1;
}
.btn-custom:hover {
  background-color: #e67e00;
  color: white;
}
.btn-custom:hover::after {
  transform: rotate(0deg);
}
.btn-custom:hover::before {
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  filter: blur(2px);
  opacity: 0;
}
.footer {
  background-color: #000000; /* Black background color */
  padding: 100px 0 20px;
}
footer h5 {
  color: #fff;
  font-weight: 700;
}
.footer .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00; /* Orange color for UXP logo */
}
.footer .footer-links {
  margin-top: 20px;
}
.footer .footer-links a {
  color: #9e9e9e;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer .footer-links a:hover {
  color: #ff8c00; /* Orange color on hover */
}
.footer .social-icon {
  color: #ffffff;
  font-size: 20px;
}
.footer .social-icon:hover {
  color: #ff8c00; /* Orange color on hover */
}
.footer .copyright {
  margin-top: 40px;
  border-top: 1px solid #262626;
  padding-top: 20px;
  font-size: 0.9rem;
}
/*offer area*/
.offer-area {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.offer-tab-link {
  text-align: center;
}
.offer-tab-link ul li {
  display: inline-block;
  padding: 10px 0;
  margin: 0 -3px;
}
.offer-tab-link ul li a {
  display: block;
  color: #000;
  font-size: 20px;
  padding: 10px 60px;
  border-bottom: 4px solid #000;
  font-weight: 500;
}
.offer-tab-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
  justify-content: center;
}
.offer-tab-link ul li a.active {
  color: darkcyan;
  border-color: darkcyan;
}
.offer-content p {
  text-align: left;
  margin: 0;
  width: 100%;
}
.offer-content h2 {
  text-align: left;
}
.offerItem {
  padding: 0px;
  width: 68.5px;
  overflow: hidden;
  float: left;
  position: relative;
  transition: 0.3s ease;
}
.offer-img {
  margin: 0 -15px;
}
.offer-detail {
  width: 800px;
  padding: 30px 30px 30px;
  background-size: 730px;
  min-height: 500px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.offer-detail::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.offer-detail .row {
  width: 100%;
  position: relative;
  z-index: 2;
}
.offer-detail .row .numbers {
  display: block;
  font-size: 37px;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}
.offerItemTitle {
  position: absolute;
  left: 35px;
  z-index: 1;
  width: 545px;
  color: #fff;
  transform: rotate(-90deg);
  transform-origin: left;
  margin: 0 auto;
  top: 92.6%;
  height: 80px;
  line-height: 80px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding-left: 90px;
  font-size: 18px;
  z-index: 9;
}
.offerItemTitle .numbers {
  position: absolute;
  transform: rotate(90deg);
  font-size: 20px;
  left: 20px;
}
.offerItemTitle::before {
  content: "➜";
  color: #e67e00;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  right: 65px;
  transform: rotate(45deg);
  z-index: 1;
}
.offerItem.active {
  width: calc(100% - 6 * 80px);
}
.offerItem.active .offer-detail {
  width: 1007px;
  background-position: center;
}
.offerItem.active .offer-img {
  max-width: 415px;
}
.offerItem.active .offer-detail .row .col:first-child {
  max-width: 50% !important;
  line-height: 22px;
}
.offer-content {
  max-width: 460px;
  margin: 0 auto;
  top: 50%;
  position: relative;
  transform: translate(0, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.offer-tabs.tab-content {
  padding: 10px 0;
}
.offerslide:after {
  content: "";
  clear: both;
  display: block;
}
.offer-content p {
  color: #fff;
}
.offer-content h2 {
  font-size: 24px;
  color: #fff;
}
.offerItemTitle.hide {
  display: none;
}
.offerItem.active .offer-content {
  transition: 0.3s ease;
  opacity: 1;
}
.offer-content a {
  color: #ff8c00;
  position: relative;
  margin-top: 15px;
  display: inline-block;
}
.offer-content a:after {
  background-color: #ff8c00;
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: -16px;
  bottom: -2px;
  transition: all ease-in 0.3s;
}
.offer-content a:before {
  content: "➜";
  color: #e67e00;
  position: absolute;
  right: -18px;
  transform: rotate(-45deg);
  bottom: 0px;
  transition: all ease-in 0.3s;
}
.offer-content a:hover {
  text-decoration: none;
  color: #fff;
}
.offer-content a:hover:after {
  background-color: #fff;
  right: 50px;
}
.offer-content a:hover:before {
  transform: rotate(0deg);
  color: #fff;
}

/*---responsive menu------*/
button:focus {
  outline: none;
}
.ham-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 0.25em;
  position: absolute;
  right: 0;
  top: 8px;
}

.ham-menu .line {
  background-color: white;
  border-radius: 1em;
  width: 2rem;
  height: 0.25rem;
}

.ham-menu .line1 {
  transform-origin: 0% 0%;
  transition: transform 100ms ease-in-out;
}

.ham-menu .line3 {
  transform-origin: 0% 100%;
  transition: transform 100ms ease-in-out;
}

.check:checked ~ .ham-menu .line1 {
  display: block;
  transform: rotate(45deg);
}

.check:checked ~ .ham-menu .line2 {
  opacity: 0;
}

.check:checked ~ .ham-menu .line3 {
  display: block;
  transform: rotate(-45deg);
}

/*end*/

/*media area*/
@media (max-width: 1750px) {
  .container {
    max-width: 1540px;
  }
}

@media (max-width: 1550px) {
  .container {
    max-width: 1340px;
  }
}

@media (max-width: 1450px) {
  .container {
    max-width: 1240px;
  }
  .offer-content {
    margin: 0;
    max-width: 420px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1140px;
  }
  .offerItem.active .offer-detail {
    width: 750px;
  }
  .offer-detail {
    width: 595px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  h4.offerItemTitle {
    height: 50px;
    line-height: 50px;
    left: 25px;
    top: 94%;
  }
  .offerItem {
    width: 50px;
  }
  .offerItem.active {
    width: calc(100% - 6 * 60px);
  }
  .offerItem.active .offer-content {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .offer-content p {
    font-size: 14px;
  }
  .offerItem.active .offer-content {
    margin-left: 0;
  }
  h4.offerItemTitle {
    font-size: 14px;
    top: 97%;
    height: 36px;
    line-height: 36px;
    left: 17px;
  }
  .offerItem.active .offer-detail {
    width: 500px;
  }
  .offer-content h2 {
    font-size: 18px;
    margin: 0;
  }
  .offer-content a {
    padding: 7px 13px;
    font-size: 16px;
    margin-top: 10px;
  }
  .offer-detail {
    width: 395px;
    max-height: 279px;
  }
  .offerItem {
    width: 35px;
  }
  .offerItem.active {
    width: calc(100% - 7 * 35px);
  }
  .main_banner_slider .owl-carousel .owl-item img {
    height: 100vh;
    object-fit: cover;
    min-height: 650px;
    object-position: right;
  }
  .headerbtn.btn-custom {
    right: 60px;
  }
  .collapse.show {
    background: #000;
    padding: 10px 20px;
    max-height: calc(100vh - 80px);
    overflow: scroll;
  }
  .collapse.show + .headerbtn.btn-custom {
    right: 60px;
    position: absolute;
    top: 5px;
  }
  #navbarNav {
    transition: none !important;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  .offerItem {
    width: 100%;
  }
  .offer-detail {
    width: 100%;
    max-height: unset;
    display: none;
  }
  h4.offerItemTitle {
    text-align: left;
    padding-left: 55px;
    position: relative;
    transform: rotate(0);
    border-bottom: 1px solid #999;
    height: 40px;
    line-height: 40px;
    width: 100%;
    left: 0;
  }
  .offer-img {
    margin: 0;
  }
  .offerItemTitle .numbers {
    transform: rotate(0deg);
  }

  .offer-content {
    margin: 0;
    max-width: 100%;
  }
  .offerItemTitle.hide {
    background: #de9400;
    display: block;
  }
  .offerItem.active .offer-detail {
    width: 100%;
    display: block;
  }
  .offerItem.active .offer-detail .row .col:first-child {
    max-width: 50% !important;
  }
  .offerItem.active {
    width: 100%;
  }
  .footer .copyright {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 574px) {
  .container {
    max-width: 100%;
  }
  .offerItem.active .offer-detail .row {
    display: block;
  }
  .offerItem.active .offer-detail .row .col {
    max-width: 100% !important;
  }
  .offer-content {
    transform: translate(0);
    top: 0;
    padding: 10px 0;
  }
  .offer-img,
  .offerItem.active .offer-img {
    width: 100%;
    max-width: unset;
  }
  .offer-img img {
    width: 100%;
  }
  .offerItem.active .offer-detail .row .col:first-child {
    max-width: 100% !important;
  }
}

.banner_absolute {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.content_banner {
  position: absolute;
  z-index: 15;
  top: 50%;
  transform: translateY(-50%);
}
.main_banner {
  display: flex;
  align-items: center;
  min-height: 650px;
}
.btn {
  border-radius: 0px;
}
.navbar-nav {
  gap: 20px;
}
.navbar-nav .nav-link {
  font-size: 14px;
}
.content_banner h1 {
  font-weight: 700;
  font-size: 50px;
}
.sub_text {
  position: relative;
  padding-left: 20px;
  margin: 15px 0px 25px;
}
.sub_text::before {
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: rgb(249, 139, 44);
  background: linear-gradient(
    180deg,
    rgba(249, 139, 44, 1) 0%,
    rgba(12, 92, 153, 1) 100%
  );
  content: "";
}
.badge {
  padding: 7px 20px 5px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 14px;
}
.badge-dark {
  background-color: #1a294a;
}
.owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}
.owl-prev,
.owl-next {
  color: #0a5b99 !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  background-color: rgba(0, 13, 28, 0.8) !important;
  transition: all ease-in 0.2s;
}
.owl-prev:hover,
.owl-next:hover {
  color: #ffffff !important;
  background-color: rgb(253 140 41) !important;
}
.owl-prev:focus,
.owl-next:focus {
  border: none !important;
  outline: none;
}
.owl-prev {
  left: 10px;
}
.owl-next {
  right: 10px;
}
.solid_right_border {
  border-right: 1px solid #262626;
}
.pl-7 {
  padding-left: 65px;
}
/*Hero Section*/
.hero-section {
  background-image: url("images/cta_bottom.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}
.hero-section p.font-1em{
  font-size: 14px;
}

.hero-section .checklist {
  text-align: left;
  display: grid;
  margin-top: 20px;
  grid-template-columns: 50% 50%;
  width: 50%;
  margin: auto;
}

.hero-section .checklist p {
  font-size: 1.1rem;
  margin: 0;
}

.hero-section .checklist p::before {
  content: "✔️";
  margin-right: 10px;
  color: #f39c12 !important;
}

.company-logos {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.company-logos > div {
  flex: 1;
/*   border: 1px solid #262626; */
  height: 90px;
  display: flex;
  justify-content: center;
  /* align-content: center; */
  align-items: center;
  position: relative;
  z-index: 1;
}

.company-logos > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
  backdrop-filter: blur(4px);
}
.company-logos img {
  max-height: 30px;
  margin: 25px;
  position: relative;
  z-index: 5;
}
.smallheads {
  font-size: 14px;
  font-weight: normal;
}
.fit_sub_p {
  width: 70%;
  margin: auto;
}
.offer_main_section {
  padding: 80px 15px;
  background-color: #000;
}
.main_banner_slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.main_banner_slider .owl-item.active .sub_text {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.5s;
}
.main_banner_slider .owl-item.active .sub_text:before {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: slideInRight;
  animation-delay: 0.8s;
}
.main_banner_slider .owl-item.active a {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.9s;
}
.main_banner_slider .owl-item.active .badge {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-delay: 0.3s;
}
.main_banner_slider .owl-carousel .owl-item img{
  height: 100%;
  object-fit: cover;
}
.content_banner .col-sm-6 {
  overflow: hidden;
}
.fixed-top::after {
  content: "";
  background: rgb(0, 31, 68);
  background: linear-gradient(
    0deg,
    rgba(0, 31, 68, 0) 0%,
    rgba(0, 31, 68, 0.22452731092436973) 17%,
    rgba(0, 31, 68, 1) 100%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -40px;
  z-index: 15;
  transition: all ease-in 0.3s;
  opacity: 0;
}
.fixed-top.sticky::after {
  opacity: 1;
}
.fixed-top .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.navbar .container {
  position: relative;
  z-index: 999;
}
/*------- nav banner-------------*/
.page-header_img{
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  position: relative;
}
.page-header_img::before{
  content: '';
  position: absolute;
  background-color: #00000023;
  width: 100%;
  height: 400px;
}
.page-header_img img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 400px;
  min-height: 235px;
}
.page-header_nav{
  position: absolute;
  top: 50%;
  transform: translate(0px -50%);
  color:#fff;
}
.page-header_nav h2{
  font-size: 45px;
  font-weight: 600;
}
/*------- About Section-------------*/
.section{
  padding: 60px 0;
}
.tab-header .nav-tabs{
    border-bottom: 1px solid #e0e1e23b;
}
.tab-header .nav-tabs li{
  width: 33.3333%;
  text-align: center;
} 
.tab-header .nav-tabs li:hover{
  border: none;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: transparent;
}
.nav-tabs .nav-link{
  color: #bbbbbb;
  padding-bottom: 15px;
}
.nav-tabs .nav-link.active{
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 2px solid #FD8C29;
}
.about-tab_content{
  padding-top: 45px;
}
.about-tab_content h6{
  color: #FD8C29;
  font-size: 14px;
}
.about-tab_content h2{
  color: #fff;
  margin: 20px 0;
}
.about-tab_content p{
  margin-top: 20px;
  font-size: 14px;
  line-height: 28px;
}
.tab_content_textleft{
  padding-right: 40px;
}
.tab_content_textright{
  padding-left: 40px;
}
.tab_content_textleft img, .tab_content_textright img{
  width: 100%;
  margin: 20px 0;
}
.orange-heading{
  color: #FD8C29;
  font-size: 14px;
}
.content-heading{
  color: #fff;
}
.heading-pera{
  max-width: 80%;
  margin: auto;
}
.ourpartners_content{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.styicky-menu{
  position: sticky;
  top: 70px;
  z-index: 99;
  background: #000;
/*   background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.225) 17%, rgb(0, 0, 0) 100%); */
}
#About {
  scroll-margin-top: 170px;
}

#Partners {
  scroll-margin-top: 120px;
}

#Customers {
  scroll-margin-top: 300px;
}
hr{
  border-top: 1px solid rgb(174 173 173 / 10%);
}
.partner-box.orange{
  background-color: #FD8C29;
  padding: 10px;
}
.partner-box.gray{
  background-color: #686868;
  padding: 10px;
}
.partner-box.blue{
  background-color: #0A5B99;
  padding: 10px;
}
.partner-box h5{
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
}
.partner-box-img{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.partner-squire{
  border-color: rgb(174 173 173 / 10%);
  border-style: solid;
  width: 50%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.partner-squire:nth-child(even){
  justify-content: flex-end;
}
.partner-squire img{
 /*  width: 100%; */
  object-fit: contain;
  padding: 0 10px;
  max-height: 28px;
}
.service-font p{
  font-size: 15px;
  font-weight: 400;
}
.service-heading-font p{
  font-size: 17px;
  color: #c4c3c3;
}
/* .border-all{
  border-width: 1px 1px 1px 1px;
  
} */
/* .border-right-top{
  border-width: 1px 1px 1px 0px;
}
.border-right-bottom{
  border-width: 0px 1px 1px 1px;
}
.border-left-bottom{
  border-width: 0px 1px 1px 0px;
} */
.border-all{
  border-width: 0;
  
}
.border-right-top{
  border-width: 0px;
}
.border-right-bottom{
  border-width: 0px;
}
.border-left-bottom{
  border-width: 0px;
}
/*--------------testimonial-----------*/
.testimonials-slider .slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  bottom: -60px;
}
.testimonials-section{
  position: relative;
}
.testimonials-slider::before{
    content: '';
    position: absolute;
    width: 85%;
    height: 1px;
    background-color: #ffffff2b;
    bottom: 0;
    margin: auto;
    left: 50%;
    transform: translate(-50%, 40px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.testimonials-slider.slick-slider {
  margin:0 0px;
}
.testimonials-slider .slick-slide {
  padding:10px;
  text-align:center;
  margin-right:15px;
  margin-left:15px;
}
.testimonials-slider .slider-item{
  position: relative;
}
.testimonials-slider .slider-item img{
  width: 100%;
}
.testimonials-slider .testimonials-slider_text{
  position: absolute;
  color:#fff;
  padding: 10px 15px;
  bottom: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.testimonials-slider .testimonials-slider_text p{
  font-size: 12px;
  font-weight: 300;
}
.slick-dots{
  display: flex;
  position: absolute;
  justify-content: center;
  width: calc(100% - 200px);
  left: 100px;
  margin: auto;
  padding-left: 0;
  bottom: -41px;
}
.slick-dots li{
  list-style-type: none;
  flex: 1 0 auto;
  text-align: center;
  display:flex;
  justify-content: flex-end;
}
.slick-dots li.slick-active{
  justify-content: flex-start;
}
.slick-dots li button{
  display: block;
  width: 0%;
  height: 3px;
  padding: 0;
  border: none;
  background-color: #fff;
  text-indent: -9999px;
  transition:all ease-in 0.5s;
}
.slick-dots li.slick-active button{
  width: 100%;
}
.testimonials-slider li.slick-active button {
  background-color: #fff;
}

/*-------------*/
.testimonials-slider_text{
  opacity: 0;
  transition: all .5s ease-in;
}
.slick-slider .slick-slide.slick-current .testimonials-slider_text{
  opacity: 1;
}

/*------- About page end-------------*/
/*------- SAP Solution page-------------*/
.sap-sol_img{
  display: flex;
  gap: 20px;
  padding-right: 50px;
}
.sap-sol_img img{
  width: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1.8;
}
.sap-sol_img img:last-child{
  margin-top: 50px;
}
.sap-sol-box h5{
  margin: 15px 0 20px 0;
  color:#fff;
}
.sap-sol-box img{
  width: 100%;
}
.sap-solcontent .col-md-4 .sap-sol-box::before{
  content: '';
  position: absolute;
  background: #ffffff2c;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
}
.sap-solcontent .col-md-4:nth-child(1) .sap-sol-box::before{
  width: 0px;
}
.text-white{
  color: #fff;
}
.sap-row_section{
  background-color: #111213;
  position: relative;
}
.sap-row_section img{
  width: 100%;
}
.sap-row_section h5{
  font-size: 26px;
}
.solution-count_right{
  position: absolute;
  right: 0;
  bottom: -47px;
  font-size: 140px;
  z-index: 0;
  font-weight: 700;
  color: #3e3e3e4f;
}
.solution-count_left{
  position: absolute;
  left: 0;
  bottom: -47px;
  font-size: 140px;
  z-index: 0;
  font-weight: 700;
  color: #3e3e3e4f;
}
.hiring-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}
.hiring-section img{
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}
.hiring-box{
  background: #323437;
}
.hiring-box .btn-custom::after{
  right: 50%;
  transform: translate(50px, 0%);
}
.w-70{
  width: 70%;
  margin: 0 auto;
}
.whyuxp-content{
  background: #111213;
  padding: 50px;
  width: 50%;
}
.whyuxp-box{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 40px;
}
.darkbg{
  background: #0D0D0E;
}
.emailbg{
  background: url(images/banner/careerbg1.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height:350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#main{
  margin-top: 60px;
}
#main #faq .card {
  margin-bottom: 0px;
  border: 0;
}

#main #faq .card .card-header {
  -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
          box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
  border-radius: 2px;
  padding: 0;
}

#main #faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  background: #111213;
  border-top: 2px solid darkorange;
  padding: 20px;
}

#main #faq .card .card-header .btn-header-link:after {
  content: "\2212";
  position: absolute;
  font-weight: 100;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  right: 12px;
  top: 9px;
  border: 1px solid darkorange;
  border-radius: 50px;
  background: darkorange;
}
#main #faq .card .card-header .btn-header-link .careertab-heading h6{
  color: darkorange;
}
#main #faq .card .card-header .btn-header-link.collapsed {
  background: #000000;
  border-top: 0;
  color: #fff;
  border-bottom: 1px solid #cccccc3b;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\002B";
  border: 1px solid #ccc;
  background: transparent;
}
#main #faq .card .card-header .btn-header-link.collapsed .careertab-heading h6{
  color: #C4C4C4;
}
#main #faq .card .collapsing {
  background: #111213;
  line-height: 30px;
}

#main #faq .card .collapse {
  border: 0;
}

#main #faq .card .collapse.show {
  background: #111213;
  line-height: 30px;
  color: #fff;
  border-bottom: 2px solid darkorange;
}
.careertab-heading{
  display: flex;
  align-items: center;
  gap: 80px;
  width: 70%;
}
.careertab-heading h6{
  font-size: 18px;
  color:#C4C4C4;
}
.careertab-heading h4{
  font-size: 21px;
  color:#fff;
  width: 260px;
}
.careertab-heading p{
  font-size: 15px;
  color:#C4C4C4;
  flex: 1;
}
.careertab-heading h6, .careertab-heading h4, .careertab-heading p{
  margin-bottom: 0;
}
.careertab-content img{
  width: 15px;
  margin-right: 10px;
  margin-bottom: 3px;
}
.careertab-content h5{
  margin-bottom: 0;
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 700;
}
.careertab-content p{
  font-size: 15px;
  color:#C4C4C4;
}
.career-responsibilities{
  display: flex;
  width: 100%;
  gap: 90px;
  margin-top: 30px;
  padding-bottom: 20px;
  align-items: baseline;
  border-bottom: 1px solid #cccccc25;
}
.career-responsibilities h6{
  font-size: 15px;
  width: 200px;
  font-weight: 500;
}
.career-responsibilities p{
  flex: 1;
}
.careertab-content ul{
  padding-left: 0;
}
.careertab-content ul li{
  list-style-type: none;
  color:#C4C4C4;
  font-size: 15px;
}
.careertab-content .headerbtn{
  width: 150px;
}
/*------- Careers page end-------------*/
/*------- contact page start-------------*/
.orange-text{
  color: #FD8C29;
}
.contact-map_location img{
  width: 100%;
}
.contact-map_location{
  margin-bottom: 30px;
}
.country_location_point {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  margin-bottom: 40px;
}
.country_location_point P{
  color: #fff;
  padding: 0 15px;
  margin-bottom: 0;
}
.country_location_point P img{
  width: 14px;
}
.loaction_details_box{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid #cccccc41;
}
.loaction_details_border{
  border-bottom: 1px solid #cccccc41;
}
.loaction_details_border_left{
  border-left: 1px solid #cccccc41;;
}
.loaction_details_box:last-child{
  border-bottom: 0;
}
.loaction_details_box img{
  width: 25px;
}
.loaction_details_content h6{
  color: #fff;
  margin-bottom: 20px;
}
.loaction_details_content p{
  margin-bottom: 3px;
}
.loaction_details_content p:last-child{
  margin-bottom: 15px;
}
.contactform_img img{
  width: 100%;
}


.user__details .input__box .details {
  font-weight: 400;
    margin-bottom: 5px;
    font-size: 13px;
    color: #C4C4C4;
    background: #000;
    padding: 0px 10px;
    position: relative;
    top: 10px;
    left: 10px;
}
.user__details .input__box input, .user__details textarea, .user__details select  {
  height: 50px;
  width: 100%;
  outline: none;
  border: 1px solid #b3b3b3;
  padding-left: 20px;
  font-size: 16px;
  background: transparent;
  transition: all 0.3s ease;
  color: #fff;
  margin-bottom: 15px;
}
.user__details textarea {
  height: auto;
  padding-top: 15px;
}
.user__details select option {
  background: rgba(0, 0, 0, 1);
  color: #c9c9c9;
}
.user__details select option:not(:first-of-type) {
  color:#686868;
}
.user__details .input__box input::placeholder, .user__details textarea::placeholder{
  font-size: 12px;
  color:#686868;
}
.user__details .input__box input:focus,
.user__details .input__box input:valid ,
 .user__details textarea:focus, 
 .user__details textarea:valid,
 .user__details select:focus {
  border-color: darkorange;
}

.user__details input::-webkit-outer-spin-button,
.user__details input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.user__details input[type=number] {
  -moz-appearance: textfield;
}
.btn-custom.contact-btn{
  width: 200px;
  right: 0;
  margin-bottom: 30px;
}
.contactform_img{
  position: relative;
}
.contactform_img .contactform_img_text{
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: calc(100% - 50px);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 30px;
  font-style: italic;
  margin:0 auto;
}
.googlemap iframe{
  width: 100%;
}

/*------- Careers page -------------*/
@media (min-width: 992px) {
  .dropdown-item {
    border-bottom: 1px solid #6665655e;
    width: 223px;
    margin-right: 0px;
  }
  .dropdown-menu ul li:last-child .dropdown-item, .dropdown-menu ul li:nth-child(7) .dropdown-item {
    border-bottom: 1px solid #66656500;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.split-submenu{
    width: 448px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.split-submenu ul{
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu.split-submenu ul::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: #6665655e;
    left: calc(50% - 0px);
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu li a{
    position: relative;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu li a::before{
   /*  content: '\2794'; */
    position: absolute;
    width: 11px;
    right: 12px;
    top: 16px;
    font-size: 12px;
    transition: all .3s ease-in-out;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover::before{
    right: 5px;
  }
  .nav-item.dropdown .dropdown-menu {
    display: block; /* Keep display:block but manage visibility using max-height */
    max-height: 0; /* Start with height 0 */
    overflow: hidden; /* Hide overflowing content */
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
  }
  .nav-item.dropdown:hover .dropdown-menu{
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  /* On hover: increase height, make visible */
  .nav-item.dropdown:hover .dropdown-menu.split-submenu {
    max-height: 500px; /* Adjust to fit the size of your content */
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .testimonials-slider .slider-item img {
    height: 400px;
    object-fit: cover;
  }
  .heading-pera{
    max-width: 100%;
  }
  .w-70{
    width: 100%
  }
  .hiring-box .headerbtn{
    right: 0;
  }
  .careertab-content .headerbtn{
    right: 0;
  }
  .section{
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .content_banner h1,
  .hero-section h1 {
    font-size: 36px;
  }
  .owl-nav {
    top: 85%;
  }
  .owl-prev {
    left: initial;
    right: 68px;
  }
  .offerItemTitle::before {
    right: 30px;
  }
  .hero-section .checklist {
    display: block;
    width: calc(100% - 20px);
  }
  .company-logos {
    justify-content: center !important;
  }
  .company-logos > div {
    width: 155px;
    max-width: 155px;
    flex: 20 1 auto;
  }
  .footer {
    padding: 58px 0 20px;
  }
  .solid_right_border {
    border-right: none;
    text-align: left !important;
  }
  .solid_right_border img {
    height: 40px !important;
    padding-left: 50px;
    margin-bottom: 35px;
  }
  .page-header_nav h2{
    font-size: 32px;
    font-weight: 500;
  }
  .tab_content_textleft {
    padding-right: 0px;
  }
  .tab_content_textright {
    padding-left: 0px;
  }
  .about-tab_content h2, h2{
    font-size: 26px;
  }
  .hero-section p{
    font-size: 14px;
    line-height: 26px;
  }
  .partner-box{
    margin-top: 20px;
  }
  .testimonials-slider .slider-item img {
    height: 400px;
    object-fit: cover;
  }
  .testimonials-slider::before{
    width: 60%;
  }
  .sap-sol_img{
    padding-right: 20px;
    display: none;
  }
  h6{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  .whyuxp-box{
    flex-direction: column;
    padding: 0 15px;
    margin-top: 0;
  }
  .whyuxp-content{
    width: 100%;
  }
  .whyuxp-content{
    padding: 20px;
  }
  .careertab-heading{
    flex-direction: column;
    gap: 0;
    align-items: baseline;
  }
  .careertab-heading h4{
    font-size: 15px;
    width: initial;
  }
  #main #faq .card .card-header .btn-header-link{
    padding: 10px;
  }
  #main #faq .card .card-header .btn-header-link:after{
    top: 20px;
  }
  .card-body{
    padding: 0;
  }
  #main #faq .card .collapse.show{
    padding: 20px 10px;
  }
  .career-responsibilities{
    flex-direction: column;
    gap: 10px;
  }
  .country_location_point{
    padding: 0;
    gap: 10px;
  }
  .hero-section{
    padding: 30px 0;
  }
  .ourpartners_content{
    padding-bottom: 30px;
  }
  #main {
    margin-top: 20px;
  }
  .mob-invisible .invisible{
    display: none;
  }
  .footer .mob-invisible .footer-links {
    margin-top: 0;
  }
}
