:root{
  --primary-theme: #003e56;
  --body-color: #0d0d0d;
}
.error {
    border: 1px solid red !important;
}
.btn-primary {
    background-color: var(--primary-theme);
    border: 1px var(--primary-theme) solid;
    color: #fff;
    border-radius: 0px !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  background-color: var(--primary-theme);
  border: 1px var(--primary-theme) solid;
  color: #fff;
  opacity: 0.7;
  border-radius: 0px !important;
}
.enth-from-input input,
.enth-to-input input{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding-left: 58px;
    padding-right: 36px;
    font-size: 20px;
    border-right: 1px solid hsla(225,5%,47%,.24);
    text-transform: capitalize;
}
.enth-from-input .dropdown-menu,
.enth-to-input .dropdown-menu{
  width: 100%;
}
.first-flight-serch{
  padding-top: 25px !important;
}
.enth-from-input svg,
.enth-to-input svg{
    position: absolute;
    transform: translate(100%, -50%);
    top: 50%;
    color: #a5a8b0;
    z-index: 1;
}
.enth-from-input,
.enth-to-input{
    position: relative;
}
.enth-search-button button {
    background-color: var(--primary-theme);
    flex: none;
    width: 100%;
    padding: 0 24px;
    box-shadow: none;
    color: #fff;
    border-radius: 0;
    height: 60px;
    line-height: 48px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    transition: all .3s ease-out;
}
.search-wrapper{
    display: grid;
    grid-template-columns: 1fr 260px;
    padding-bottom: 50px;
    grid-column-gap: 30px;
}
.search-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #a5a8b0;
}
/* .loaded .page-header-bg{ 
    transform: translateY(-100%) !important;
}
.loaded.scrolled_ .page-header-bg{ 
    transform: translate(0px, 0%) !important;
} */
.page-menu-items .page-menu-item{
    height: 5.25rem !important;
}
.fleet-wrapper img{
    height: 100%;
    width: 100%;
}
.fleet-wrapper h4 {
    color: #fff;
    background-color: var(--primary-theme);
}
.modal.show{
    visibility: visible !important;
    opacity: 1 !important;
}
.fleetContent{
    display: none;
}
.fleetContent.active{
    display: block;
}
.fleet-wrapper .col-md-4 {
    height: 255px;
    padding-bottom: 80px;
    padding: 10px;
    padding-bottom: 65px;
    margin-bottom: 25px;
    width: 32%;
    margin-right: 1%;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}
.main-navbar .nav-link{
    font-size: 13px;
    margin-right: 2rem;
    text-transform: capitalize;
}
:root {
  
    --clr-neutral-100: #fff;
    --clr-neutral-300: #ddd;
    --clr-neutral-500: #555555;
    --clr-neutral-800: #111827;
    --clr-primary: #041964;
  
    --transition: 250ms ease-in-out;
  }
.card {
    display: grid;
    position: relative;
  
    background-color: var(--clr-neutral-100);
  
    overflow: hidden;
    border-radius: 0.8em;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .card:is(:hover, :focus) {
    transform: translateY(-5px);
    box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card:focus-visible {
    outline: 2px dashed;
    outline-offset: 0.4em;
  }
  
  .card__img-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  
  /* image overlay */
  .card__img-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
  }
  
  .card__tags {
    --_pad: 10px;
    position: absolute;
    inset: var(--_pad) var(--_pad) auto var(--_pad);
  
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 0.25em;
  
    opacity: 0;
    transition: var(--transition);
  }
  
  .card__tag {
    display: inline-block;
    padding: 0.1em 0.5em;
  
    font-size: 14px;
    text-transform: uppercase;
  
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--clr-neutral-100);
    border-radius: 5px;
    z-index: 2;
  }
  
  .card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card__body {
    padding: 1em 1.5em;
  }
  
  .card__title {
    margin: 0;
    font-size: clamp(1.4rem, 4vw, 1.7rem);
    text-transform: capitalize;
    color: var(--clr-neutral-800);
  }
  
  .card__date {
    font-size: 0.875rem;
    color: var(--clr-neutral-500);
  }
  
  .card__cta {
    position: relative;
    width: fit-content;
    margin-top: auto;
    color: var(--clr-primary);
  }
  
  /* underline */
  .card__cta::before {
    content: "";
    position: absolute;
    inset: 100% 0 0 0;
    height: 2px;
  
    background-color: currentColor;
    transition: var(--transition);
    transform-origin: right;
  }
  
  /* right arrow */
  .card__cta::after {
    content: " →";
    display: inline-block;
    margin-left: 5px;
    transition: var(--transition);
  }
  
  /* image overlay */
  .card:is(:hover, :focus) .card__img-container::before {
    opacity: 1;
  }
  
  /* remove underline */
  .card:is(:hover, :focus) .card__cta::before {
    transform: scale(0);
  }
  
  /* move arrow */
  .card:is(:hover, :focus) .card__cta::after {
    transform: translateX(6px);
  }
  
  /* show tag */
  .card:is(:hover, :focus) .card__tags {
    opacity: 1;
  }
  .blogs-wrapper .swiper-button-next, 
  .blogs-wrapper .swiper-button-prev{
    width: 45px;
    height: 45px;
    background-size: 12px 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-theme);
    border-radius: 50px;
  }
  .blogs-wrapper .swiper-button-next{
    right: 0px !important;
  } 
  .blogs-wrapper .swiper-button-prev{
    left: 0px !important;
  }
  .heading {
    text-align: center;
    color: #454343;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: capitalize;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    /* background: url(img/testimonial.bg-top.png); */
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}
.bld-slider-container .swiper-wrapper {
    transform: translate3d(0,0,0) !important;
}
.testimonial {
    min-height: 375px;
    position: relative;
    /*background: url('../img/live_smart2.jpg');*/
    background: url('/images/clientfeedback.jpg');
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;
}
.testimonial:before {
    content: "";
    width: 100%;
    z-index: 0;
    background: linear-gradient(180deg,rgba(255,119,0,.1) 0,rgba(0,0,0,.65));
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #fff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: var(--primary-theme);
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
  padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}
#testimonial4 .carousel-indicators button{
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    margin: 2px 3px;
    background-color: #fff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
/* ------testimonial  close-------*/
/* .mob-bgs_cov.bgs_cov{
    background-image: unset !important;
} */

.Private-Jet-info {
  display: flex;
  background-color: #fff;
  margin-bottom: 4rem;
  width: 75%;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.Private-Jet-info img {
  width: 250px;
  height: 250px;
}
.Private-Jet-content h4 {
  font-size: 2.125rem;
}
.Private-Jet-content p {
  font-size: 1.5rem;
}
.Private-Jet-content {
  padding: 15px;
}
.Private-Jet-content button {
  margin-top: 65px;
}
.Business-wrapper-info img {
  width: 100%;
}
.Business-wrapper p{
  font-size: 1.5rem;
}
.Leisure-wrapper-info {
  position: relative;
}
.Leisure-wrapper-info .col-md-12 {
  display: flex;
  background-color: #fff;
  min-height: 300px;
  padding-left: 100px;
}
.Leisure-wrapper-info .col-md-12 img {
  position: absolute;
  height: 240px;
  top: 50%;
  transform: translate(-25%, -56%);
}
.col-md-8.Leisure-wrapper-info  .Leisure-wrapper-info-right p{
  padding-right: 165px;
  padding-left: 25px;
}
.col-md-8.Leisure-wrapper-info  .Leisure-wrapper-info-right img{
  right: 0;
    transform: translate(25%, -56%);
}
.col-md-8.Leisure-wrapper-info p {
  padding: 25px;
  padding-left: 175px;
  display: flex;
  align-items: center;
  justify-content: start;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
  margin-bottom: 30px;
}
.PetTravel-wrapper-info{
  padding-left: 100px;
}
.PetTravel-wrapper-body {
  position: relative;
}
.PetTravel-wrapper-body img {
  height: 250px;
  width: 250px;
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);
}
.PetTravel-wrapper-content {
  padding: 25px;
  padding-left: 205px;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
  margin-bottom: 30px;
  min-height: 300px;
}
.PetTravel-wrapper-content button {
  margin-top: 25px;
}
.more-options a {
  padding: 8px;
}
.more-options {
  display: flex;
  align-items: center;
}
.navbar-nav li a,
.navbar-nav li{
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-nav li a{
  margin-right: 2rem !important;
}
.footer-links-nav .w_50.fz16{
  display: none;
}
@media screen and (max-width: 991px) {
    .flex.mob-flex-col{
        flex-direction: column;
    }
    .wrapper-cons-service{
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .wrapper-cons-service .w_50.pr_2{
        width: 100% !important;
    }
    .footer-links.flex{
        flex-direction: column !important;
    }
    .footer-content-info{
        flex-direction: column !important;
    }
    /* .navbar.white_{
      background-color: unset !important;
    } */
}
.aircraft-salesWrapper{
  list-style: none;
}

.dropdown-item.active, .dropdown-item:active{
  color: #fff !important;
  background-color: var(--primary-theme) !important;
}
.aircraft-salesWrapper li {
  padding-bottom: 20px;
  font-size: 1.5rem;
}
.footer-links-nav a {
  font-size: 1rem;
}
@media screen and (max-width: 400px){
  .row-col-100 .fleet-wrapper .col-md-4 {
    width: 100% !important;
  }
}
.home_bannerConatiner .com-wrapper.pl_19{
  padding-left: 6.5rem !important;
}
.searchMainbody{
  display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.5fr;
}
.auxiImage{
  display: none;
}
.auxiVideo{
  display: block;
}
.page-content .com-wrapper.flex-mobiJc.plMobi_4:after {
  content: '';
  position: absolute;
  background-color: #00000057;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 991px){
  .aircraft-salesWrapper li{
    font-size: 14px !important;
  }
  .search-wrapper{
    padding-bottom: 0px;
  }
  .Business-wrapper-info .effect-fade-in,
  .Business-wrapper .effect-fade-in{
    opacity: 1;
    transform: unset;
  }
  .PetTravel-wrapper-info{
    margin-bottom: 145px;
  }
  .com-wrapper{
    margin-top: 30px !important;
  }
  .auxiImage{
    display: block;
  }
  .auxiVideo{
    display: none;
  }
  .com-wrapper.flex_c.flex_je.flex-mobiJc.plMobi_4{
    padding-bottom: 50px;
  }
  .page-content .com-wrapper.pr_19.pl_19{
    padding-right:18px !important;
  }
  .hm-intro.h_100vh{
    height: calc(100vh - 60px) !important;
  }
  .mobileHide {
    display: none !important;
  }
  
  .mobiShow {
    display: block !important;
  }
  
  .MobiBlock {
    display: block !important;
  }
  .H_block div {
    display: block !important;
  }
  .blogs-wrapper .swiper-button-next, .blogs-wrapper .swiper-button-prev{
    display: none !important;
  }
  .pb_18{
    padding-bottom: 18px !important;
  }
  .pr_19{
    padding-right: 18px !important;
  }
  .pl_19{
    padding-left: 18px !important;
  }
  .w_50{
    width: 100% !important;
  }
  .row-col-100 .col-md-3,
  .row-col-100 .col-md-9{
      width: 100% !important;
  }
  
  .GridMobiView {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
    width: 100% !important;
  }
  
  .col-reves {
    flex-direction: column-reverse;
    align-items: flex-start !important;
  }
  .search-wrapper,
  .search-body{
      grid-template-columns: 1fr !important;
  }
  .enth-from-input svg, .enth-to-input svg{
      height: 50px;
      width: 50px;
      font-size: 50%;
      transform: translate(35%, -20%) !important;
  }
  .page-header{
    padding: 0 !important;
    height: 65px !important;
  }
  .page-header-line-h{
    left: 15px !important;
    right: 15px !important;
  }
  .hideDescMobi {
    margin-bottom: 25px !important;
    padding: 0 !important;
  }
  .hideDescMobi span {
    display: none;
  }
  
  .mobiSizFs {
    font-size: 14px;
    color: #716c6c;
    font-weight: 600;
    width: 85%!important;
  }
  .f_s_50 {
    font-size: 14px !important;
  }
  
  .p_Right {
    left: unset !important 	;
    right: 0rem !important;
  }
  .pt_18{
    padding-top: 18px !important;
  }
  .fz120{
    font-size: 22px !important;
  }
  .pb_10{
    padding-bottom: 25px !important;
  }
  .fleet-wrapper .col-md-4{
    height: 100% !important;
    padding-bottom: 10px !important; 
  }
  .fleet-wrapper h4{
    font-size: 16px;
  }
  .flexDColRever {
    flex-direction: column-reverse;
  }
  .testimonial4_slide{
    width: 100% !important;
  }
  .testimonial4_slide p{
    font-size: 14px !important;
  }
  .testimonial4_slide h4{
    font-size: 18px !important;
  }
  .testimonial4_indicators .carousel-control-next, 
  .testimonial4_indicators .carousel-control-prev{
    width: 8% !important;
  }
  .footer-links-item{
    height: 200px !important;
  }
  .fz54{
    font-size: 18px !important;
  }
  .pos_a{
    font-size: 16px !important;
  }
  .footer-links.flex{
      flex-direction: column !important;
  }
  .footer-content-info{
      flex-direction: column !important;
  }
  .mobiJSstart {
    justify-content: start !important;
    flex-direction: column;
    align-items: start;
    padding: 15px 0 15px;
  }
  .brRightN {
    border-right: none !important;
  }
  .d-noMobi {
    display: none;
  }
  .mobiW22 {
    font-size: 14px;
  }
  .heading{
    font-size: 22px !important;
  }
  .hm-bg-projects {
    height: 400px !important;
    top: 50% !important;
    transform: translate(0%, 50%);
  }
  .bt-round-next {
    width: 50px !important;
    height: 50px !important;
    margin-top: 15px;
  }
  .bt-round-next i {
    left: 50% !important;
    top: 50% !important;
    width: 20px !important;
    height: 20px !important;
  }
  .bt-round-next > span{
    left: 50% !important;
  }
  .card{
    margin: 0px 0px 10px 2px;
  }
  .card__body{
    padding: 15px;
  }
  .card__title,
  .card__cta{
      font-size: 14px !important;
  }
  .fz34{
    font-size: 18px !important;
  }
  .mt_10{
    margin-top: 25px !important;
  }
  .mb_8{
    margin-bottom: 20px !important;
  }
  .enth-from-input input, .enth-to-input input,.enth-search-button button{
    font-size: 14px !important;
    height: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fz36{
    font-size: 22px !important;
  }
  .page-footer .flex_jsb.pb_8.mt_10.op_50{
    padding: 0 !important;
  }
  .line.mb_18.bgc_b{
    margin-bottom: 25px !important;
  }
  .aviapro-space-wrapper img{
    width: 200px !important;
    margin: auto;
  }
  .com-wrapper .flex.js-next-long-trigger.flexDColRever{
    display: flex !important;
  }
  .aviapro-space-wrapper{
    margin-bottom: 15px !important;
  }
  .card__img-container{
    height: 135px !important;
  }
  /* .com-wrapper.pb_18.pr_19.pl_19.pos_r.z_5.row-col-100{

  } */
  .page-menu-left .pos_r.w_70.wM1-100.h_100.flex_ac.pl_19.flex-column{
    padding: 15px !important;
    font-size: 22px;
    width: 100%;
  }
  .page-menu-left .page-menu-items .page-menu-item{
    height: 70px !important;
  }
  .Private-Jet-content p,
  .Business-wrapper p{
    font-size: 18px;
  }
  .Private-Jet-info,
  .Business-wrapper-info .col-md-6.ms-auto{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .Business-wrapper-info .col-md-6.ms-auto .mb-3{
    margin: 0px !important;
    margin-top: 1rem !important;
  }
  .Private-Jet-info img{
    width: 100%;
    height: 100%;
  }
  .Business-wrapper-info .col-md-6.ms-auto{
    margin-top: 30px;
  }
  .Private-Jet-info.ms-auto,
  .Business-wrapper-info .col-md-6.ms-auto{
    flex-direction: column-reverse;
  }
  .Leisure-wrapper-info .col-md-12 img{
    height: 100%;
    width: 100%;
  }
  .Leisure-wrapper-info .col-md-12{
    flex-wrap: wrap;
  }
  .PetTravel-wrapper-info{
    padding: 0;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    margin-bottom: 30px;
  }
  .PetTravel-wrapper-body img{
    height: 100%;
    width: 100%;
    position: relative;
    top: unset;
    transform: unset;
  }
  .PetTravel-wrapper-content{
    padding: 15px;
    box-shadow: unset;
    margin-bottom: 0px;
    min-height: 100%;
  }
  .fw_m.H_block{
    padding-bottom: 12px;
  }
  .fw_m.H_block,
  .H_block{
    display: flex;
  }
  
  .Private-Jet-info{
    margin-bottom: 10px;
  }
}
.com-wrapper .flex.pb_10.MobiBlock{
  justify-content: space-between;
}
.aviapro-space-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
} 
.aviapro-space-wrapper img {
  width: 75%;
  border-radius: 50%;
}
@media screen and (max-width: 1024px){
  
  .Leisure-wrapper-info .col-md-12 img{
    height: 100%;
  }
  .Private-Jet-content h4{
    font-size: 16px;
  }
  .Private-Jet-content p{
    font-size: 14px;
  }
  .anchorSize {
    height: 55px !important;
    width: 55px !important;
    background-color: #fff;
    border-radius: 50px;
  }
  .mobSize {
    width: 30px !important;
    height: 30px !important;
  }
  .d-flex.wM1-100.flex-jsb.flex_show{
    display: flex !important;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 1024px){
  .row-col-100 .col-md-4{
    width: 49% !important;
  }
  .fleet-wrapper .col-md-4{
    height: 225px !important;
    padding-bottom: 40px !important;
  }
  .flex.js-next-long-trigger.flexDColRever{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .mb-op-show{
    opacity: 1 !important;
    transform: translateY(0rem) scale(0.98) !important;
  }
  .col-md-8.Leisure-wrapper-info,
  .col-md-8.Leisure-wrapper-info .col-md-12,
  .Business-wrapper .col-md-4,
  .Business-wrapper .col-md-8{
    width: 100%;
  }
  .pr_19{
    padding-right: 2.5rem;
  }
  .pl_19{
    padding-left: 2.5rem;
  }
  .Leisure-wrapper-info .col-md-12{
    padding: 0;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    height: 100%;
    margin-bottom: 30px;
  }
  .Leisure-wrapper-info .col-md-12 img,
  .Leisure-wrapper-info .col-md-12.Leisure-wrapper-info-right img{
    position: relative;
    top: unset;
    transform: unset;
  }
  .col-md-8.Leisure-wrapper-info p,
  .Leisure-wrapper-info .col-md-12.Leisure-wrapper-info-right p{
    padding: 25px !important;
    box-shadow: unset;
    display: block;
    margin-bottom: 0;
  }

  .header-top .page-header-bg{
    background-color: #fff;
    transform: translateY(-100%);
  }
  .page-header-bg{
    background-color: unset;
  }
  body.loaded.header-top .navbar{
    background-color: #fff;
  }
  body.loaded.header-top .page-header-burger i{
    background: var(--primary-theme);
  }
  body.loaded.scrolled_.header-top .page-header-bg{
    background: #fff !important;
  }
  body.loaded.scrolled_ .page-header-bg{
    background: unset !important;
  }
  body.header-top .page-header, 
  body.header-top .page-header a, 
  body.header-top .page-header, 
  body.header-top .page-header a{
    color: var(--primary-theme);
  }
  body.header-top .page-header svg, 
  body.header-top .page-header svg{
    fill: var(--primary-theme);
  }
/*  .loaded.scrolled_ .navbar{
    background-color: unset !important;
  }*/
  .loaded.scrolled_ .page-header-burger i{
    background: unset;
  }
  body.loaded.header-top .page-header-bg{
    background: #fff;
  }
  body.loaded.scrolled_  .page-header, 
  body.loaded.scrolled_  .page-header a, 
  body.loaded.scrolled_  .page-header, 
  body.loaded.scrolled_  .page-header a{
    color: unset;
  }
  body.loaded.scrolled_  .page-header svg, 
  body.loaded.scrolled_  .page-header svg{
    fill: unset;
  }
  /* .SpecialCharter-wrapper .row .col-md-4{
    order: 1;
  }
  .SpecialCharter-wrapper .row .col-md-8{
    order: 2;
  } */
}
.loaded.scrolled_ .navbar{
  background-color: #fff;
}
.loaded.scrolled_ .page-header-burger i{
  background: var(--primary-theme);
}
body.loaded.scrolled_ .page-header-bg{
  background: #fff;
}
body.loaded.scrolled_  .page-header, 
body.loaded.scrolled_  .page-header a, 
body.loaded.scrolled_  .page-header, 
body.loaded.scrolled_  .page-header a,
body.loaded.scrolled_ .page-header .user-name{
  color: var(--primary-theme);
}
body.loaded.scrolled_  .page-header svg, 
body.loaded.scrolled_  .page-header svg{
  fill: var(--primary-theme);
}
.page-header .user-name.btn-check:checked+.btn, 
.page-header .user-name.btn.active, .btn.show, 
.page-header .user-name.btn:first-child:active, 
.page-header .user-name:not(.btn-check)+.btn:active
.page-header .user-name.page-header .user-name{
  border: transparent;
  border-color: transparent;
}
.loaded .navbar{
  background-color: unset;
}
.loaded .page-header-burger i{
  background: #fff;
}
body.loaded .page-header-bg{
  background: unset;
}
body.loaded .page-header, 
body.loaded .page-header a, 
body.loaded .page-header, 
body.loaded .page-header a,
body.loaded .page-header .user-name{
  color: #fff;
}
body.loaded .page-header svg, 
body.loaded .page-header svg{
  fill: #fff;
}
/* .navbar.white_{
  background-color: #fff;
}
.navbar.white_ .page-header-bg{
    background-color: unset !important
}
.navbar.scrolled-top,
.navbar.scrolled-top.white_,
.navbar.scrolled-top.white_ .page-header-bg{
    background-color: #fff !important
} */
/* 
@media screen and (max-width: 991px) {
    
  .rotate-device {
    display: -ms-flexbox;
    display: flex;
  }
  .flex_show {
    display: flex !important;
  }
  .PointerMenu {
    left: unset;
    right: 9rem !important;
    top: 6rem !important;
    height: 11.6875rem !important;
    width: 10.25rem !important;
  }
  .page-header-Wh {
    height: 10rem !important;
  }
  .page-header-Wh img {
    height: 100% !important;
  }
  .page-header {
    height: 23.25rem;
  }
  .page-header-line-phone {
    right: 24rem !important;
    height: 23rem;
    top: unset !important;
  }
  .page-header-burger i {
    width: 100%;
  }
  .flex-mobiJc {
    justify-content: center;
  }
  .bt-round-next {
    width: 150px !important;
    height: 150px !important;
  }
  .bt-round-next i {
    left: 36% !important;
    top: 30% !important;
    width: 5.625rem !important;
    height: 6.9375rem !important;
  }
  .f_s_66 {
    font-size: 66px !important;
  }
  .f_s_50 {
    font-size: 50px !important;
  }
  .f_s_170 {
    font-size: 170px;
  }
  .page-menu-item {
    height: 22.25rem !important;
  }
  .f_s_100 {
    font-size: 100px;
  }
  .mbR_6 {
    margin-bottom: 6rem !important;
  }
  .mbR_12 {
    margin-bottom: 12rem !important;
  }
  .plMobi_4 {
    padding-left: 4rem !important;
    position: relative;
    padding-right: 4rem !important;
  }
  .abtBottom {
    position: absolute !important;
    bottom: 16rem;
  }
  .p_Right {
    left: unset !important 	;
    right: 0rem !important;
  }
  .Darkcol {
    color: #333 !important;
  }
  .flexDColRever {
    flex-direction: column-reverse;
  }
  .fz8r {
    font-size: 8.5rem;
  }
  .wM1-100 {
    width: 100% !important;
  }
  .col-reves {
    flex-direction: column-reverse;
  }
  .flex-jsb {
    justify-content: space-between !important;
    margin-top: 1rem;
  }
  .MrTop8 {
    margin-top: 8rem;
  }
  .align_s {
    align-items: flex-start !important;
  }
  .icon1,
  .icon10,
  .icon2,
  .icon7,
  .icon3,
  .icon6,
  .icon8,
  .icon4,
  .icon9,
  .icon5 {
    background-position: left 62px !important;
    padding-left: 0 !important;
    padding-right: 6rem !important;
  }
  .icon1,
  .icon10,
  .icon2,
  .icon7,
  .icon3,
  .icon6,
  .icon8,
  .icon4,
  .icon9,
  .icon5 {
    background-image: none !important ;
  }
  .w_50 {
    width: 50%;
  }
  .Mpr-5R {
    padding-right: 5.5rem !important;
  }
  .Mpl-5R {
    padding-left: 5.5rem !important;
  }
  .Mpb-3 {
    padding-top: 5rem;
  }
  .hideDescMobi {
    margin-bottom: 12rem !important;
  }
  .hideDescMobi span {
    display: none;
  }
  .MfS_55 {
    font-size: 55px !important;
  }
  .MobiL_3 {
    margin-left: 3rem;
  }
  .mobiSizFs {
    font-size: 4rem;
    color: #716c6c;
    font-weight: 600;
  }
  .GridMobiView {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    margin-top: 10rem;
  }
  .hm-bg-projects {
    height: 89rem !important;
    top: 47% !important;
  }
  .flex-column {
    flex-direction: column;
  }
  .footer-links-item {
    height: 53.25rem !important;
  }
  .fMobiS_95 {
    font-size: 95px;
  }
  .d-noMobi {
    display: none;
  }
  .mobiJSstart {
    justify-content: start !important;
    flex-direction: column;
    align-items: start;
  }
  .MfS_30 {
    font-size: 5rem !important;
  }
  .mobiW22 {
    width: 22%;
  }
  .mobiW78 {
    width: 78%;
  }
  .mobFS78 {
    font-size: 78px;
  }
  .brRightN {
    border-right: none !important;
  }
  .noMobi {
    display: none;
  }
  .aviapro-space-orbit-circle {
    width: 70% !important;
    height: 70% !important;
  }
  .pMobi20 {
    padding-top: 20rem !important;
  }
  .aviapro-space-planet {
    left: 55% !important;
    width: 20rem !important;
    height: 20rem !important;
  }
  .scrolled_ .PointerMenu i {
    background-color: var(--primary-theme) !important;
  }
  .scrolled_ .page-header-bg,
  .loaded .page-header-bg {
  }
  .mobSize {
    width: 23.25rem !important;
    height: 8.25rem !important;
  }
  .anchorSize {
    height: 15rem !important;
    width: 15rem !important;
  }
  .mainHeight {
    height: 5.25rem !important;
  }
  .mobiMarTop {
    margin-top: 30rem;
  }
  .borderCircle {
    border: 1px solid var(--primary-theme);
    border-radius: 100%;
  }
}

@media screen and (max-width: 991px) {
  .search-wrapper,
  .search-body{
      grid-template-columns: 1fr !important;
  }
  .enth-from-input input, .enth-to-input input,
  .enth-search-button button{
      height: 135px !important;
      font-size: 50px !important;
  }
  .enth-from-input svg, .enth-to-input svg{
      height: 50px;
      width: 50px;
      font-size: 50%;
      display: none;
  }
  .flex.mob-flex-col{
      flex-direction: column;
  }
  .wrapper-cons-service{
      width: 100% !important;
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
  }
  .wrapper-cons-service .w_50.pr_2{
      width: 100% !important;
  }
  .footer-links.flex{
      flex-direction: column !important;
  }
  .footer-content-info{
      flex-direction: column !important;
  }
  .page-menu-left .page-menu-items .page-menu-item {
      height: 13.25rem !important;
  }
  .fleet-wrapper .col-md-4{
      width: 100%;
      height: 100% !important;
      padding-bottom: 45px !important;
  }
  .row-col-100 .col-md-3,
  .row-col-100 .col-md-9,
  .row-col-100 .col-md-4{
      width: 100% !important;
  }
  .heading.white-heading{
      font-size: 104px;
  }
  .fleet-wrapper h4{
      font-size: 50px;
      margin-top: 30px;
  }
  .testimonial4_slide{
      width: 100% !important;
  }
  .testimonial.text-center .container{
      width: 90% !important;
  }
  .testimonial .carousel-control-prev{
      left: -100px;
  }
  .testimonial .carousel-control-next{
      right: -100px;
  }
  .testimonial4_slide p{
      font-size: 50px !important;
  }
  .testimonial4_slide h4{
      font-size: 50px !important;
  }
  .testimonial{
      min-height: 425px !important;
  }
  .testimonial .carousel{
      padding-bottom: 100px !important;
  }
  .testimonial4_indicators .carousel-indicators{
      height: 56px !important;
      bottom: 15px !important;
  }
  #testimonial4 .carousel-indicators button{
      width: 50px !important;
      height: 50px !important;
      margin: 0px 15px !important;
  }
  .testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon{
      width: 75px !important;
      height: 75px !important;
  }
  .card__title,
  .card__cta{
      font-size: 45px !important;
  }
  .navbar.white_{
    background-color: #fff;
  }
  .navbar.white_ .page-header-bg{
      background-color: unset !important
  }
  .navbar.scrolled-top,
  .navbar.scrolled-top.white_,
  .navbar.scrolled-top.white_ .page-header-bg{
      background-color: #fff !important
  }
  .page-menu-left .d-flex.wM1-100.flex-jsb.flex_show{
    display: flex !important;
  }
} */

.section1 {
  text-align: center;
  display: table;
  width: 100%;
}
.section1 .shtext {
  display: block;
  margin-top: 20px;
}
.section1 .seperator {
  border-bottom: 1px solid #a2a2a2;
  width: 35px;
  display: inline-block;
  margin: 20px;
}

.section1 h1 {
  font-size: 40px;
  color: var(--primary-theme);
  font-weight: normal;
}

.section2 {
  width: 1200px;
  margin: 25px auto;
}
.section2 .col2 {
  width: 48.71%;
}
.section2 .col2.first {
  float: left;
}
.section2 .col2.last {
  float: right;
}
.section2 .col2.column2 {
  padding: 0 30px;
}
.section2 span.collig {
  color: #a2a2a2;
  margin-right: 10px;
  display: inline-block;
}
.section2 .sec2addr {
  display: block;
  line-height: 26px;
}
.section2 .sec2addr p:first-child {
  margin-bottom: 10px;
}
.sec2contactform input,
.sec2contactform textarea {
    padding: 18px;
    border: 0;
    background: #ededed;
    margin: 7px 0;
    border-radius: 0px !important;
    border: 1px #000 solid;
}
.sec2contactform select {
    border: 1px #000 solid;
}
.sec2contactform textarea {
    width: 100%;
    display: block;
    color: #666;
    resize: none;
}
.sec2contactform input[type="submit"] {
  padding: 15px 40px;
  color: #fff;
  border: 0;
  background: var(--primary-theme);
  font-size: 16px;
  text-transform: uppercase;
  margin: 7px 0;
  cursor: pointer;
}
.sec2contactform h3 {
  font-weight: normal;
  margin: 20px 0;
  margin-top: 0px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 19px;
  color: var(--primary-theme);
}

/* @media querries */

@media only screen and (max-width: 1266px) {
  .section2 {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  
  .container {
    padding: 0 30px 70px;
  }
  .section2 .col2 {
    width: 100%;
    display: block;
  }
  .section2 .col2.first {
    margin-bottom: 10px;
  }
  .section2 .col2.column2 {
    padding: 0;
  }
  body .sec2map {
    height: 250px !important;
  }
}
.close-nav-button{
  display: none;
}
/* .user-name {
  max-width: 135px;
  position: relative;
}
.user-name span{
  max-width: 100%;
  padding: 0;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.user-name.dropdown-toggle::after {
  position: absolute;
  right: 0;
} */
@media only screen and (max-width: 991px) {
  .emptylegsmainBody li{
    padding: 10px !important;
  }
  .emptylegsbody ul{
    border: 1px solid #ececec;
  }
  .emptylegsbodytext3{
    border-left: 0px solid #ececec !important;
  }
.emptylegsmainBody ul{
  display: grid;
  grid-template-columns: 1fr 0.2fr !important;
}
  .header-top .navbar-toggler-icon{
    filter: unset;
  }
    .navbar-toggler-icon{
      filter: invert(1);
    }
  .close-nav-button i {
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
    background: #fff;
    top: 35%;
    left: 5%;
    transition: background 0.4s;
  }
  .close-nav-button.show{
    display: block;
  }
  .close-nav-button {
    position: fixed;
    z-index: 50;
    right: 18px;
    top: 55px;
    height: 20px;
    width: 60px;
    margin-top: -0.84375rem;
    cursor: pointer;
    overflow: hidden;
  }
  .close-nav-button.show i:first-child{
    top: 50%;
    transform: rotate(-315deg);
  }
  .close-nav-button.show i:last-child{
    bottom: 50%;
    transform: rotate(-225deg);
  }
  .close-nav-button i{
    background: #fff;
  }
  .main-navbar .navbar-toggler,
  .main-navbar .navbar-toggler:hover,
  .main-navbar .navbar-toggler:focus,
  .main-navbar .navbar-toggler.active,
  .main-navbar .navbar-toggler:active{
    border: 0;
  }
  .more-options{
    margin-top: 20px;
    width: 100%;
    justify-content: end;
  }
  .navbar-nav li a, .navbar-nav li{
    width: 100%;
  }
  .navbar-nav li .more-options a{
    margin: 0 !important;
    margin-left: 10px !important;
    color: var(--primary-theme) !important;
  }
  .more-options a svg{
    fill: var(--primary-theme) !important;
  }
  .more-options a {
    margin: 0 !important;
    height: 55px !important;
    width: 55px !important;
    background-color: #fff;
    border-radius: 50px;
  }
  .more-options a #cuacz{
    display: none;
  }
  .more-options a .sz_26.mr_2.no_pe{
    margin: 0;
  }
  .page-scroll-container.navbarNav-open,
  body.navbarNav-open{
    overflow:hidden !important;
  }
  .page-header-burger.PointerMenu{
    display: block;
  }
  .page-header-burger.PointerMenu.navbarNav-none{
    display: none;
  }
  .main-header-logo .flex_ac{
    width: 100%;
  }
  .main-header-logo .flex_ac .page-header-logo{
    width: auto !important;
  }
  .navbar-collapse{
    transition: transform .3s ease-in-out;
    transform: translateX(-100%);
  }
  .navbar-collapse.collapsing{
    display: none;
  }
  .navbar-collapse.show{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #9fa0a4;
    transform: none !important;
  }
  .more-options-wrap{
    order: 1;
  }
  .navbar-nav{
    width: 75%;
    height: 100%;
    padding: 15px;
  }
  .user-name-wrap{
    display: unset !important;
  }
  .user-name-wrap .btn-group{
    display: unset !important;
  }
  .user-name-wrap .btn-group .user-name{
    width: 100%;
    text-align: end;
    font-size: 22px !important;
    color: #fff !important;
    height: 70px !important;
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: 500;
    border-bottom: 1px #fff solid;
    border-radius: 0;
    padding-right: 0;
  }
  .user-name-wrap .dropdown-menu-end{
    position: absolute;
    width: 100%;
  }
  ul.navbar-nav .nav-item .nav-link {
    margin: 0 !important;
    font-size: 22px !important;
    color: #fff !important;
    height: 70px !important;
    border-bottom: 1px #fff solid;
    /* text-align: right; */
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: 500;
}
  .main-navbar.mobileHide{
    display: block !important;
    padding: 0px 15px !important;
    width: auto;
  }
  .page-header-burger i {
    width: 100%;
  }
  .page-header-line-phone{
    left: 85px !important;
    height: 65px !important;
    top: unset !important;
  }
  .main-header-logo.pl_19{
    padding-left: 100px !important;
  }
  .page-header-burger{
    right: unset;
    left: 18px;
    top: 32px;
    height: 30px;
    width: 35px;
  }

  .section2 .sec2addr {
    font-size: 14px;
  }
  .sec2contactform h3 {
    font-size: 16px;
  }
  .sec2contactform input[type="text"],
  .sec2contactform input[type="email"],
  .sec2contactform textarea {
    padding: 10px;
    margin: 3px 0;
  }
  .sec2contactform input[type="submit"] {
    padding: 10px 30px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 420px) {
  .section1 h1 {
    font-size: 28px;
  }
}
.fleet-details{
  background-image: url(../img/fleet/main-banner.PNG);
  height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ejm-fleet-active{
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
.fleet-images ul li:not(:last-child){
  margin-bottom: 35px;
}
.fleet-images ul li img {
  height: 100%;
  width: 100%;
}
.fleet-images ul li h4 {
  text-align: center;
  font-size: 1.35rem;
  text-transform: capitalize;
}

.emptylegshead{
  background-color: var(--primary-theme);
    color: #fff;
}
.emptylegsbody ul{
  border-bottom: 1px solid #ececec;
}
.emptylegsbodytext3{
  border-left:  1px solid #ececec;
}
.emptylegsmainBody li{
  padding: 0.75rem 1.5rem;
}
.emptylegsbodytext1 span svg{
  color: var(--primary-theme);
    height: 30px;
    width: 30px;
    margin: 0px 10px;
}
.emptylegsmainBody ul{
  display: grid;
  grid-template-columns: 1fr 0.1fr 0.4fr;
}
.emptylegsbodytext3 div:last-child{
  margin-top: 0.75rem;
}
.emptylegsbodytext3 span svg{
  color: var(--primary-theme);
    height: 20px;
    width: 20px;
    margin-right: 10px;
}
.emptylegsmainFooter {
  text-align: center;
  margin-top: 35px;
}
.fleet-detail{
  display: none;
  width: 100%;
}
.fleet-detail.active{
  display: block;
}
.ejm-fleet-aircraft {
  color: #fff;
  background-color: #a28045;
}
.fleet-detail .ejm-fleet-types {
  text-align: center;
}
.ejm-fleet-aircraft ul li:hover {
  background-color: var(--primary-theme) !important;
  color:#fff !important;
}
.ejm-fleet-aircraft ul li a{
  color: #fff;
}
.ejm-fleet-aircraft ul li a:hover{
  background-color: initial !important;
  color:inherit !important;
}
.ejm-fleet-types span{
  font-size: 1.4rem;
    width: 100%;
    background-color: #fff;
    display: block;
}
.result-body{
  height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.page-content {
  position: relative;
}

.page-content .com-wrapper.h_100.flex-mobiJc.plMobi_4{
  position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}
.page-content .hm-intro iframe{
  height: 100%;
  width: 100%;
}
.page-content .com-wrapper.pr_19 {
  padding-right: 6.5rem !important;
}


.searchFrom {
  border: 1px solid #8a8a8a;
  border-radius: 0px;
}

.searchFrom_wapper {
  display: grid;
  grid-template-columns: 42% 1% 25% 1% 25% 6%;
  place-items: center;
}

.searchFrom_passengers {
  display: grid;
  grid-template-columns: 10% 80% 10%;
  place-items: center;
  width: 100%;
  padding: 0 40px;
}
.grid2Col{
  
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 50px;

}
.searchFrom_fromAndTo {
    width:100%;
  display: grid;
  grid-template-columns:49% 2% 49%;
  place-items: center;
  position: relative;
}
.searchFrom_fromAndTo .dropdown{
  width: 100%;
}
.searchFrom input {
  border: 0;
  width: 100%;
  padding: 16px;
}
.quantity::-webkit-inner-spin-button,
.quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.searchFrom input:focus {
  outline: none;
}

.searchFrom_passengers~div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchFrom_passengers h4{
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  display:flex;
  align-items:center;
}
    .searchFrom_passengers h4 input {
        width: 30px;
        padding: 16px 0px;
    }
.searchFrom_passengers button,
.searchFrom_passengers~div button {
  background: transparent;
  border: 0;
  outline: none;
  width: 100%;
}
.searchFrom_dropDown{
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.searchFrom_dropDown .dropdown-menu {
  width: 100%;
  padding: 0;
  transform: translate3d(4.6px, 52.8px, 0px) !important;
  height: 235px;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 0px;
}
button.btn-cancel {
  border-radius: 0;
  text-align: center;
  background: #b00016 !important;
  color: #fff !important;
  font-size: 0.875rem;
  line-height: 40px;
    padding: 1px 20px;
}
button.btn-cancel svg polyline,
button.btn-cancel svg line{
  stroke: #fff;
}
.checkBox_custom {
  display: flex;
  align-items: end;
}
.checkBox_custom input[type=checkbox] {
  position: relative;
	border: 2px solid var(--primary-theme);
	border-radius: 2px;
	background: none;
	cursor: pointer;
	line-height: 0;
	margin: 0 .6em 0 0;
	outline: 0;
	padding: 0 !important;
	vertical-align: text-top;
	height: 20px;
	width: 20px;
	-webkit-appearance: none;
  opacity: .5;
}

.checkBox_custom input[type=checkbox]:hover {
  opacity: 1;
}

.checkBox_custom input[type=checkbox]:checked {
  background-color: var(--primary-theme);
  opacity: 1;
}

.checkBox_custom input[type=checkbox]:before {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.city-list-wrapper h4{
  font-size: 16px !important;
}
.city-list-wrapper p {
  margin: 0;
  font-size: 12px;
  color: #aeb5bc;
}
.city-list-dropdown {
  display: flex;
  align-items: center;
}
.city-list-wrapper{
  margin-left: 15px;
}
.city-list-image img {
  width: 20px;
}
.city-list-wrapper{}
.popular_city {
    padding: 10px 15px;
    color: #a9abad;
}
.searchFrom_divider{
  width: 1px;
  display: block;
  background: #8a8a8a;
  height: 80%;
}
.hidden {
  display: none;
}
.searchFrom_main{
  margin: 20px 0;

}
 .searchFrom_main button {
  background-color: transparent;
  border: 1px solid #8a8a8a;
  color: #4a4a4a;
  padding: 8px 24px;
  border-radius: 0px;
  box-shadow: none;
  text-transform: uppercase;

 }
 .searchFrom:not(:last-child){
  margin-bottom: 20px;
 }
 .input2Form:not(:last-child){
  margin-bottom: 15px;
 }
 .searchFrom_formField{
  margin-top: 20px;
 }
 .select2Form{
    display: grid;
  grid-template-columns: 20% 20%;
  margin-bottom: 15px;
 }
 .select2Form select{
  border-radius: 0px;
  height: 40px;
 }
 .input2Form input{
  border: 1px solid #8a8a8a;
  border-radius: 0px;
  color: #4a4a4a;
  font-size: inherit;
  font-weight: inherit;
  height: 40px;
  padding: 5px 12px 4px;
 }
 .input2Form{
  display: grid;
  grid-template-columns: 20% 80%;

 }
 .addtionalInfo textarea{
  box-sizing: border-box;
  height: 205px;
  padding: 15px;
  border-color: #8a8a8a;
  border-radius: 0px;
  color: #4a4a4a;
  font-size: inherit;
  font-weight: inherit;
  width: 100%;
  margin-top: 15px;
 }
 .search-select{
  height: 40px;
  width: 100%;
  border-radius: 0px;
  padding: 0 20px;
  font-size: 18px;
 }

 .ui-state-default:hover, .ui-widget-content .ui-state-default:hover{
  background-color: var(--primary-theme);
  color: #fff;
 }

 .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
  color: #000;
    width: 35px;
    line-height: 1.7rem;
    text-align: center;
    height: 35px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .ui-datepicker th{
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
 }
 .ui-widget.ui-widget-content{
  background-color: #fff;

 }
 .insta-photo {
  width: 16.666%;
  height: 320px;
  position: relative;
}
.insta-photos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.insta-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.insta-photo__hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #222222;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.insta-photo__hover .icon-insta {
  font-size: 70px;
}
.icon-insta svg{
  height: 50px;
  width: 50px;
}
.icon-insta svg path{
  fill:#ffffff;
}
.insta-photo:hover .insta-photo__hover {
  opacity: 0.5;
}
.about-pic img {
  min-width: 100%;
  margin-bottom: 10px;
  padding-right: 10px;
  width: 100%;
}
.page-header-Wh.white_ img{
  filter: brightness(1) grayscale(1) invert(1);
}
#posts-content .post {
  margin-bottom: 50px;
  background: none;
  padding: 0;
  padding-bottom: 65px;
  border-radius: 0;
  font-size: inherit;
  margin-right: 10px;
  border-bottom: 1px solid #e5e7f2;
}
#posts-content .post .blog-single-title {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#posts-content.blog-img-top-list .blog-single-title {
  margin-bottom: 10px;
}
.blog-single-title{
  color: var(--primary-theme);
    font-weight: 700;
    font-size: 30px;
    line-height: 46px;
}
.blog-single-title a{
  color: #1f1f1f;
}
#posts-content.blog-img-top-list .entry-meta {
  margin-bottom: 55px;
}
.related-posts .entry-meta a, #posts-content .entry-meta, #posts-content .entry-meta a {
  color: inherit;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  font-weight: inherit;
}
#posts-content .entry-meta {
  width: 100%;
  margin-bottom: 20px;
  line-height: 1.3;
}
.entry-meta .published {
  padding-right: 10px;
  position: relative;
}
.entry-meta span {
  margin-right: 10px;
  color: var(--primary-theme);
}
.topbar-phone a:before, .entry-meta .page-type:before, .entry-meta .published:before, .entry-meta .author:before {
  content: '';
  width: 1px;
  height: 12px;
  background: #e5e7f2;
  position: absolute;
  right: 0;
  top: 2px;
}
#posts-content .comment-count {
  margin-right: 5px;
}
#posts-content .comment-count span {
  margin-right: 0;
}
.entry-meta span {
  margin-right: 10px;
}
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute!important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
#posts-content.blog-img-top-list .portfolio .page-content, #posts-content.blog-img-top-list .post .page-content {
  margin-bottom: 30px;
  margin-top: 30px;
}
#posts-content.blog-img-left-list .post p, #posts-content.blog-minimal-list .post p, #posts-content.blog-img-top-list .post p, #posts-content.blog-img-top-list .portfolio p {
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 0;
  max-width: 90%;
}
#posts-content .post p, #posts-content .blog-content ul li {
  color: #000;
}
a.tt_button {
  padding: 15px 25px;
  background-color: var(--primary-theme);
  color: #fff;
  border-radius: 50px;
}
.blog .right-sidebar, .single-post .right-sidebar {
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #f4f8fb;
  padding-bottom: 0;
  background: #f4f8fb;
}
.blog_widget {
  font-size: inherit;
  position: relative;
}
.blog_widget {
  margin-bottom: 40px;
  padding-left: 0;
}
.blog_widget .woocommerce-product-search label, .blog_widget .search-form label {
  width: 100%;
  position: relative;
}
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute!important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.blog_widget .woocommerce-product-search .search-field, .blog_widget .search-form .search-field {
  background: #fff;
}
.search .search-form .search-field, .blog_widget .woocommerce-product-search .search-field, .blog_widget .search-form .search-field {
  border-radius: 4px;
  background: #f7f9fb;
}
.search .search-form .search-field, .blog_widget .search-form .search-field, .blog_widget .woocommerce-product-search .search-field, .blog-header-form .wpcf7 .wpcf7-text, .blog-header-form .wpcf7 .wpcf7-email {
  height: 50px;
  line-height: 50px;
  max-width: 100%;
  min-width: 100%;
  border: 1px solid #e5e7f2;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.wpb_wrapper #loginform .input, .woocommerce-product-search .search-field, .search-form .search-field, .wpcf7 input[type="date"], .wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-select, .modal-content-inner .wpcf7 .wpcf7-text, .modal-content-inner .wpcf7 .wpcf7-email {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  width: 100%;
  box-sizing: border-box;
  min-width: 100%;
  border: none;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: none;
  letter-spacing: 0;
  outline: none;
  line-height: 50px;
  height: 50px;
  padding: 0 20px;
  text-align: left;
  font-family: inherit;
  border-radius: 4px;
  font-weight: 400;
}
.woocommerce-product-search button[type="submit"], .woocommerce-product-search input[type="submit"], .search-submit {
  position: absolute;
  outline: none;
  background: none;
  margin-top: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  border: none;
  top: 0;
  padding: 0;
  right: 0;
  height: 50px;
  width: 50px;
  font-family: FontAwesome;
  opacity: .7;
}
.blog_widget {
  font-size: inherit;
  position: relative;
}
.blog_widget {
  margin-bottom: 40px;
  padding-left: 0;
}
.blog .widget-title {
  font-size: 18px;
  color: var(--primary-theme);
  font-weight: 700;
  margin-bottom: 20px;
    line-height: 20px;
    letter-spacing: 0;
}
#single-page .single-page-content .widget ul, .blog_widget ul {
  padding: 0;
  list-style-type: none;
  line-height: inherit;
}
#single-page .single-page-content .widget ul li, .blog_widget ul li {
  color: inherit;
  line-height: 2.1em;
}
.blog_widget ul li a {
  color: inherit;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
.blog_widget ul li a:before {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  position: relative;
  font-weight: 700;
  margin: 0;
  -webkit-transition: .25s;
  -moz-transition: .25s;
  -ms-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  font-size: 12px;
  color: #828282!important;
  display: inline-block;
  padding-right: 10px;
}
.btn{
  border-radius: 50%;
}
.sec2contactform h2{
  font-size: 28px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 0px;
}
.sec2contactform h1{
  font-size: 18px;
}
.sec2contactform h1 a{
  color: var(--primary-theme) !important;
  margin-left: 5px;
  cursor: pointer;
} 
.btnClose::before, .btnClose::after {
  left: 9px;
}
.btnClose::before, .btnClose::after {
  left: 15px;
}
.btnClose::after {
  transform: rotate(-45deg);
}
.btnClose::before {
  transform: rotate(45deg);
}
.btnClose::before, .btnClose::after {
  position: absolute;
  content: " ";
  height: 100%;
  width: 2px;
  top: 0px;
  background-color: rgb(211, 211, 211);
  transition: all 0.25s ease 0s;
  left: 11px;
}
.btnClose{
  position: absolute;
    z-index: 2147483647;
    width: auto;
    height: auto;
    opacity: 1;
    transition: all 0.25s ease 0s;
    border-radius: 100%;
    border: 10px solid transparent;
    cursor: pointer;
    top: 5px;
    right: 10px;
    padding: 10px;
    width: 26px;
    height: 26px;
    background-color: transparent;
}
.btnClose:hover{
  background-color: transparent !important;
}
.sec2contactform .form-select{
  padding: 18px;
  border: 0;
  background: #ededed;
  margin: 7px 0;
  width: 20%;
  margin-right: 20px;
  border-radius: 0px;
}
.egCAtU {
  display: initial;
  width: 445px;
  position: relative;
}
.Login_selection{
  display: flex;
}
.section-insta-photos{

}
.about-pic .row{
  padding-top: 0em;
  padding-bottom: 0em;
}
#LoginModal .modal-content{
  border-radius: 0px;
}
@media (min-width: 992px){
.modal-lg, .modal-xl {
    --bs-modal-width: 945px;
}}
.Login_selection1{
  width: 510px;
    padding: 0px 16px 32px;
}
.Login_selection2{
  width: 465px;
  display: block;
  height: 100%;
  text-align: -webkit-auto;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.Login_selection3{
  max-width: 100%;
    box-sizing: content-box;
    margin: 0px auto;
    padding: 32px 16px 0px;
}
.egCAtU {
  background-color: rgb(24, 24, 24);
}
.eSmlap {
  float: left;
  width: 100%;
  background: rgb(24, 24, 24);
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 30px 70px;
}
.gMiDPB {
  font-size: 24px;
  float: left;
  text-align: left;
}
.gMiDPB span {
  display: block;
  clear: both;
  width: 100%;
  font-size: 12px;
  color: rgb(153, 153, 153);
  line-height: 100%;
}
.OXOeY {
  position: absolute;
  width: 100%;
  height: 100px;
  max-width: 207px;
  margin: 0px auto;
  overflow: hidden;
  left: 0px;
  right: 0px;
  top: 0px;
}
.bzEJfi {
  width: 32px;
  height: 32px;
  transform: scale(0.8);
  position: absolute;
  top: 8px;
  left: 90px;
  z-index: 1;
  opacity: 1;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzMiIGhlaWdodD0iMzMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMyLjIgMTUuNzkzbC0zLjE1OC0xLjE4MmExLjg0MiAxLjg0MiAwIDAwLS42MzctLjExNWwtNy4wNzUuMDAyTDEwLjYxMy44NmExLjAyMyAxLjAyMyAwIDAwLS44MDctLjM5Mkg4LjQ1MWMtLjcxOCAwLTEuMjE0LjcxOS0uOTU4IDEuMzlsNC44MTUgMTIuNjRINy4yOTdMMi45MjEgMTAuMTJhMS4wMzUgMS4wMzUgMCAwMC0uNzI1LS4zMDJsLS43MzMuMDAyYy0uNzI3IDAtMS4yMjEuNzM0LS45NTIgMS40MDVsMi4xMSA1LjI3NC0yLjExIDUuMjc0YTEuMDI1IDEuMDI1IDAgMDAuOTUyIDEuNDA1aC43MzVjLjI3NCAwIC41MzMtLjEwOS43MjUtLjMwMUw3LjMgMTguNTAyaDUuMDEybC00LjgxNyAxMi42NGMtLjI1Ni42NzIuMjQgMS4zOS45NTggMS4zOWgxLjM1NWMuMzE3IDAgLjYxMi0uMTQ1LjgwNi0uMzlsMTAuNzE1LTEzLjY0aDcuMDc3Yy4yMTggMCAuNDMyLS4wMzguNjM3LS4xMTVsMy4xNTctMS4xODJjLjY1NS0uMjQuNjU3LTEuMTY2IDAtMS40MTJ6IiBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=") 0% 0% / 100%;
  animation: 0.7s ease 1s 1 normal forwards running planeIconAnimate;
}
.kvEiXt {
  width: 100%;
  position: absolute;
  height: 30px;
  inset: 22px 0px 0px;
  max-height: 1000px;
  overflow: hidden;
}
.kvEiXt::before {
  height: 115px;
  width: 191px;
  border: 2px solid rgb(153, 153, 153);
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  margin: 0px auto;
  border-radius: 100%;
  overflow: hidden;
  content: "";
}
.eJzZkQ {
  position: absolute;
  height: 30px;
  max-height: 1000px;
  inset: 22px 0px 0px 6px;
  overflow: hidden;
  width: 0%;
  animation: 1.3s ease 0.3s 1 normal forwards running planeLineAnimate;
}
.eJzZkQ::after {
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 100%;
  overflow: hidden;
  right: 0px;
  margin: 0px auto;
  border: 2px solid rgb(116, 175, 43);
  content: "";
  height: 115px;
  width: 191px;
}
.kpxhwA {
  margin-top: 45px;
  display: block;
  font-size: 10px;
  z-index: 4444;
  text-transform: uppercase;
}
.gMiDPB:last-child {
  float: right;
  text-align: right;
}
.gMiDPB span {
  display: block;
  clear: both;
  width: 100%;
  font-size: 12px;
  color: rgb(153, 153, 153);
  line-height: 100%;
}
.hXVtgv {
  float: left;
  width: 100%;
  height: 6px;
  background-color: rgb(144, 144, 144);
  overflow: hidden;
  position: relative;
}
.hXVtgv::before {
  content: "";
  position: absolute;
  left: 0px;
  background-color: rgb(116, 175, 43);
  height: 100%;
  transition: all 1s ease 0s;
  width: 25%;
}
.egCAtU .KycRightSideContentcomponent__Wrapper-ttgqxn-0 {
  height: calc(100% - 106px);
}
.cEdIYO {
  width: 320px;
  height: 320px;
  margin: 32px 64px;
}
.bChPIH {
  text-align: center;
  margin: 0px 32px;
  font-size: 16px;
  line-height: 28px;
  color: rgb(255, 255, 255);
}
.boVaCz {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgb(24, 24, 24);
}
.gMiDPB {
  font-size: 24px;
  float: left;
  text-align: left;
}


#blogs-our ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
}
#blogs-our ul li{
  width: 100%;
}
#blogs-our ul li a{
  width: 100%;
}


.blogsAllWrapper {
  display: flex;
}
.entry-image img {
  height: 150px;
  width: 150px;
}
.blogsAllBody {
  margin-left: 15px;
}
.page-header {
  box-shadow: 0 6px 40px rgb(0 0 0 / 10%);
}
.our-client-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--primary-theme);
  width: 100%;
  position: relative;
  z-index: 1;
}
.our-client ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.our-client ul li:not(:last-child){
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  .our-client-wrap {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px !important;
  }
  .our-client ul{
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    width: 100%;
  }
  .our-client ul li{
    width: 100%;
    text-align: center;
  }
  .our-client ul li:not(:last-child){
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.navigation-pagination{
  display: flex;
    justify-content: center;
}
.navigation-pagination .pagination li a{
  color: #000;
}
.navigation-pagination .pagination .page-link svg{
  height: 20px;
    width: 20px;
}
.navigation-pagination .pagination li a:hover svg path,
.navigation-pagination .pagination li.active a svg path{
  fill: #fff;
}
.navigation-pagination .pagination li a:hover,
.navigation-pagination .pagination li.active a{
  background-color: var(--primary-theme);
  border: 1px var(--primary-theme) solid;
  color: #fff;
}
.toast.show{
  top: 15px !important;
  right: 15px !important;
}
.toast.show .toast-wrap{
  position: relative;
  z-index: 4;
  background-color: #fff;
}
.toast-overlay{
  position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    background-color: #0000005e;
}
.fleet-swiper-wrapper {
  display: -webkit-box;
  overflow: auto;
  padding: 5px 0px;
}
/* Scrollbar Styling */
.fleet-swiper-wrapper::-webkit-scrollbar {
  height: 10px;
}

.fleet-swiper-wrapper::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.fleet-swiper-wrapper::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary-theme); 
}

.fleet-swiper-wrapper .swiper-slide{
  width: 33.333%;
  margin-right: 15px;
}
.BindFleetsList {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.BindFleetsList li:nth-child( odd ) {
   
}
.BindFleetsList li:nth-child( odd ) {
    
}
@media screen and (max-width: 767px) {
    .fleet-result-slider img {
    width: 100%;
    height: 225px;
  }
  .fleet-swiper-wrapper .swiper-slide{
    width: 90%;
    margin-right: 10px;
  }
  .fleet-detail.active{
   background-color: #fff;
  }
  .com-wrapper.flex_c.flex_je.flex-mobiJc.plMobi_4{
    padding-left: 18px !important;
  }
  #blogs-our ul{
    grid-template-columns: unset;
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    display: -webkit-box;
  }
  #blogs-our ul li {
    width: 235px;
  }
  .insta-photos{
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    flex-wrap: unset;
  }
  .insta-photos a {
    width: 235px;
    min-width: 235px;
    max-width: 235px;
    margin: 0;
  }
  .blogsAllWrapper{
    flex-wrap: wrap;
  }
  .egCAtU{
    display: none;
  }
  .blog .right-sidebar{
    margin-top: 50px;
  }
  .insta-photo{
    width: 100%;
  }
  .searchFrom_wapper{
    grid-template-columns: 100%;
    width: 100%;
  }
  .searchFrom_fromAndTo{
    grid-template-columns: 100%;
    width: 100%;
  }
  .searchFrom_dropDown{
    width: 100%;
  }
  .searchFrom_fromAndTo .dropdown,
  .searchFrom_dropDown{
    border-bottom: 1px solid #e3e3e4;
  }
  .searchFrom_passengers~div{
    width: 100%;
  }
  .searchFrom_passengers{
    padding: 15px 40px;
  }
  .checkBox_custom{
    display: block;
  }
  button.btn-cancel {
    text-align: center;
    background: #b00016 !important;
    color: #fff !important;
  }
  .Login_selection2{
    width: 100%;
  }
  .grid2Col {
    grid-template-columns: 100%;
  }
}





