.home-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 64px;
    background: #2A2E36;
    padding: 25px 16px;
    overflow: hidden;
    z-index: 99;
    transition: all 0.5s ease;
}
.logo-details {
    border-bottom: 1px solid #5d5d5d6b;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.sidebar .logo-details .icon {
  opacity: 0; /* Hidden by default, shows when sidebar is expanded */
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name .logo01 {
  opacity: 0; /* Hidden by default, shows when sidebar is expanded */
  transition: all 0.5s ease;
  display: none;
}
.sidebar .logo-details .logo_name .logo02 {
  opacity: 1; /* Hidden by default, shows when sidebar is expanded */
  transition: all 0.5s ease;
  display: block;
  width: 40px;
}
.logo_name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sidebar .logo-details #btn {
    position: absolute;
    bottom: 10px;
    left: 3px;
    cursor: pointer;
    transition: all 0.5s ease;
    background: #2A2E36;
    width: 100%;
    height: 34px;
    display: flex;
    gap: 18px;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    padding: 0px 18px;
}

.sidebar .collapse_text{
    display: none;
}
.sidebar.open .collapse_text {
    display: inline-block;
    width: fit-content;
    text-align: left;
    font-family: "Inter Tight", sans-serif;
    margin-left: 8px;
}
/* .bx-menu-alt-right {
    top: 138px !important;
} */
/* General icon styling */
.sidebar i {
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px; /* Centers icon vertically */
}

.sidebar .nav-list{
    padding: 0;
    margin: 0;
    overflow: hidden;
}
/* .sidebar.open ~ .home-section .width_87 {
    width: 95%;
} */
/* Scrollbar styles for sidebar */
.sidebar .scroll {
  overflow-y: auto; /* Enables vertical scrolling */
  scrollbar-width: thin;
}
.sidebar .scroll::-webkit-scrollbar {
  width: 8px;
  background: #262440; /* Scrollbar background color */
  border-radius: 5px;
}
.sidebar .scroll::-webkit-scrollbar-thumb {
  background: #262440; /* Scrollbar thumb color */
  border-radius: 5px;
}
.sidebar .scroll::-webkit-scrollbar-track {
  background: #171526; /* Scrollbar track color */
  border-radius: 5px;
}

/* Sidebar navigation item styling */
.sidebar li {
    position: relative;
    margin-bottom: 25px;
    list-style: none;
}
.sidebar li img {
    filter: brightness(0) invert(1);
    width: 27px;
}
.sidebar li.active img {
    filter: unset;
}
.sidebar li.active .links_name {
    color: #FF7600;
}
.sidebar li .tooltip {
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #2a2e36;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transition: 0s;
    color: #fff;
    width: 100px;
    text-align: center;
}
.sidebar li:hover .tooltip {
  opacity: 1; /* Shows tooltip on hover */
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}

/* Link styling within sidebar items */
.sidebar li a {
    display: flex;
    height: 100%;
    width: 100%;
    /* border-radius: 12px; */
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    gap: 8px;
}

/* Link text and icon hover effects */
.sidebar li a:hover .links_name {
  transition: all 0.5s ease;
}
.sidebar li a:hover i {
  transition: all 0.5s ease;
}

/* Link text styling */
.sidebar li a .links_name {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0; /* Hidden by default */
  pointer-events: none;
  transition: 0.4s;
  font-family: "Inter Tight", sans-serif;
}

/* Icon styling within sidebar items */
.sidebar li i {
  height: 50px;
  line-height: 50px; /* Centers icon vertically */
  font-size: 18px;
  border-radius: 12px;
}

/* Profile details styling */
.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
/* Expanded sidebar styles */
.sidebar.open {
  width: 200px; /* Expanded sidebar width */
}
.sidebar.open .logo-details .icon {
  opacity: 1; /* Shows icon in expanded state */
}
.sidebar.open .logo-details .logo_name .logo01 {
  opacity: 1; /* Shows logo name in expanded state */
  display: block;
}
.sidebar.open .logo-details .logo_name .logo02 {
  opacity: 0; /* Shows logo name in expanded state */
  display: none;
}
.sidebar.open .logo-details #btn {
  text-align: right;
}
.bx-menu-alt-right img {
    transform: rotate(180deg);
}
.sidebar.open li .tooltip {
  display: none; /* Hides tooltips when expanded */
}
.sidebar.open li a .links_name {
  opacity: 1; /* Shows link names when expanded */
  pointer-events: auto;
}
.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%; /* Expands input width */
}
.sidebar.open .bx-search:hover {
  background: #1d1b31;
  color: #FFF;
}
.sidebar.open li.profile {
  width: 250px; /* Expands profile section */
}
.sidebar.open .profile #log_out {
  width: 50px; /* Shrinks logout button */
  background: none;
}
.sidebar.open ~ .home-section {
  left: 200px; /* Adjusts home section to sidebar width */
  width: calc(100% - 200px);
}

/* Main content (home section) styling */
.home-section {
  position: relative;
  top: 0;
  left: 64px;
  width: calc(100dvw - 64px); /* Adjusts width to fit next to sidebar */
  transition: all 0.5s ease;
  z-index: 2;
}
.home-section .text {
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}
/* Owl stage spacing */
#offline_partners_slider .owl-stage {
    display: flex;
    align-items: center;
}

/* Default (side cards) */
#offline_partners_slider .owl-item .offline_partner_wrap:hover {
    background: #4f535a;
}
/* Center active card */
#online_partners_slider .owl-item.active.center .online_partners_wrap  {
    transform: scale(1.25);
    opacity: 1;
}

/* Card styling */
.offline_partner_wrap {
    height: 135px;
    background: #2A2E36;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo sizing */
.offline_partner_wrap img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
#offline_partners_slider .owl-nav {
    /* display: flex; */
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
#offline_partners_slider .owl-nav button {
    background: transparent;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#offline_partners_slider .owl-nav button:hover {
    background: #fe7600;
    border-color: #ff760000;
}
#online_partners_slider .owl-nav {
    /* display: flex; */
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
#online_partners_slider .owl-nav button {
    background: transparent;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#online_partners_slider .owl-nav button:hover {
    background: #fe7600;
    border-color: #ff760000;
}
.owl-carousel .owl-nav:not(.disabled) {
    display: flex;
    gap: 10px;
}
.online_partners_wrap {
    height: 290px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transform: scale(0.75);
    transition: all 0.4s ease;
    opacity: .8;
}
.online_partners_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
	    object-position: 30% 50%;
}
.online_partner_logo {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 4px;
}
.online_partner_logo img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
}
.hm_about_left {
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 10px;
}
.hm_about_left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.hm_about_right p {
    margin: 25px 0px;
}
.hm_about_right {
    padding-left: 25px;
}
.counter {
    margin-top: 50px;
}
#counter {
    display: inline-block;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
#counter li {
    background: #2A2E368A;
    border-radius: 5px;
    width: 31%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 10px;
    height: 130px;
}
#counter li p{
  margin: 0;
  font-size: 16px;
  font-weight: 400;
      line-height: 19px;
}
#counter span.percent:after {
  content: "%";
  display: inline-block;
}
#counter span.plus:after {
  content: "+";
  display: inline-block;
}
.count {
    color: #FF7600;
    font-size: 32px;
    font-weight: 400;
}
.speciality_wrap:hover {
    background: #4f535a;
    transition: all .5s linear;
    transform: translateY(-5px);
    box-shadow: rgb(0 0 0 / 22%) 0px 7px 29px 0px;
}
.speciality_wrap {
    background: #2A2E36;
    border-radius: 5px;
    padding: 25px;
    display: grid;
    align-content: space-between;
    height: 330px;
    transition: all .5s linear;
}
.speciality_wrap h5 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter Tight';
}
.speciality_wrap span {
    margin-bottom: 15px;
    display: flex;
}
.speciality_wrap p {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    line-height: 22px;
}
.flex_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.hm_services_wrap {
    height: 340px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    transition: all .2s linear;
    will-change: transform;
}
.hm_services_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all .2s linear;
}
.hm_services_wrap:hover img {
    transform: scale(1.05);
    transition: all .2s linear;
}
.hm_services_title {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 50%;
    display: flex;
    align-items: end;
    padding: 30px;
}
.hm_services_title h6 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    font-family: 'Inter Tight';
}
#cta {
    padding: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
#cta::after{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgb(54 54 54 / 57%) 50%, rgb(0 0 0 / 51%) 100%);
}
.cta {
    position: relative;
    z-index: 9;
    text-align: center;
}
.small_title {
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}
.cta .common_title {
    margin: 15px auto 25px;
    width: 410px;
}
.cta p {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 300;
    width: 558px;
    margin: auto;
    line-height: 30px;
}
.cta a {
    margin: 40px auto 0;
    color: #fff;
}
#offers_slider {
    margin-top: 40px;
}
.offers_wrap {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: all .2s linear;
    will-change: transform;
}
.offer_image {
    height: 330px;
    overflow: hidden;
}
.offers_wrap:hover .offer_image img{
    transform: scale(1.02);
    transition: all .2s linear;
}
.offer_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .2s linear;
}
.offers_wrap p {
    font-size: 14px;
    font-weight: 300;
    color: #ffffffde;
    line-height: 20px;
}
.offer_content {
    margin-top: 15px;
}
.offers_wrap .common_btn {
    font-size: 12px;
    font-weight: 300;
    margin-top: 25px;
}
.offers_wrap .common_btn img {
    filter: brightness(0) invert(1);
    width: 12px !important;
}
footer {
    background: #2A2E36;
    padding: 55px 0px 0px;
    position: relative;
    z-index: 9;
}
.ftr_title {
    font-size: 15px;
    color: #FF7600;
    font-weight: 400;
    margin-bottom: 20px;
	text-transform: uppercase;
}
.quick_links a {
    color: #FFFFFFB2;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    width: fit-content;
}
.quick_links a:hover{
    text-decoration: underline;
}
.copy_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff12;
    padding-top: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.copy_right p {
    color: #ffffff9e;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
}
.copy_right p a{
   color: #ffffff9e;
   text-decoration: none;
}
.ftr_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
/*     filter: brightness(0) invert(.5); */
}
footer .container {
    max-width: 1230px;
}
.ftr_location {
    width: 307px;
    margin: auto;
}
#hm_services_slider .owl-nav {
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
#hm_services_slider .owl-nav button {
    background: transparent;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hm_services_slider .owl-nav button:hover {
    background: #fe7600;
    border-color: #ff760000;
}


/*service*/
.full_widthimg img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 5px;
	object-position: 50% 30%;
}
.full_widthimg {
    margin: 35px 0 0;
    position: relative;
}
.full_widthimg:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
	    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

}
.inner_top_section {
    text-align: center;
}
.inner_top_section .common_title{
    margin-bottom: 20px;
}
.inner_top_section p {
    width: 55%;
    margin: 0 auto;
}
.ourservice_block .servi_img > img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}
.ourservice_block {
    margin-bottom: 35px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: 0.3s linear;
}
.servi_bx img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
    width: 22px;
    transition: 0.3s linear;
}
.ourservice_block:hover .servi_bx img {
    filter: unset;
    transform: rotate(0deg);
    transition: 0.3s linear;
}
#additional_services .speciality_wrap {
    margin-bottom: 25px;
}
#whatwe_provide .col-lg-6:nth-last-child(-n+2) .ourservice_block {
    margin-bottom: 0;
}
#additional_services .col-lg-4:nth-last-child(-n+3) .speciality_wrap {
    margin-bottom: 0;
}
.squareicon {
    margin-right: 10px;
    margin-top: 5px;
    position: relative;
    top: 2px;
}
span.squareicon iconify-icon {
    transform: rotate(45deg);
    font-size: 19px;
}
/*#whatwe_provide p {
    color: #fff;
}*/
.ourservice_block p {
    color: #f8fafcc7 !important;
    font-size: 16px;
    line-height: 24px;
}
.speciality_wrap1:hover {
    background: #4f535a;
    transition: all .5s linear;
    transform: translateY(-5px);
    box-shadow: rgb(0 0 0 / 22%) 0px 7px 29px 0px;
}
.speciality_wrap1 {
    background: #2A2E36;
    border-radius: 5px;
    padding: 30px;
    height: 300px;
    transition: all .5s linear;
    margin-bottom: 25px;
}

.speciality_wrap1 span {
    margin-bottom: 20px;
    display: flex;
}
.speciality_wrap1 h5.medium_title {
    margin-bottom: 20px;
    width: 90%;
}
.speciality_wrap1 p {
    color: #FFFFFFB2;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    line-height: 22px;
    width: 95%;
}
/**/

/*gsa*/
.gsa_img img.bg_img {
    width: 100%;
    height: 260px;
    object-fit: cover;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        transition: 0.3s linear;
}
.gsa_img {
    position: relative;
    overflow: hidden;

}
.gsa_img:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);

}
.gsa_img .logo {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translate(-50%, -50%);
    z-index: 99;
    filter: brightness(0) invert(1);
}
.gsa_wrap {
    background: #2A2E36;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}
.gsa_content {
    padding: 20px 20px;
}
.gsa_content_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 20px;
}
.gsa_content_title h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
}
.gsa_content_title img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
    transition: 0.3s linear;
}
.gsa_cnt {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #FFFFFFB2;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
}
.gsa_cnt img {
    width: 20px;
}
.gsa_wrap:hover .gsa_content_title img {
    transform: unset;
    transition: 0.3s linear;
    filter: unset;
}
.gsa_wrap:hover .gsa_img .bg_img{
  transform: scale(1.05);
  transition: 0.3s linear;
}
.gsa_cnt p{
    margin: 0;
}
/**/


/*about*/
.full_widthimg .counter {
    position: absolute;
    width: 100%;
    bottom:20px;
    right: 0;
    z-index: 9;
}
.counter.newstyle ul li iconify-icon {
    color: #FF7600;
    font-size: 50px;
}
.newstyle #counter li h6 {
    font-size: 16px;
    color: #fff;
}
.newstyle #counter li p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}
.newstyle #counter li {
    background: #2A2E368A;
    border-radius: 5px;
    width: 25%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-right: 0;
    height: 130px;
    padding: 0 15px;
}
.full_widthimg .counter ul li {
    background: transparent!important;
}
.full_widthimg .counter ul li p {
    width: 100%;
}
.gal_img img {
    width: 100%;
    height: 270px;
    border-radius: 5px;
}
#speciality .common_title {
    margin-bottom: 25px;
}
.about_vision {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.about_vision p {
    width: 89%;
}
.about_vision_cnt .smalltitle {
    margin-bottom: 20px;
}
.timeline_text {
    text-align: left;
    color: #fff;
}
/**/



/*gsa detail*/
.fleetimg {
  overflow: hidden;
  transition: 0.3s linear;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 5px;
}
.fleetimg:hover img{
  transition: 0.3s linear;
  transform: scale(1.03);
}
.fleetimg img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.3s linear;
}
.gsadestination_block {
    background: #2A2E36;
    border-radius: 5px;
    padding: 25px;
    height: 305px;
    margin-bottom: 25px;
}
.gsadestination_title {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #ffffff21;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.gsadestination_title .medium_title {
  margin: 0;
}
.gsadestination_block ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 100%;
    /* display: flex;
    align-items: start;
    flex-wrap: wrap; */
    height: 180px;
    row-gap: 10px;
    column-gap: 10px;
    overflow-y: auto;
}
.gsadestination_block ul li {
    background: #22262D;
    color: #ffffffc4;
    padding: 6px 13px;
    display: inline-block;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s linear;
    margin-bottom: 6px;
    margin-left: 3px;
}
.gsadestination_block ul li:hover {
    background: #FF7600;
    transition: 0.3s linear;
}
/**/


/*careerlist*/
.job_list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.job_list li {
    border-top: 1px solid #ffffff26;
    padding: 20px 0;
    align-items: center;
    color: #fff;
    position: relative;
}
.job_list li:last-child {
    border-bottom: 1px solid #ffffff26;
}

.job_list .common_btn:after {
    display: none;
}
.job_list .common_btn {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    float: right;
    padding: 0;
}
.job_list li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background: #FF7600;
}
.job_list li:hover::before {
    animation: underlineLoop 2s linear infinite;
}
@keyframes underlineLoop {
    0% {
        width: 0%;
        left: 0%;
    }

    50% {
        width: 100%;
        left: 0%;
    }

    100% {
        width: 100%;
        left: 0%;
    }
}
/**/


/*job detail*/
.jobdescription {
    background: #2F343C;
    border-radius: 5px;
}
.jobdescription .jobheading {
    border-bottom: 1px solid #ffffff1f;
    padding: 15px 50px;
}
.jobdescription .jobheading .medium_title{
    margin-bottom: 0;
}
.jobdetails {
    padding: 30px 50px;
}
.jobdetails ul {
    padding: 0 0 0px 20px;
    margin: 0 0 30px 0;
}
.jobdetails ul li {
    font-family: "Manrope", sans-serif;
    color: #f8fafcc7;
    font-size: 17px;
    line-height: 28px;
    margin: 0;
    font-weight: 300;
    margin-bottom: 7px;
}
.jobdetails p {
    margin-bottom: 30px;
}

.form_wrapper {
    background: #2F343C;
    padding: 50px 50px;
    border-radius: 5px;
}
.formbox label {
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}
.formbox .formipt {
    width: 100%;
    background: #22262D;
    border: 0;
    padding: 10px 20px;
    outline: none;
    color: #fff;
    border-radius: 5px;
    border: 1px solid transparent;
/*    font-size: 16px;*/
}
/* Safari only */
@supports (-webkit-touch-callout: none) {
  .formbox .formipt {
    font-size: 16px;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .formbox .formipt {
      font-size: 16px;
    }
  }
}

/* Default for other browsers */
.formbox .formipt {
  font-size: 14px;
}
.formbox .formipt:focus,.formbox .formipt:hover{
  border: 1px solid #ff760075;
  outline: none;
}
.formbox textarea.formipt {
    height: 150px;
}
.formbox {
    margin-bottom: 20px;
}
.formsubmit .common_btn {
    background: transparent;
    border: 0;
    font-weight: 400;
}
.formsubmit {
    display: flex;
    gap: 8px;
    position: relative;
    width: 182px;
    float: right;
}
.formsubmit::after {
    position: absolute;
    content: '';
    width: 182px;
    left: 0;
    bottom: 0;
    height: 1px;
    background: #ffffffad;
}
.formsubmit:hover img {
  animation-name: bounceAlpha;
  animation-duration: 1.4s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#careerdetail .common_title {
    text-align: left;
    margin-bottom: 10px;
}
#careerdetail p {
    text-align: left;
    width: 100%;
    font-size: 15px;
}
.backbtn:hover {
color: #FF7600;
}
.backbtn {
    text-align: left;
    width: 100%;
    margin-bottom: 40px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.backbtn iconify-icon {
    font-size: 24px;
}
/* resume btn Style Start */

.kwt-file__drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px;
    background-color: #22262D;
    border-radius: 5px;
    transition: 0.3s;
}
.kwt-file__drop-area.is-active {
    background-color: #22262D;
}
.kwt-file__choose-file {
    flex-shrink: 0;
    background-color:#2F343C;
    border-radius: 100%;
    margin-right: 10px;
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kwt-file__choose-file.kwt-file_btn-text {
    border-radius: 4px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    font-size: 14px;
}
.kwt-file__choose-file svg {
    width: 24px;
    height: 24px;
    display: block;
}
.kwt-file__msg {
    color: #f8fafcc7;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kwt-file__input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
.kwt-file__input:focus {
    outline: none;
}
.kwt-file__delete {
    display: none;
    position: absolute;
    right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.kwt-file__delete:before {
    content: "";
    position: absolute;
    left: 0;
    transition: 0.3s;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}
.kwt-file__delete:after {
    content: "";
    position: absolute;
    opacity: 0;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #1d3557;
    border-radius: 50%;
    transition: 0.3s;
}
.kwt-file__delete:hover:after {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0.1;
}
/* Plugin Style End */

/**/


/*contact*/
.cnt_img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.contactform {
    background: #2F343C;
    padding: 30px;
    margin-top: 40px;
}
.contactform .form_wrapper {
    padding: 0;
}
.cnt_location {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
}
.cnt_location img {
    margin-top: 3px;
}
.cnt_location p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    font-weight: 300;
    width: 340px;
}
.cnt_detail {
    margin-top: 50px;
}
.cnt_detail .common_btn {
    font-weight: 400;
    font-size: 16px;
    margin-left: 35px;
}
.cnt_phone {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    justify-content: end;
    margin-bottom: 10px;
}
.cnt_phone p {
    margin: 0;
}
.cnt_email {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;

}
.cnt_email a {
    margin: 0;
    text-decoration: none;
    color: #fff;
}

/**/

/*awards*/
.membership_wrap {
    height: 120px;
    background: #dddddd;
    border-radius: 12px;
    text-align: center;
    padding: 10px 10px;
    margin-bottom: 10px;
}
.memberslogo img {
    max-width: 140px;
    /* filter: brightness(0) invert(1); */
    max-height: 75px;
    object-fit: contain;
    transition: 0.3s linear;
    min-height: 70px;
    margin-bottom: 5px;
}
.membership_wrap:hover img{
    transition: 0.3s linear;
    transform: scale(1.04);
}
.memberslogo .row {
    --bs-gutter-x: 10px;
}
.awardbox img {
    width: 100%;
}
.awrd_title {
    text-align: center;
    margin-top: 18px;
}
.awrd_title p {
    color: #f8fafcc7;
    font-size: 16px;
    margin: 0;
}
.awrd_title .medium_title {
    margin: 0;
}

/**/

.servi_bx {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s linear;
    justify-content: space-between;
}
.servi_bx .medium_title {
    margin: 0;
}
.servi_img {
    overflow: hidden;
}
.servi_img {
    overflow: hidden;
    transition: 0.3s linear;
    border-radius: 5px;
    margin-bottom: 22px;
}
.ourservice_block:hover .servi_img img{
    transform: scale(1.03);
    transition: 0.3s linear;
}
.ser_imgbx img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-bottom: 25px;
}
.gsadestination_mobile{
    display: none;
}
.gsadestination_mobile .accordion-item {
    background: #2A2E36;
    border: 0;
    margin-bottom: 10px;
    border-radius: 5px!important;
}
.gsadestination_mobile .accordion-button {
    background: transparent;
    color: #ffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
}
.gsadestination_mobile .accordion-button::after {
    right: 20px;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E");
}
.gsadestination_mobile .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}
.gsadestination_mobile .accordion-button img {
    width: 20px;
}
.accordion-button:focus {
    box-shadow: none;
}
.gsadestination_mobile ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 90%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.gsadestination_mobile ul li {
    background: #22262D;
    color: #ffffffc4;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    font-size: 13px;
    transition: 0.3s linear;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff7600;
    color: #ffffffd6;
    border-width: 1px;
}
.nav-links li.active a {
    color: #FF7600;
}
.jobdetails h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    font-family: 'Inter Tight';
    line-height: 30px;
    margin-bottom: 15px;
}
.formsubmit span.wpcf7-spinner {
    position: absolute;
    top: -30px;
    left: 0;
}
.wpcf7 input[type="file"] {
    color: #fff;
}
.hidesec {
    visibility: hidden;
    height: 0;
}
.ftr_mobile{
	display: none;
}
.ftr_mobile .accordion-item {
    background: transparent;
    border-radius: 0;
	border: 0;
}
.ftr_mobile .accordion-button {
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    padding: 12px 0px;
    color: #cfcfcf;
    font-weight: 600;
    font-size: 15px;
}
.ftr_mobile .accordion-button::after {
    position: absolute;
    right: 0;
    filter: brightness(0) invert(1);
    background-size: 15px;
}
.mob_ftr_content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mob_ftr_content a{
	color: #FFFFFFB2;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    width: fit-content;
}
.ftr_mobile .accordion-body {
    padding: 10px 0px;
}
.ftr_bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
	opacity: .5;
}

/* .ftr_bg svg path {
  stroke: #ff9f43;
  stroke-width: 1;
  fill: #8a8a8a;
  filter: drop-shadow(0 0 2px #ff9f43)
          drop-shadow(0 0 5px #ff9f43);
}
@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 4px #ff9f43); }
  50% { filter: drop-shadow(0 0 6px #ff9f43); }
  100% { filter: drop-shadow(0 0 4px #ff9f43); }
}

.ftr_bg svg path {
  animation: glowPulse 2s infinite ease-in-out;
}
 */
.gsadetail_logo {
    filter: brightness(0) invert(1);
}
.gsadestination_block ul::-webkit-scrollbar
{
  width: 6px;
  background-color: #000000;
}
.off_partners_wrap .online_partner_logo img {
    filter: brightness(0) invert(1);
}
.off_partners_wrap > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}
/* .off_partners_wrap {
    overflow: hidden;
    border-radius: 5px;
} */
.off_partners_wrap
{
    height: 290px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transform: scale(0.75);
    transition: all 0.4s ease;
    opacity: .8;
}
.off_partners_wrap .online_partner_logo {
    height: 80px;
    bottom: 40px;
}
.membership_wrap h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    width: 100%;
    text-align: center;
}

#offline_partners_slider .owl-item.active.center .off_partners_wrap {
    transform: scale(1.25);
    opacity: 1;
}
.captcha-image {
  
    color: #fff;
}