@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');


/* font-family: "Boldonse", system-ui; */
/* font-family: "Google Sans", sans-serif; */


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --blackColor:#000;
  --whiteColor:#ffffff;
  --themeColor:#0F52BA;
  --secondartColor:#777777;
  --BoldonseFont:"Boldonse", system-ui;;
  --GoogleSansFont:"Google Sans", sans-serif;
}

body {
  font-family:var(--GoogleSansFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color:var(--blackColor);
  background-color:var(--whiteColor);
  overflow-x: hidden;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.6s;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:var(--BoldonseFont);
  line-height: 1;
  font-weight:500;
  margin-bottom: 20px;
}
h1,
.h1-title {
  font-size:65px;
  line-height: 1.40;
  text-transform:uppercase;
}
h1 span,
.h1-title span{
  color:var(--themeColor);
}
h2,
.h2-title {
  font-size:32px;
  line-height:1.5;
  color:var(--secondartColor);
}
h2 span,
.h2-title span{
  color:var(--blackColor);
}
h3,
.h3-title {
  font-size:27px;
}
h4,
.h4-title {
  font-size:24px;
}
h5,
.h5-title {
  font-size: 22px;
}
h6,
.h6-title {
  font-size: 20px;
}
p {
  margin-bottom: 20px;
}
.white >*,.white-txt{
  color:var(--whiteColor);
}
p:last-child,
h1:last-child,
.h1-title:last-child,
h2:last-child,
.h2-title:last-child,
h3:last-child,
.h3-title:last-child,
h4:last-child,
.h4-title:last-child,
h5:last-child,
.h5-title:last-child,
h6:last-child,
.h6-title:last-child {
  margin: 0;
}
figure {
  margin: 0 0 0;
}
.sec-head {
  margin-bottom:60px;
}
.sec-head.flex{
  display:flex;
  flex-wrap:wrap;
}

.white-title span{
  color:#777777;
}
.cmn-gap {
  padding: 80px 0;
}
.cmn-btn{
  color: var(--whiteColor);
  cursor: pointer;
  display: inline-flex;
  align-items:center;
  font-size: 16px;
  font-weight:400;
  padding: 10px 26px;
  background:var(--themeColor);
  border-radius:15px;
  position:relative;
  overflow:hidden;
  z-index:1;
  transition: all 0.4s ease 0s;
}
.cmn-btn:after{
  position:absolute;
  content:'';
  top:0;
  left:auto;
  right:0;
  width:0;
  height:100%;
  border-radius:15px;
  transition:0.4s;
  background-color:var(--secondartColor);
  z-index:-1;
}
.cmn-btn span{
  position:relative;
  z-index:1;
}

.cmn-btn:hover {
  color: var(--whiteColor);
}
.cmn-btn:hover:after{
  width:100%;
  left:0;
  right:auto;
}
.cmn-btn.white{
  background:var(--whiteColor);
  color:var(--blackColor);
  padding: 10px 25px;
}
.cmn-btn.white:hover{
  color:var(--whiteColor);
}
.cmn-subtitle{
  font-weight: 500;
  color:var(--whiteColor);
  background-color:var(--themeColor);
  display:inline-block;
  padding:3px 10px;
  border-radius:10px;
  margin-bottom:15px;
}
.cmn-subtitle.black{
  background-color:var(--blackColor);
  color:var(--whiteColor);
}

.with-line-subtitle{
  display:inline-block;
  padding-left:70px;
  position:relative;
  margin-bottom:32px;
}
.with-line-subtitle:after{
  position:absolute;
  content:'';
  top:50%;
  transform:translateY(-50%);
  left:0;
  width:50px;
  height:1px;
  background-color:var(--blackColor);

}

input,
textarea,
select {
  font-weight: 400;
  outline: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px !important;
  background-image: url(../images/select-arw.png);
  background-repeat: no-repeat;
  background-position: 94% center;
}
input[type="text"],
input[type="email"],
textarea{
  width:100%;
  height:55px;
  border:1px solid rgba(0,0,0,0.2);
  padding:10px;
  border-radius:5px;
}
textarea{
  height:150px;
  resize:none;
}
input[type="submit"]{
  border:0;
  padding:15px 45px;
  background-color:var(--themeColor);
  color:var(--whiteColor);
  font-size:18px;
  transition:0.4s;
  border-radius:50px;
}
input[type="submit"]:hover{
  background-color:var(--blackColor);
}

.close_menu {
  display: none;
}
.hamberger {
  display: none;
}

/*==== Header Start ====*/
.navbar{
  padding:0;
}

.main-head{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:99;
  padding:30px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.brand{
  width:200px;
  display:block;
  flex:0 0 auto;
}
.nav-list-uter{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-right:90px;
  position:relative;
}
.nav-list-uter ul{
  display:flex;
  align-items:center;
  width:fit-content;
  margin:0 auto;
  z-index:1;
}

.nav-list-uter ul li:last-child{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  right:30px;
}

.nav-list-uter ul li a{
  padding:8px 20px;
  display:inline-block;
  font-weight: 400;
  font-size: 16px;
  color:var(--whiteColor);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.nav-list-uter ul li:first-child a{
  border-radius:50px 0 0 50px;
}
.nav-list-uter ul li:nth-last-child(2) a{
  border-radius:0 50px 50px 0;
}
.nav-list-uter ul li:last-child a{
  background-color:transparent;
  backdrop-filter: blur(0px);
  padding:0;
}
.nav-list-uter ul li a:hover{
  color:var(--themeColor);
}
.banner-sec{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  z-index:1;
  padding:150px 0 110px;
}
.banner-img-wpr{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
  pointer-events:none;
}
.banner-img-wpr:after{
  position:absolute;
  content:'';
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner-img-wpr img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.bnr-lft-wpr{
  flex:0 0 auto;
  max-width:725px;
}
.bnr-rgt-wpr{
  flex:1;
}
.bnr-rgt-inr{
  max-width:560px;
  margin-left:auto;
}
.banner-inr-row{
  align-items:flex-end;
}
.bnr-rgt-inr p span{
  color:var(--themeColor);
}
.bnr-btnlist{
  display:flex;
  flex-wrap:wrap;
  margin:-8px;
}
.bnr-btnlist li{
  padding:8px;
}
.about-upr{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
}
.about-upr .cmn-subtitle{
  flex:0 0 auto;
}
.about-upr-rgt{
  flex:1;
  padding-left:15px;
}
.about-upr-rgt-inr{
  max-width:1140px;
  margin-left:auto;
}

.about-lower-row{
  --bs-gutter-x:0;
  align-items:flex-end;
}
.about-sec{
  overflow:hidden;
  position:relative;
  z-index:1;
}
.abt-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
  pointer-events:none;
}
.about-lower-lft {
    width: 43.3%;
    margin-top:-37px;
    position:relative;
    z-index:2;
}
.about-lower-lft figure{
  margin-left:calc(((100vw - 1720px)/2)* -1);
}
.about-lower-lft figure img{
  width:100%;
}
.about-lower-rgt{
  width:56.7%;
  background-color:var(--themeColor);
  padding:47px 0;
  position:relative;
  z-index:1;
  margin-bottom:100px;
}
.about-lower-rgt:after{
  position:absolute;
  content:'';
  top:0;
  left:0;
  width:70vw;
  height:100%;
  background-color:var(--themeColor);
  z-index:-1;
}
.about-lower-rgt:before{
  position:absolute;
  content:'';
  top:0;
  left:-10vw;
  width:50vw;
  height:100%;
  background-color:var(--themeColor);
  z-index:-1;
}
.about-lower-rgt-wpr{
  max-width:737px;
  margin-left:78px;
}
.about-lower-row{
  --bs-gutter-x:6px;
  --bs-gutter-y:6px;
}
.about-lowerclm{
  width:23%;
}
.about-lowerclm:nth-child(3){
  width:29%;
}
.about-lower-card {
  padding: 20px 11px 20px 16px;
  border-radius: 15px;
  background-color: var(--whiteColor);
}
.about-lower-card span{
  display:block;
  color:rgba(0,0,0,0.8);
  margin-bottom:9px;
}
.about-lower-card h3{
  font-family:var(--GoogleSansFont);
  font-weight: 400;
  font-size: 18px;
  color:var(--blackColor);
}
.about-lower-rgt-wpr p{
  margin-bottom:40px;
  color:var(--whiteColor);
}
.service-sec{
  position:relative;
  z-index:1;
  overflow:hidden;
}
.service-sec .abt-bg{
  top:0;
}

.sec-hd-lft{
  flex:0 0 auto;
  max-width:960px;
  margin-left:-48px;
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
}
.sec-hd-lft .cmn-subtitle{
  flex:0 0 auto;
}
.sec-hd-lft h2{
  flex:1;
  /* padding-left:30px; */
}

.sec-hd-rgt{
  flex:1;
  padding-left:15px;
}
.sec-hd-rgt p{
  max-width:504px;
  margin-left:auto;
}
.service-row{
  --bs-gutter-x:20px;
  --bs-gutter-y:20px;
}

.service-clm{
  width:33.33%;
}
.service-card{
  width:100%;
  height:100%;
  background-color:var(--whiteColor);
  border-radius:15px;
  padding:20px 30px;
}
.service-card i{
  width:100px;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #DBDBDB;
  padding:10px;
  margin-bottom:20px;
  border-radius:50%;
}
.service-card-txt h3{
  font-family:var(--GoogleSansFont);
}
.service-wpr{
  max-width:1264px;
  margin:0 auto;
}
.travel-sec{
  background-color:var(--blackColor);
}

.travel-sec .sec-head{
  max-width:731px;
  margin:0 auto;
}
.travel-sec .sec-head h2{
  line-height:1.7;
  margin-bottom:28px;
}
.travel-row{
  --bs-gutter-x:20px;
  --bs-gutter-y:20px;
  align-items:flex-end;
}

.travel-clm{
  width:25%;
}
.travel-clm:nth-child(2){
  width:50%;
}
.travel-clm figure{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  padding-top:157%;
}
.travel-clm figure img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.travel-clm:nth-child(2) figure{
  padding-top:53%;
}
.travel-outer {
    margin-top: -132px;
}
.testimonial-sec{
  padding:100px 0 164px;
  position:relative;
  overflow:hidden;
  z-index:1;
}
.testimonial-lwr{
  max-width:845px;
  margin:60px auto 0;
}
.testimonial-sldr-card{
  text-align:center;
}
.testimonial-sldr-card i{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background-color:var(--themeColor);
  margin:0 auto 30px;
}
.testimonial-sldr-card i img{

  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7472%) hue-rotate(5deg) brightness(109%) contrast(106%);
}

.testimonial-sldr-card-txt h3{
  line-height:1.6;
}
.cmn-larg-txt{
  position: absolute;
  left:50%;
  bottom:0;
  font-family:var(--BoldonseFont);
  font-weight: 400;
  font-size:7.813vw;
  line-height:1.2;
  text-edge: cap;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.1);
  transform:translateX(-50%);
  white-space:nowrap;
  opacity:0.3;
}

.main-footer{
  background-color:var(--blackColor);
  padding:80px 0 50px;
}
.footer-lft-clm {
    width: 31%;
}
.ftr-ready-box{
  background-color:var(--themeColor);
  padding:40px 87px 40px 40px;
  border-radius:20px;
}
.ftr-ready-box span{
  font-family:var(--BoldonseFont);
  font-weight: 400;
  font-size: 32px;
  color:var(--whiteColor);
  display:block;
  margin-bottom:15px;
}
.ftr-ready-box p{
  margin-bottom:30px;
  color:var(--whiteColor);
}
.ftr-ready-btn-wpr ul{
  display:flex;
  align-items:center;
  margin:-5px;
}
.ftr-ready-btn-wpr ul li{
  padding:5px;
}
.ftr-ready-btn-wpr ul li a{
  border-radius:50px;
}
.cmn-btn.black{
  background-color:var(--blackColor);
  color:var(--whiteColor);
}
.footer-rgt-clm{
  width:69%;
}
.ftr-logo{
  width:270px;
  margin-bottom:40px;
  display:block;
}
.ftr-logo img{
  width:100%;
}
.footer-rgt-wpr{
  padding-left:43px;
  display:flex;
  flex-direction:column;
  height:100%;
}
.footer-rgt-mdll{
  display:flex;
  flex-wrap:wrap;
  margin:0 -12px;
}
.footer-rgt-mdll >div{
  padding:0 12px;
}
.footer-headquarters{
  width:33.33%;
}
.ftr-menulinks{
  font-size:14px;
  color:var(--whiteColor);
  display:block;
  margin-bottom:6px;
  font-weight:700;
}
.footer-headquarters .ftr-menulinks.hed_title{
  font-size:16px;
  margin-top:20px;
}
.fleet-srv-txt{
  font-weight: 400;
  font-size: 14px;
  color:var(--whiteColor);
  display:block;
  margin-bottom:6px;
}
.footer-contact{
  width:54.1%;
}
.ftr-title{
  font-weight: 500;
  font-size: 16px;
  color:var(--whiteColor);
  margin-bottom:20px;
  display:block;
}
.footer-contact ul{
  display:flex;
  max-width:444px;
  justify-content:space-between;
  margin:-10px;
}
.footer-contact ul li{
  padding:10px;
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
}
.ftr-contact-list li i{
  width:20px;
  flex:0 0 auto;
}
.ftr-contact-txt{
  width:calc(100% - 20px);
  padding-left:20px;
}

.ftr-contact-txt span{
  font-weight: 400;
  font-size: 14px;
  color:var(--whiteColor);
  display:block;
  margin-bottom:6px;
}
.ftr-contact-txt a{
  color:var(--whiteColor);
}
.ftr-contact-txt a:hover{
  color:var(--secondartColor);
}
.footer-menu ul li{
  margin-bottom:10px;
}

.footer-menu ul li a{
  font-weight: 400;
  font-size: 14px;
  color:var(--whiteColor);
}
.footer-menu ul li a:hover{
  color:var(--themeColor);
}
.footer-menu{
  width:12.55%;
}
p.ftr-copy-txt{
  margin-top:auto;
  font-weight: 400;
  font-size: 14px;
  color:rgba(255,255,255,0.5);
}
.ftr-copy-txt a{
  color:rgba(255,255,255,0.5);
}
.ftr-copy-txt a:hover{
  color:var(--themeColor);
}


#pum-17 {
  background-color:rgba(0,0,0,0.7);
}
#popmake-17,
#popmake-25{
  max-width: 714px !important;
  width: 100%;
  left: 50% !important;
  margin: 0;
  transform: translateX(-50%) !important;
  border-radius:15px;
}
#popmake-17 .gform_heading ,
#popmake-25 .gform_heading {
  text-align:center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#popmake-17 .gform_heading h2,
#popmake-25 .gform_heading h2{
  color:var(--blackColor);
}

#popmake-17 .gform_wrapper .gform_fields ,
#popmake-25 .gform_wrapper .gform_fields {
  row-gap:24px !important;
}
#popmake-17 .gform_wrapper .gfield_label,
#popmake-25 .gform_wrapper .gfield_label{
  font-family:var(--GoogleSansFont);
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="tel"],
.gform_wrapper select,
.gform_wrapper textarea{
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #B3B3B3 !important;
  border-radius: 10px;
  outline:none !important;
  width:100% !important;
  box-shadow:none !important;
}
#popmake-17 .gform_wrapper select{
  padding-top:6px;  
}
#popmake-17 .gform_wrapper .gfield_checkbox {
  flex-direction:row !important;
}
.gfield-choice-input{
  outline:none !important;
}
 .gform_wrapper .gform-footer{
  justify-content:center;
}
#popmake-17 .gform_wrapper .gform-footer input[type="submit"],
#popmake-25 .gform_wrapper .gform-footer input[type="submit"]{
padding: 12px 25px;
background: #0F52BA !important;
border-radius: 15px;
color:#fff;
}
#popmake-17 .gform_wrapper .gform-footer input[type="submit"]:hover,
#popmake-25 .gform_wrapper .gform-footer input[type="submit"]:hover{
  background-color:#000 !important;
}

div#gform_1_validation_container {
    display: none !important;
}
.gfield_description.instruction.validation_message {
    display: none !important;
}
.pum-close.popmake-close{
  background: #0F52BA !important;
}

#popmake-25 .gform_wrapper textarea{
  min-block-size: auto;
  height:130px;
  resize:none;
}
.gfield_required,
.gform_validation_errors{
  display:none !important;
}


/* 18-04-26 Css Start */
.nav-list-uter ul li a,
.hdr-social-outer .cmn-btn{
  font-weight:700;
}

/* 18-04-26 Css End */
.banner-img-slider,
.banner-img-slider .slick-list{
  height:100%;
}

.banner-img-slider .slick-track{
  display:flex !important;
  height:100%;
}
.banner-img-slider .banner-img-item{
  height:initial;
}
.banner-img-slider .banner-img-item figure{
  width:100%;
  height: 100%;
  object-fit:cover;
}

.about-lower-row{
  align-items:flex-end;
}

.about-lower-bx-wpr .about-lower-row {
    align-items:initial;
}
.about-lower-card{
  height:100%;
}
.bnr-rgt-inr p span{
  color:#fff;
  font-weight:700;
}
.about-upr-rgt-inr h2{
  color:#434343;
}

.testimonial-sec .cmn-larg-txt{
  font-size:6.5vw;
}








/*======= Responsive Start =======*/
@media screen and (min-width:992px){
  .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
  }
}

@media screen and (min-width: 1800px) {
  .container{
    max-width:1744px;
  }
  .footer-lft-clm {
      margin-left:-48px;
  }
}

@media screen and (min-width:2500px){
  .about-lower-row{
    align-items:center;
  }
  .about-lower-rgt{
    margin:0;
  }
}


@media screen and (max-width: 1799px) {
  h1, .h1-title {
    font-size: 50px;
  }
  h2, .h2-title {
    font-size: 30px;
  }


  .about-lower-lft figure {
    margin-left: calc(((100vw - 1290px)/2)* -1);
}
.about-lower-rgt {
    margin-bottom: 40px;
}
.about-lower-rgt-wpr {
  max-width: 100%;
  margin-left: 12px;
}
.travel-sec .sec-head {
  max-width: 550px;
}
.ftr-ready-box {
  padding: 30px;
}
.footer-headquarters {
    width: 30.33%;
}
.footer-menu {
    width: 15.55%;
}
.footer-rgt-wpr {
    padding-left: 20px;
}


}


@media screen and (max-width: 1599px) {
    h1, .h1-title {
      font-size: 40px;
  }
  h2, .h2-title {
      font-size: 28px;
  }
  .bnr-lft-wpr {
      max-width: 605px;
  }
  .about-lower-rgt ,
  .about-lower-lft{
    width: 50%;
  }
  .about-lower-rgt-wpr p {
    margin-bottom: 20px;
}
.about-lower-rgt:before {
    left: -15vw;
}
.about-lower-card h3 {
    font-size: 14px;
}
.sec-hd-lft {
    margin-left: 0;
}
.service-card i {
    width: 80px;
    height: 80px;
    padding: 20px;
}
.ftr-ready-box span {
    font-size: 26px;
    margin-bottom:10px;
}


    


}

@media screen and (max-width: 1399px) {
h3, .h3-title {
    font-size: 24px;
}
h2, .h2-title {
    font-size: 26px;
}
h1, .h1-title {
    font-size: 34px;
}

.bnr-lft-wpr {
    max-width: 500px;
}


.ftr-ready-box {
    padding: 20px;
}
.ftr-ready-btn-wpr ul li a {
    padding: 10px 18px;
}
.sec-hd-lft {
    max-width: 710px;
}
.about-lower-lft figure {
    margin-left: calc(((100vw - 1100px)/2)* -1);
}
.about-lower-rgt{
    width: 45%;
    padding: 30px 0;
    margin-bottom: 30px;
}
.about-lower-lft {
  width:55%;
}
.about-lower-rgt-wpr p {
    margin-bottom: 10px;
}
.about-lower-card span {
    font-size: 14px;
}
.about-lower-card {
    padding: 15px 11px 15px 13px;
    border-radius: 10px;
}
.about-lower-card h3{
  line-height:1.3;
}

.about-upr {
    margin-bottom: 80px;
}

}

@media screen and (max-width: 1199px) {
 .cmn-gap {
    padding: 70px 0;
}
h2, .h2-title {
    font-size: 24px;
}


.brand {
    width: 150px;
}
.nav-list-uter ul li a {
    padding: 8px 17px;
}
.about-lower-lft figure {
    margin-left: calc(((100vw - 880px)/2)* -1);
}
.about-lower-card span {
    font-size: 12px;
}
.about-lower-card h3 {
    font-size: 13px;
}
.travel-sec .sec-head {
    max-width: 460px;
}

.travel-outer {
    margin-top: -92px;
}
.ftr-ready-box span {
    font-size: 20px;
}
.ftr-ready-box {
    padding: 20px 10px;
}
.ftr-ready-btn-wpr ul li a {
    padding: 10px 8px;
    font-size:14px;
}
.ftr-ready-btn-wpr ul{
  margin:-2px;
}
.ftr-ready-btn-wpr ul li {
    padding: 2px;
}
.ftr-ready-box {
    border-radius: 15px;
}
.ftr-logo {
    width: 190px;
    margin-bottom: 30px;
}
.footer-headquarters {
    width: 27%;
}
.footer-contact ul {
    flex-wrap: wrap;
}
.footer-contact {
    width: 46%;
}
.footer-menu {
    width: 27%;
}
.sec-hd-lft {
    max-width: 600px;
}


}

@media screen and (max-width: 991px) {

.hamberger{
  display:block;
  width:30px;
}
.nav-list-uter{
  position:fixed;
  top:0;
  right:-320px;
  width:320px;
  height:100vh;
  background-color:var(--paraColor);
  z-index:99;
  transition:0.5s;
}
.nav-list-uter.active{
  right:0;
}
body.active{
  overflow:hidden;
}
.nav-list-uter ul {
    justify-content: flex-start;
    margin: 0;
    flex-direction: column;
    padding-top:100px;
}
.nav-list-uter ul li {
    width: 100%;
    text-align: left;
    padding:0;
}
.nav-list-uter ul li a{
  display:block;
  color:var(--whiteColor);
  padding: 10px 30px;
}
.nav-list-uter ul li a:hover{
  color: var(--themeColor);
}
.close_menu{
  position:absolute;
  display:block;
  top:30px;
  right:30px;
  width:18px;
}


h1, .h1-title {
    font-size: 32px;
    line-height: 1.6;
}
h2, .h2-title {
    font-size: 22px;
}
.cmn-gap {
    padding: 60px 0;
}

.nav-list-uter ul li:last-child {
    position:relative;
    top:auto;
    transform:initial;
    right:initial;
}
.hdr-social-outer{
  margin-left:auto;
}
.hamberger{
  margin-left:15px;
}
.hamberger img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(109deg) brightness(107%) contrast(100%);
}
.nav-list-uter {
  background-color:var(--blackColor);
}
.nav-list-uter {
    display: block;
    padding-right: 0;
}
.nav-list-uter ul {
    width: 100%;
}

.nav-list-uter ul li a{
  background-color:transparent;
  backdrop-filter:initial;
}
.nav-list-uter ul li:last-child a{
  padding: 10px 30px;

}
.bnr-lft-wpr {
    max-width: 100%;
}
.bnr-rgt-inr {
    max-width: 100%;
    margin: 20px 0 0;
}
.about-upr {
    flex-direction: column;
    margin-bottom:30px;
}
.about-upr-rgt {
    padding: 10px 0 0;
}

.about-lower-lft {
    width: 100%;
    margin-top: 0;
}
.about-lower-rgt {
    width: 100%;
    margin-bottom:0;
}
.about-lower-lft figure {
    margin-left: calc(((100vw - 680px)/2)* -1);
}
.about-lower-rgt:after {
    left: 60vw;
}
.about-lower-card span {
    font-size: 14px;
}
.about-lower-card h3 {
    font-size: 16px;
}
.sec-hd-lft {
    max-width: 100%;
    flex-direction: column;
}
.sec-hd-lft h2 {
    padding: 10px 0 0;
}
.sec-hd-rgt {
    padding: 20px 0 0;
}
.sec-hd-rgt p {
    max-width: 100%;
    color:var(--whiteColor);
}
.service-clm {
    width: 50%;
}

.travel-sec .sec-head {
    max-width: 100%;
}
.travel-outer {
    margin-top: 30px;
}
.travel-sec .sec-head h2 {
    margin-bottom: 8px;
}
.footer-lft-clm {
    width: 100%;
}
.ftr-ready-box {
    padding: 40px 30px;
}
.footer-rgt-clm {
    width: 100%;
}
.footer-rgt-wpr {
    padding: 30px 0 0;
}
p.ftr-copy-txt {
    margin-top: 30px;
    text-align: center;
}
.footer-headquarters {
    width: 35%;
}
.footer-contact {
    width: 35%;
}
.footer-menu {
    width: 30%;
}
.footer-contact ul{
  margin:-6px;
}
.footer-contact ul li {
    padding: 6px;
}
.ftr-ready-btn-wpr ul{
  margin:-4px;
}

.ftr-ready-btn-wpr ul li {
    padding: 4px;
}
.ftr-ready-btn-wpr ul li a {
    padding: 10px 16px;
    font-size: 14px;
}

.about-lower-rgt-wpr{
  margin:0;
}
.about-lower-row{
  justify-content:space-between;
}






}

@media screen and (max-width: 767px) {
  h2, .h2-title {
      font-size: 22px;
  }
  h1, .h1-title {
      font-size: 26px;
  }
  h3, .h3-title {
    font-size: 20px;
}

  .about-lower-lft figure {
    margin-left: calc(((100vw - 500px)/2)* -1);
}
.about-lowerclm ,
.about-lowerclm:nth-child(3){
    width: 50%;
}
.travel-clm,
.travel-clm:nth-child(2) {
    width: 100%;
}
.travel-clm figure {
    padding-top: 147%;
}
.footer-headquarters{
  width:45%;
}
.footer-contact {
    width:55%;
}
.footer-menu ul{
  display:flex;
  flex-wrap:wrap;
  margin:-8px;
}
.footer-menu ul li{
  width:50%;
  padding:8px;
}
.footer-menu{
  width:100%;
  margin-top:30px;
}

.pum-close.popmake-close {
    right: 12px !important;
    top: 10px !important;
}

#popmake-17, #popmake-25 {
    max-width: 600px !important;
}

  
}


@media screen and (max-width: 575px) {
 h3, .h3-title {
    font-size: 18px;
}

.service-row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}
.about-lower-lft figure {
    margin-left: calc(((100vw - 440px)/2)* -1);
}
.testimonial-sldr-card i {
    padding: 20px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}
.main-head {
    padding: 20px 0;
}
#popmake-17, #popmake-25 {
    max-width: 500px !important;
}





}

@media screen and (max-width:479px) {
  h1, h2, h3, h4, h5, h6 {
      margin-bottom: 15px;
  }
  h1, .h1-title {
      font-size: 24px;
  }
  h2, .h2-title {
      font-size: 20px;
  }
  h3, .h3-title {
      font-size: 16px;
  }
  .cmn-gap {
      padding: 50px 0;
  }
  .cmn-subtitle {
    font-size: 14px;
    margin:0 0 10px;
  }


  .brand {
      width: 110px;
  }

  .hdr-social-outer .cmn-btn{
    padding: 7px 18px;
    border-radius: 8px;
  }
  .banner-sec {
      min-height: 500px;
      padding: 130px 0 40px;
  }
  .bnr-btnlist li {
      width: 100%;
  }
  .bnr-btnlist li a{
    width:100%;
    justify-content:center;
  }
  .about-upr-rgt {
    padding: 0;
}
.with-line-subtitle {
    margin-bottom: 12px;
}
.about-lower-lft figure {
    margin-left: calc(((100vw - 280px)/2)* -1);
}
.about-lowerclm, .about-lowerclm:nth-child(3),
.service-clm {
    width: 100%;
}
.testimonial-lwr {
    margin: 10px auto 0;
}
.ftr-ready-box {
    padding: 30px 15px;
}
.footer-headquarters ,
.footer-contact,
.footer-menu{
    width: 100%;
}

.footer-menu ul li {
    width: 100%;
    padding:0;
}
.footer-menu ul {
    margin: 0;
}
.main-footer {
    padding: 40px 0 20px;
}
.ftr-contact-txt {
    padding-left: 10px;
}

#popmake-17, #popmake-25 {
    max-width:calc(100% - 40px) !important;
    
}




}