*,
body {
    outline: 0;
}
*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: 500;
}
ul {
    list-style: none;
}
a:hover {
    text-decoration: none;
}
img {
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
}
body {
    font-family: "Poppins", sans-serif;
}

/* header */
nav{
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    padding: 8px 0;
}
.navbar-header .wrapper{
    position: relative;
    max-width: 1350px;
    padding: 0px 30px;
    height: 80px;
    line-height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* .navbar-header .wrapper .logo a{
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
} */
.navbar-header .wrapper .logo{
    width: 115px;
}
.navbar-header .wrapper .nav-links{
    display: inline-flex;
}
.navbar-header .nav-links li{
    list-style: none;
    line-height: 25px;
    padding: 9px 15px;
}
.navbar-header .nav-links li a{
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    /* padding: 9px 15px; */
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}
/* .navbar-header .nav-links li a:hover{
    background: #3A3B3C;
    color: #fff;
} */
.navbar-header .nav-links .mobile-item{
    display: none;
}
.navbar-header .nav-links .drop-menu{
    position: absolute;
    background: #434242;
    width: 210px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    padding: 8px 5px;
    border-radius: 0 0 10px 10px;
}
.navbar-header .nav-links li:hover .drop-menu,
.navbar-header .nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 65px;
    opacity: 1;
    visibility: visible;
}
.navbar-header .drop-menu li{
    padding: 5px 15px;
}
.navbar-header .drop-menu li a{
    width: 100%;
    display: block;
    padding: 0;
    font-weight: 400;
    border-radius: 0px;
    color: #fff;
    width: fit-content;
    font-size: 15px;
}
.navbar-header .mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}
.navbar-header .mega-box .content{
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.navbar-header .mega-box .content .row{
    width: calc(25% - 30px);
    line-height: 45px;
}
.navbar-header .content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navbar-header .content .row header{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}
.navbar-header .content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
}
.navbar-header .row .mega-links li{
    padding: 0 20px;
}
.navbar-header .row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}
.navbar-header .row .mega-links li a:hover{
    color: #f2f2f2;
}
.navbar-header .wrapper .btn{
    color: #000;
    font-size: 14px;
    cursor: pointer;
    display: none;
    background: #ED8122;
    border-radius: 50px !important;
    height: 35px;
    width: 35px;
    padding: 0;
    box-shadow: rgb(0 0 0 / 25%) 0px 30px 120px -30px, rgb(0 0 0 / 30%) 0px 20px 40px -20px, rgb(97 97 97 / 35%) 0px 3px 3px 0px inset;
}
.navbar-header .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
}
nav input{
    display: none;
}
.right-menu{
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.search-bar{
    border: 1px solid #c2c2c2;
    padding: 6px;
    margin-left: 10px;
    border-radius: 50px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 40px -40px, rgba(10, 37, 64, 0.35) 0px 2px 8px -2px inset;
}
.search-bar .input-group .form-control{
    font-size: 14px;
    border: 0;
    border-radius: 50px;
    padding: 0px 12px;
    height: 36px;
}
.search-bar .input-group .form-control:focus{
    box-shadow:none;
    background: transparent;
}
.search-bar .input-group .btn{
    display: block;
}
.search-bar .input-group .btn i{
    color: #fff;
}
.nav-link::before {
    transition: 300ms;
    height: 3px;
    content: "";
    position: absolute;
    border-radius: 50px;
    background-color: #ee9f2d;
}
.nav-link-ltr::before {
    width: 0%;
    bottom: -5px;
    left: 0;
}
.nav-link-ltr:hover::before {
    width: 100%;
}
nav.sticky {
    top: 0;
    padding: 0px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
nav.sticky .wrapper .logo{
    width: 70px;
}
nav.sticky .wrapper{
    height: 70px;
    line-height: 70px;
}
nav.sticky .nav-links li:hover .drop-menu, 
nav.sticky .nav-links li:hover .mega-box{
    top: 55px;
}
/* end header */

/* banner-sec */
.banner-sec{
    padding-top: 25px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.banner-sec::after{
    content: "";
    background: url(../img/bg/banner-right.png) no-repeat;
    position: absolute;
    right: 0;
    bottom: -40px;
    background-size: 100% 100%;
    height: 500px;
    width: 500px;
    z-index: 1;
}
.banner-sec .banner-sec-bg{
    background-image: linear-gradient(to top, #f0c17d 0%, #EA9E32 100%);
    
    border-radius: 45px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    margin: 0 50px;
}
.banner-sec-bg .banner-sec-bg-txt h5{
    color: #434242;
    background-color: #ffffff;
    transform: skew(-20deg);
    display: inline-block;
    padding: 8px 25px;
    margin-bottom: 25px;
}
.banner-sec-bg .banner-sec-bg-txt h5 span{
    transform: skew(-20deg);
}
.banner-sec-bg .banner-sec-bg-txt h1{
    font-size: 70px;
    font-weight: 900;
    color: #434242;
    /* line-height: 65px; */
    margin-bottom: 40px;
}
.banner-sec-bg .banner-sec-bg-txt h1 span{
    display: block;
}
.banner-sec-bg .banner-sec-bg-txt .btn{
    border: 2px solid #434242;
    border-radius: 50px;
    padding: 8px 38px;
    color: #434242;
    font-weight: 600;
}
/*  */
.circle{
    position: absolute;
    border-radius: 50%;
    background: #DB8B18;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}
.small{
    width: 200px;
    height: 200px;
    right: -100px;
    bottom: -100px;
}
.medium{
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -200px;
}
.large{
    width: 600px;
    height: 600px;
    right: -300px;
    bottom: -300px;
}
.xlarge{
    width: 800px;
    height: 800px;
    right: -400px;
    bottom: -400px;
}
.xxlarge{
    width: 1000px;
    height: 1000px;
    right: -500px;
    bottom: -500px;
}
.shade1{
    opacity: 0.2;
}
.shade2{
    opacity: 0.5;
}
.shade3{
    opacity: 0.7;
}
.shade4{
    opacity: 0.8;
}
.shade5{
    opacity: 0.9;
}
@keyframes ripple{
  0%{
    transform: scale(0.8);
  }
  
  50%{
    transform: scale(1.2);
  }
  
  100%{
    transform: scale(0.8);
  }
}
/* end banner-sec */

/* banner-slider */
.banner-slider{
    padding-bottom: 50px;
}
.banner-slider .swiper-wrapper .swiper-slide{
    height: 475px;
}
.banner-slider .swiper-wrapper img{
    border-radius: 15px;
    object-fit: cover;
}
.banner-slider .swiper{
    padding-bottom: 45px;
}
.banner-slider .swiper-pagination .swiper-pagination-bullet-active{
    width: 50px;
    border-radius: 10px;
    background-color: #C4C4C4;
}
/* end banner-slider */

/* how-work */
.how-work{
    padding-bottom: 60px;
    position: relative;
}
.how-work::after{
    content: '';
    background: #e3e3e3;
    height: 250px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.how-work h3{
    text-align: center;
    margin-bottom: 35px;
    font-size: 36px;
}
.how-work .card1 {
    display: block;
    position: relative;
    /* max-width: 262px; */
    background-color: #fff;
    border-radius: 4px;
    padding: 32px 24px;
    margin: 0px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.how-work .card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -70px;
    left: 26%;
    background: #FFF2DB;
    height: 150px;
    width: 150px;
    border-radius: 120px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}
.how-work .card1:hover:before {
    transform: scale(10);
    transition: transform 0.50s ease-in;
}
/* .card1:hover p {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}
.card1:hover h3 {
    transition: all 0.3s ease-out;
    color: #ffffff;
} */
.how-work-card{
    text-align: center;
}
.how-work-card img{
    width: 65px;
    margin-bottom: 15px;
}
.how-work-card h4{
    font-size: 20px;
    margin-bottom: 12px;
    color: #F3780C;
}
.how-work-card p{
    color: #000;
    font-size: 15px;

}
/* end how-work */

/* your-trusted */
.your-trusted{
    padding-top: 0px;
    padding-bottom: 60px;
}
.your-trusted h3{
    font-size: 38px;
    margin-bottom: 6px;
    font-weight: 400;
    padding-left: 12px;
}
.your-trusted h3:nth-child(2){
    margin-bottom: 30px;
}
.your-trusted-card{
    background: #F2F2F2;
    padding: 20px 20px 20px 30px;
    border-radius: 12px;
}
.your-trusted .counter{
    background: #F8F6F5;
    margin-bottom: 25px;
    padding: 30px 25px 25px;
    border-radius: 12px;
    transition-duration: 0.3s;
}
.your-trusted .counter:hover{
    background: #434242;
}
.your-trusted .counter:hover h2,
.your-trusted .counter:hover h2 span,
.your-trusted .counter:hover p{
    color: #fff;
}
.your-trusted .count-title {
    font-size: 45px;
    font-weight: normal;
    /* margin-top: 10px; */
    margin-bottom: 15px;
	text-align: center;
	font-weight: 600;
    color: #000;
}
.your-trusted .stats-text {
    font-size: 15px;
    font-weight: normal;
    /* margin-top: 15px; */
    margin-bottom: 0;
    text-align: center;
	color: #000;
	text-transform: capitalize;
	font-weight: 400;
}
.your-trusted .stats-icon {
	font-size: 35px;
	margin: 0 auto;
    float: none;
    display: table;
    color: #fff;
}
.your-trusted .counter h2{
    margin-bottom: 15px;
}
.your-trusted-card-img{
    margin: 0 14px;
}
.your-trusted-card-img img{
    border-radius: 15px;
}
.your-trusted-card-txt{
    height: 100%;
    display: flex;
    align-items: center;
}
/* end your-trusted */

/* discover-sec */
.discover-sec{
    padding: 70px 0;
    /* background: #F4F4F4; */
    background-image: linear-gradient(to top, #EE913F 0%, #E37B20 100%);
}
.discover-sec-txt h3{
    font-size: 42px;
    margin-bottom: 0px;
    font-weight: 700;
    padding-left: 12px;
    color: #fff;
    text-align: center;
}
.discover-sec-txt p{
    text-align: right;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}
.discover-sec-card{
    border-radius: 12px;
    background: #fff;
    text-align: center;
    padding-bottom: 0px;
    margin-top: 35px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.discover-sec-card-txt{
    padding: 25px 30px;
}
.discover-sec-card .discover-sec-img{
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.discover-sec-card .discover-sec-img img{
    border-radius: 12px 12px 0 0;
    transform: scale(1);
    transition: all .4s linear;
}
.discover-sec-card:hover .discover-sec-img img{
    transform: scale(1.1);
}
.discover-sec-card h4{
    color: #F3780C;
    margin: 0px 0 10px;
    font-weight: 600;
    font-size: 22px;
}
.discover-sec-card p{
    font-size: 16px;
}
/* end discover-sec */

/* amenities-sec */
.amenities-sec{
    padding: 70px 0 50px;
    background-image: url(../img/bg/Connectivity.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.amenities-sec h3{
    font-size: 38px;
    margin-bottom: 5px;
    font-weight: 400;
    padding-left: 12px;
    text-align: center;
}
.amenities-sec-card{
    margin: 40px 30px 0px;
}
.amenities-sec-card:hover p{
    color: #F3780C;
}
.amenities-sec-card .amenities-sec-card-img{
    overflow: hidden;
    border-radius: 35px;
    height: 245px;
}
.amenities-sec-card .amenities-sec-card-img img{
    border-radius: 35px;
    transform: scale(1);
    transition: all .4s linear;
    object-fit: cover;
}
.amenities-sec-card:hover .amenities-sec-card-img img{
    transform: scale(1.1);
}
.amenities-sec-card p{
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}
.amenities-sec a{
    color: #000;
}
/* end amenities-sec */

/* clients-sec */
.clients-sec{
    background: url(../img/bg/client-bg.png) no-repeat;
    padding: 70px 50px 60px;
    margin-bottom: 20px;
        background-size: 100% 100%;
}
.clients-sec h3{
    font-size: 38px;
    margin-bottom: 0px;
    font-weight: 600;
    padding-left: 12px;
    text-align: center;
    color: #fff;
}
.clients-sec .owl-carousel{
    margin-top: 45px;
}
.clients-sec .owl-carousel .owl-item {
    transition: all 0.3s ease-in-out;
}
.clients-sec .owl-carousel .owl-item .card {
    padding: 25px;
    position: relative;
    border-radius: 15px;
}
.clients-sec .owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-bottom: 15px;
}
.clients-sec .owl-carousel .owl-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}
.clients-sec .owl-carousel .owl-item .testimonial h6{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: center;
}
.clients-sec .owl-carousel .owl-item .testimonial p{
    font-size: 15px;
    margin-bottom: 12px;
}
/*.clients-sec .owl-carousel .owl-item .testimonial span{*/
/*    color: #9F9F9F;*/
/*    font-size: 13px;*/
/*    font-style: italic;*/
/*}*/
.clients-sec .testimonial .star-icon {
    color: #ccc;
    font-size: 20px!important;
    vertical-align: middle;
    font-style: normal;
    line-height: 20px;
}
.clients-sec .testimonial .star-icon.filled {
    color: #F7A115!important;
}
.clients-sec .testimonial .reviews-text {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: normal;
    text-decoration: underline;
    margin-left: 5px;
    vertical-align: middle;
}
/* .clients-sec .owl-carousel .owl-item .card .name {
    position: absolute;
    bottom: -20px;
    left: 33%;
    color: #101c81;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: aquamarine;
    padding: 0.3rem 0.4rem;
    border-radius: 5px;
    box-shadow: 2px 3px 15px #3c405a;
} */
.clients-sec .owl-carousel .owl-item .card {
    /* opacity: 0.6; */
    /* transform: scale3d(0.9, 0.9, 0.9); */
    transition: all 0.3s ease-in-out;
    margin: 0 10px;
    text-align: center;
}
.clients-sec .owl-carousel .owl-item.active.center .card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    background: #fff;
}
.clients-sec .owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 0!important;
}
.clients-sec .owl-theme .owl-dots .owl-dot span {
    height: 20px;
    background: #2a6ba3 !important;
    border-radius: 2px !important;
    opacity: 0.8;
}
.clients-sec .owl-theme .owl-dots .owl-dot.active span,
.clients-sec .owl-theme .owl-dots .owl-dot:hover span {
    height: 13px;
    width: 13px;
    opacity: 1;
    transform: translateY(2px);
    background: #83b8e7 !important;
}
.clients-sec .owl-theme .owl-nav{
    margin-top: 25px;
}
.clients-sec .owl-theme .owl-nav [class*='owl-']{
    font-size: 34px;
    margin: 0px 15px;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    padding: 0;
    position: relative;
    background: #FFF;
}
.clients-sec .owl-theme .owl-nav [class*='owl-']:hover{
    background: #ff9800;
}
.clients-sec .owl-theme .owl-nav .owl-prev::after{
    content: '';
    background: url(../img/icon/arrow-left.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 12px;
    left: 14px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
}
.clients-sec .owl-theme .owl-nav .owl-next::before{
    content: '';
    background: url(../img/icon/arrow-right.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 12px;
    left: 14px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
}
/* @media(min-width: 480.6px) and (max-width: 575.5px) {
    .clients-sec .owl-carousel .owl-item .card .name {
        left: 24%;
    }
}
@media(max-width: 360px) {
    .clients-sec .owl-carousel .owl-item .card .name {
        left: 30%;
    }
} */
/* end clients-sec */

/* footer */
footer{
    background: #434242;
    padding: 70px 0 60px;
    position: relative;
    z-index: 0;
}
footer::after{
    content: '';
    background: url(../img/bg/footer-bg.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 900px;
    height: 325px;
    z-index: -1;
}
.footer-logo{
    padding-right: 50px;
}
.footer-logo .footer-logo-img{
    width: 175px;
    margin-bottom: 20px;
}
.footer-logo p{
    color: #fff;
}
.footer-social ul{
    display: flex;
    gap: 15px;
    padding-top: 30px;
}
.footer-social ul li{
    width: 45px;
}
.footer-link h4{
    color: #ffba50;
    font-size: 26px;
    margin-bottom: 30px;
}
.footer-link ul{
    display: grid;
    gap: 20px;
}
.footer-link ul li a{
    color: #fff;
    position: relative;
    width: fit-content;
}
.footer-link ul li a:hover{
    color: #fff;
}
.footer-contact h4{
    color: #ffba50;
    font-size: 26px;
    margin-bottom: 30px;
}
.footer-contact ul{
    display: grid;
    gap: 20px;
}
.footer-contact ul li a{
    display: inline-flex;
    color: #fff;
}
.footer-contact ul li a:hover{
    color: #ffba50;
}
.footer-contact ul li a img{
    width: 22px;
    margin-right: 10px;
}
.footer-social ul li:hover img{
    animation: shake 1200ms;
}
@keyframes shake {
  0% {
    transform: rotateZ(0);
  }
  10% {
    transform: rotateZ(-50deg);
  }
  20% {
    transform: rotateZ(25deg);
  }
  30% {
    transform: rotateZ(-16.6666666667deg);
  }
  40% {
    transform: rotateZ(12.5deg);
  }
  50% {
    transform: rotateZ(-10deg);
  }
  60% {
    transform: rotateZ(8.3333333333deg);
  }
  70% {
    transform: rotateZ(-7.1428571429deg);
  }
  80% {
    transform: rotateZ(6.25deg);
  }
  90% {
    transform: rotateZ(-5.5555555556deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
.copyright{
    background: #EE7C19;
    text-align: center;
    padding: 20px 0 15px;
}
.copyright p{
    color: #fff;
}
/* end footer */

/* common-banner */
.common-banner{
    padding-top: 25px;
    padding-bottom: 40px;
}
.common-banner-bg{
    position: relative;
    margin: 0 60px;
}
.common-banner-bg .common-banner-img img{
    border-radius: 30px;
}
.common-banner-txt{
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    background: #0000007d;
    border-radius: 30px;
}
.common-banner-txt h3{
    color: #fff;
    font-size: 42px;
    position: relative;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.common-banner-txt h3::after{
    content: '';
    height: 3px;
    background: #FFA601;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.common-banner-txt p{
    color: #fff;
    font-size: 18px;
    padding-top: 10px;
    font-family: "Montserrat", sans-serif;
}
/* end common-banner */

/* who-are */
.who-are{
    padding-top: 70px;
    padding-bottom: 50px;
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin-bottom: 40px;
}
.who-are::before{
    content: '';
    background-image: url('../img/icon/who-are-ico.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100px;
    height: 60px;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.who-are::after{
    content: '';
    background-image: url('../img/bg/about-bg1.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 225px;
    z-index: -1;
}
.who-are-img{
    margin: 0 30px;
}
.who-are .who-are-txt h6{
    background: #FDF1EC;
    color: #D77D53;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;
}
.who-are .who-are-txt h3{
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 46px;
}
.who-are .who-are-txt p{
    font-size: 18px;
    color: #707070;
}
.who-are .who-are-txt ul{
    display: grid;
    gap: 15px;
    margin: 30px 0 40px;
}
.who-are .who-are-txt ul li{
    color: #272727;
    font-size: 18px;
}
.who-are .who-are-txt ul li img{
    width: 24px;
    margin-right: 5px;
}
.who-are .who-are-txt .btns{
    background: #434242;
    color: #fff;
    padding: 15px 30px;
    border-radius: 0 15px 0 6px;
}
/* end who-are */

/* our-features */
.our-features{
    background: #F5F8F7;
    font-family: "Montserrat", sans-serif;
    padding: 70px 0;
}
.our-features .row{
    gap: 30px 0;
    margin-top: 30px;
}
.our-features .our-features-txt{
    text-align: center;
}
.our-features .our-features-txt h6{
    color: #D77D53;
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}
.our-features .our-features-txt h3{
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 5px;
}
.our-features-card{
    background: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #CDCDCD;
    border-radius: 15px;
}
.our-features-card .our-features-card-img{
    width: 60px;
    height: 60px;
    padding: 16px;
    border-radius: 12px;
    margin-right: 15px;
    box-shadow: rgba(99, 99, 99, 0.3) 0px 1px 6px 0px;
}
.our-features-card h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}
.our-features-card p{
    font-size: 15px;
}
/* end our-features */

/* our-mission */
.our-mission{
    padding: 70px 0;
}
.our-mission .our-mission-txt,
.our-vission .our-vission-txt{
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    height: 100%;
}
.our-mission .our-mission-txt h3,
.our-vission .our-vission-txt h3{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
.our-mission .our-mission-txt ul,
.our-vission .our-vission-txt ul{
    display: grid;
    gap: 14px 0;
    margin-top: 25px;
}
.our-mission .our-mission-txt ul li, 
.our-vission .our-vission-txt ul li{
    display: flex;
}
.our-mission .our-mission-txt ul li img,
.our-vission .our-vission-txt ul li img{
    width: 25px;
    margin-right: 5px;
}
.our-mission-img{
    position: relative;
}
.our-mission-img .our-mission-img1{
    width: 450px;
}
.our-mission-img .our-mission-img2{
    width: 250px;
    position: absolute;
    top: 22%;
    right: 20px;
    -webkit-animation: movers 1s infinite  alternate;
    animation: movers 2s infinite  alternate;
}
@-webkit-keyframes movers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}
.our-vission{
    padding-bottom: 100px;
}
.our-vission-img{
    position: relative;
}
.our-vission-img .our-vission-img1{
    width: 450px;
    position: absolute;
    right: 0;
    top: 0;
}
.our-vission-img .our-vission-img2{
    position: absolute;
    top: 140px;
    width: 260px;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
/* end our-mission */

/* our-promises */
/*.our-promises{*/
/*    padding-bottom: 60px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/
/*.our-promises::after{*/
/*    content: '';*/
/*    background-image: url('../img/icon/promises-icon.png');*/
/*    background-size: 100% 100%;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    top: 50px;*/
/*    right: -50px;*/
/*    width: 150px;*/
/*    height: 150px;*/
/*    z-index: -1;*/
/*    animation: movers 2s infinite alternate;*/
/*}*/
/*.our-promises h6{*/
/*    background: #FDF1EC;*/
/*    color: #D77D53;*/
/*    display: inline-block;*/
/*    padding: 5px 15px;*/
/*    margin-bottom: 10px;*/
/*}*/
/*.our-promises h3{*/
/*    font-size: 34px;*/
/*    font-weight: 600;*/
/*    margin-bottom: 6px;*/
/*}*/
/*.our-promises .row{*/
/*    margin-top: 30px;*/
/*}*/
/*.our-promises-txt{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    height: 100%;*/
/*}*/
/*.our-promises-txt .contain {*/
/*    background-color: #F5F8F7;*/
/*    color: black;*/
/*    border-radius: 10px;*/
    /* box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25); */
/*    margin: 0px 0 20px;*/
/*}*/
/*.our-promises-txt .question {*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    padding: 15px 60px 15px 15px;*/
/*    position: relative;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    cursor: pointer;*/
/*}*/
/*.our-promises-txt .question::after {*/
/*    content: "\002B";*/
/*    font-size: 22px;*/
/*    position: absolute;*/
/*    right: 20px;*/
/*    transition: 0.2s;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border-radius: 50px;*/
/*    color: #fff;*/
/*    background: #F57606;*/
/*    padding-top: 2px;*/
/*}*/
/*.our-promises-txt .question.active::after {*/
/*    transform: rotate(45deg);*/
/*}*/
/*.our-promises-txt .answercont {*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: 0.3s;*/
/*}*/
/*.our-promises-txt .answer {*/
/*    padding: 0 20px 20px;*/
/*    line-height: 1.5rem;*/
/*    font-size: 15px;*/
/*}*/
/* end our-promises */

/* airport-amenities-banner */
.airport-amenities-banner{
    padding-top: 25px;
    padding-bottom: 50px;
}
.airport-amenities-banner-img{
    position: relative;
    margin: 0 60px;
}
.airport-amenities-banner-img img{
    border-radius: 20px;
}
.airport-amenities-banner-img1{
    background-image: url('../img/bg/b.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
}
.airport-amenities-banner-img2{
    width: 85%;
    font-family: "Montserrat", sans-serif;
    text-align: right;
    position: absolute;
    right: 25px;
}
.airport-amenities-banner-img1 h3{
    color: #fff;
    font-size: 34px;
    margin-bottom: 5px;
}
.airport-amenities-banner-img1 h3 span{
    border-bottom: 2px solid #FFA601;
    padding-bottom: 8px;
}
.airport-amenities-banner-img1 p{
    color: #fff;
    line-height: 30px;
    margin-top: 25px;
}
/* end airport-amenities-banner */

/* comprehensive-sec */
.comprehensive-sec{
    font-family: "Montserrat", sans-serif;
    padding-bottom: 70px;
    padding-top: 10px;
}
.comprehensive-sec h3{
    font-size: 36px;
}
.comprehensive-card{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    /* height: 365px; */
    background: #fff;
}
.comprehensive-card .comprehensive-card-img{
    width: 55px;
    margin-bottom: 18px;
}
.comprehensive-card h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.comprehensive-card h6{
    margin-bottom: 8px;
    color: #e07111;
}
.comprehensive-card p{
    line-height: 26px;
    font-size: 15px;
}
.comprehensive-card .description {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.comprehensive-card .button {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #007bff;
    cursor: pointer;
}
/* end comprehensive-sec */

/* historical-background */
.historical-background{
    font-family: "Montserrat", sans-serif;
    padding-bottom: 50px;
}
.historical-background h3{
    font-size: 36px;
}
.historical-background-card{
    margin-top: 30px;
}
.historical-background-card h4{
    border-left: 5px solid #ED8122;
    padding-left: 6px;
    margin-bottom: 25px;
    font-size: 23px;
}
.historical-background-card h5{
    margin-bottom: 5px;
}
.historical-background-card p{
    color: #676767;
}
.historical-background-card-img{
    margin-bottom: 16px;
    height: 250px;
}
.historical-background-card-img img{
    object-fit: cover;
    border-radius: 15px;
}
/* end historical-background */

/* modern-facilities */
.modern-facilities{
    padding: 50px 0 70px;
    background: #F5F8F7;
}
.modern-facilities .row{
    padding-top: 70px;
}
.modern-facilities h3{
    font-size: 36px;
    text-align: center;
    margin-bottom: 8px;
}
.modern-facilities-card{
    border: 1px solid #CDCDCD;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    padding: 55px 30px 30px;
    text-align: center;
    height: 250px;
    background: #fff;
}
.modern-facilities-card-img{
    width: 65px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 15px;
    position: absolute;
    top: -35px;
    left: 42%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 5px;
}
.modern-facilities-card h5{
    color: #E2700C;
    margin-bottom: 10px;
    font-weight: 600;
}
.modern-facilities-card p{
    color: #787878;
    font-size: 15px;
    line-height: 26px;
}
/* end modern-facilities */

/* connectivity */
.connectivity{
    padding: 70px 0;
}
.connectivity-txt{
    padding: 35px 25px;
}
.connectivity-txt:nth-child(1){
    background-color: #F2FFFC;
    margin-bottom: 25px;
}
.connectivity-txt:nth-child(2){
    background-color: #FFF5EB;
}
.connectivity-txt h3{
    font-size: 22px;
    margin-bottom: 12px;
}
.connectivity-txt ul{
    display: grid;
    gap: 25px;
    list-style: disc;
    padding-left: 30px;
}
.connectivity-txt ul li{
    font-weight: 700;
    font-size: 18px;
}
.connectivity-sec{
    padding: 60px 0 60px;
    border: 5px solid #ee903d;
    margin-top: 20px;
}
.connectivity-sec h4{
    text-align: center;
    color: #F3780C;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 32px;
}
.connectivity-sec img{
    border-radius: 20px;
}
.connectivity-sec-txt{
    display: flex;
    align-items: center;
    height: 100%;
}
.connectivity-sec-txt ul{
    padding-left: 20px;
    display: grid;
    gap: 20px;
}
.connectivity-sec-txt ul li{
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.connectivity-sec-txt li img,
.connectivity-sec-txt1 li img{
    width: 23px;
    height: 23px;
    margin-right: 5px;
}
.connectivity-img{
    height: 100%;
    display: flex;
    align-items: center;
}
.connectivity-sec-txt1 ul{
    display: grid;
    gap: 20px;
    padding-top: 20px;
}
.connectivity-sec-txt1 ul li{
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: start;
}
/* end connectivity */

/* about-page-count */
.about-page-count{
    background: #F5F8F7;
    padding: 50px 0;
}
/* end about-page-count */

/* eael-dch-separator-wrap */
.eael-dch-separator-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.eael-dch-separator-wrap .separator-one, 
.eael-dch-separator-wrap .separator-two {
    display: inline-block;
}
.eael-dch-separator-wrap .separator-one {
    background-color: #FF8D28;
    margin-right: 2px;
    width: 5%;
    height: 5px;
    border-radius: 0px;
}
.eael-dch-separator-wrap .separator-two {
    background-color: #FF8D28;
    margin-left: 3px;
    width: 0.5%;
    height: 5px;
    border-radius:0px;
}
/* end eael-dch-separator-wrap */

/* our-director */
.our-director{
    padding: 50px 0 60px;
    font-family: "Montserrat", sans-serif;
    background: #eaf6ff;
}
.our-director-txt{
    display: flex;
    height: 100%;
    align-items: end;
}
.our-director-txt h6{
    background: #FDF1EC;
    color: #D77D53;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;
}
.our-director-txt h3{
    font-size: 26px;
    margin-bottom: 15px;
}
.our-director-txt p{
    color: #707070;
    margin-top: 8px;
}
.our-director-txt h4{
    color: #EA9E32;
    font-size: 20px;
    text-align: right;
    margin-top: 25px;
    font-weight: 600;
}
.our-director-txt h5{
    text-align: right;
    font-weight: 300;
    font-size: 18px;
    margin-top: 3px;
}
.our-director-img{
    height: 100%;
    margin: auto 80px;
    position: relative;
    overflow: hidden;
}
.our-director-img img{
    border: 1px solid #bfbfbf;
    border-radius: 25px;
}
.our-director-img .box{
    width: 500px;
    height: 500px;
    display: flex;
    justify-content:center;
    align-items:center;
    position: absolute;
    bottom: -100px;
    z-index: -1;
}
.our-director-img .box span{
    position: absolute;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius:50%;
    animation: animate 5s linear infinite;
    animation-delay: calc(-0.5s * var(--i));
}
.our-director-img .box:nth-child(2) span{
    border: none;
    background: #EA9E32;
}
@keyframes animate{
    0%{
        width: 0px;
        height: 0px;
    }
    50%{
        opacity: 1;
    }
    100%{
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}
/* end our-director */

/* client-booking-img */
.client-booking-img{
    padding: 20px 0 50px;
}
.client-booking-img .grid-wrapper > div {
	/* display: flex; */
	justify-content: center;
	align-items: center;
}
.client-booking-img .grid-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}
.client-booking-img .grid-wrapper {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.client-booking-img .grid-wrapper .wide {
	grid-column: span 2;
}
.client-booking-img .grid-wrapper .tall {
	grid-row: span 2;
}
.client-booking-img .grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}
.client-booking-txt p{
    font-size: 18px;
    margin-bottom: 8px;
}
/* end client-booking-img */

/* contact-sec */
.contact-sec{
    padding-top: 100px;
    padding-bottom: 50px;
    margin: 0 70px;
}
.contact-bg{
    position: relative;
}
.contact-bg{
    background-image: url(../img/bg/contact-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* position: absolute; */
    /* bottom: 0; */
    /* right: 0; */
    width: 100%;
    /* height: 500px; */
    padding: 50px;
    border-radius: 15px;
}
.contact-right{
    background: #fff;
    /* margin-top: 35px; */
    padding: 30px;
    border-radius: 12px;
}
.contact-right h4{
    font-size: 23px;
    margin-bottom: 8px;
}
.contact-right p{
    font-size: 15px;
}
.contact-right form{
    padding-top: 10px;
}
.contact-right .form-group{
    margin-top: 15px;
}
.contact-right .form-group .form-label{
    margin-bottom: 6px;
    text-transform: capitalize;
}
.contact-right .btn{
    background: #F37B13;
    border-radius: 4px;
    padding: 6px 30px;
    color: #fff;
    margin: 25px auto 0;
    display: block;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.contact-left{
    position: relative;
    display: block;
    height: 100%;
    margin-right: 100px;
    margin-top: 15px;
}
.contact-txt h3{
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-txt p{
    color: #ffff;
    font-weight: 300;
}
.contact-txt1{
    margin-bottom: 25px;
}
.contact-txt1 h6{
    color: #ffff;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px solid #FDD701;
    display: inline-block;
    margin-bottom: 8px;
    padding-bottom: 4px;
}
.contact-txt1 p{
    color: #ffff;
    font-weight: 300;
}
.contact-txt1 a{
    color: #ffff;
    font-weight: 300;
    display: block;
}
.contact-txt1-1{
    position: absolute;
    bottom: 0;
}
/* end contact-sec */

/* bottom to top */
#button {
    display: inline-block;
    background-color: #FF9800;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 200px;
    right: 22px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    line-height: 38px;
    color: #fff;
}
#button:hover {
    cursor: pointer;
    background-color: #333;
}
#button:active {
    background-color: #555;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
/* bottom to top */

/* sub-nav */
.sub-nav {
    padding: 12px 70px 14px 70px;
    background: #8b8b8b;
    position: relative;
    z-index: 11;
}
.sub-nav .sub-nav-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub-nav .sub-nav-left .sub-nav-left1 {
    display: flex;
}
.sub-nav .sub-nav-left .sub-nav-left1 ul {
    display: flex;
    margin-left: 0;
}
.sub-nav .sub-nav-left ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0;
    margin-left: 20px;
}
.sub-nav .sub-nav-left .sub-nav-left1 li:not(:last-child) {
    border-right: 3px solid #fff;
    padding-right: 8px;
    margin-right: 12px;
}
.sub-nav .sub-nav-left .sub-nav-left1 li {
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 12px;
    color: #fff;
    font-weight: 600;
}
.sub-nav .sub-nav-left .sub-nav-left1 li a {
    height: unset;
    width: unset;
    background: unset;
    line-height: 12px;
    margin-left: 4px;
    text-decoration: none;
}
.sub-nav .sub-nav-left .sub-nav-left1 a {
    font-size: 16px;
    color: #fff;
    line-height: 12px;
    text-decoration: none;
}
.sub-nav .sub-nav-left ul li a {
    margin-right: 8px;
    border-radius: 50%;
    padding: 0px;
    /* background: #000; */
    height: 22px;
    width: 22px;
    text-align: center;
    line-height: 20px;
    display: block;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}
.sub-nav .sub-nav-left ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0;
    margin-left: 20px;
}
.sub-nav .sub-nav-left ul li a {
    border-radius: 50%;
    padding: 0px;
    /* background: #000; */
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 20px;
    display: block;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}
.sub-nav .sub-nav-left ul li img {
    width: 35px;
    height: 35px;
}
.sub-nav .sub-nav-left .mob-hide li:hover{
    animation: shake 1200ms;
}
.sub-nav .sub-nav-left .mob-hide{
    gap: 12px;
}
.sub-nav .sub-nav-left .mob-hide a{
    margin-right: 0px;
}
/* end sub-nav */

/* atal-setu-sec */
.atal-setu-sec{
    font-family: "Montserrat", sans-serif;
    padding-bottom: 20px;
    padding-top: 10px;
}
.atal-setu-sec-txt h3{
    margin-bottom: 15px;
    line-height: 36px;
}
.atal-setu-sec-txt p{
    line-height: 28px;
}
.atal-setu-sec-img{
    margin: 0 20px;
}
.atal-setu-sec-txt ul{
    list-style: disc;
    padding-left: 20px;
    display: grid;
    gap: 15px;
}
.atal-setu-sec-txt ul li{
    font-size: 16px;
    line-height: 28px;
}
/* end atal-setu-sec */

/* connectivity-interchanges */
.connectivity-interchanges{
    font-family: "Montserrat", sans-serif;
    background: #F5F8F7;
    padding: 60px 0;
}
.connectivity-interchanges h3{
    font-size: 34px;
    margin-bottom: 15px;
    border-left: 5px solid #ED8122;
    padding-left: 6px;
}
.connectivity-interchanges .card{
    padding: 20px;
    position: relative;
    border-radius: 15px;
    margin: 15px 0px;
}
.connectivity-interchanges .card-txt h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.connectivity-interchanges .card-txt p {
    font-size: 15px;
    margin-bottom: 12px;
}
.connectivity-interchanges .img-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}
/* end connectivity-interchanges */

/* safety-features */
.safety-features{
    font-family: "Montserrat", sans-serif;
    padding: 50px 0 70px;
}
.safety-features h3{
    font-size: 34px;
    margin-bottom: 0px;
    border-left: 5px solid #ED8122;
    padding-left: 6px;
}
.safety-features-card {
    border-radius: 12px;
    background: #fff;
    text-align: center;
    padding-bottom: 0px;
    margin-top: 35px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.safety-features-card .safety-features-img {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.safety-features-card .safety-features-img img {
    border-radius: 12px 12px 0 0;
    transform: scale(1);
    transition: all .4s linear;
}
.safety-features-card:hover .safety-features-img img {
    transform: scale(1.1);
}
.safety-features-txt {
    padding: 25px 30px;
}
.safety-features-card h4 {
    color: #F3780C;
    margin: 0px 0 10px;
    font-weight: 600;
    font-size: 22px;
}
.safety-features-card p {
    font-size: 16px;
}
.safety-features h6{
    text-align: center;
    padding-top: 40px;
    line-height: 26px;
    font-size: 18px;
}
/* end safety-features */

/* future-prospects */
.future-prospects {
    padding: 50px 0 60px;
    background: #F5F8F7;
    font-family: "Montserrat", sans-serif;
}
.future-prospects h3{
    font-size: 32px;
    margin-bottom: 0px;
    border-left: 5px solid #ED8122;
    padding-left: 6px;
}
.future-prospects .row {
    padding-top: 6px;
}
.future-prospects-card {
    border: 1px solid #CDCDCD;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    padding: 55px 30px 30px;
    text-align: center;
    height: 250px;
    background: #fff;
}
.future-prospects-img {
    width: 65px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 15px;
    position: absolute;
    top: -35px;
    left: 42%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 5px;
}
.future-prospects-card h5 {
    color: #E2700C;
    margin-bottom: 10px;
    font-weight: 600;
}
.future-prospects-card h6{
    margin-bottom: 8px;
}
.future-prospects-card p {
    color: #787878;
    font-size: 15px;
    line-height: 26px;
}
.future-prospects .txt{
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
}
/* end future-prospects */

/* client-booking-img */
.client-booking-img .main .contain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}
.client-booking-img .main .card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333333;
    border-radius: 2px;
}
.client-booking-img .main .card-image {
    background: #ffffff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
}
.client-booking-img .main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 600px) {
    .client-booking-img .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}
/* end client-booking-img */

/* right-side-menu */
.right-side-menu{
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 1;
}
.right-side-menu ul{
    display: grid;
    gap: 6px;
}
.right-side-menu ul li img{
    width: 40px;
}
.right-side-menu ul li:hover{
    animation: shake 1200ms;
}
/* end right-side-menu */

/**/
.box {
  color:#fff;
  font-weight:bold;
  font-size:24px;
  padding: 0px 0px 24px 15px; 
}
.ivert-border {
    transform: rotate(180deg);
    height: 30px;
    min-height: 30px;
}
.wave{
  height: 100%;
  position: relative;
  background: #ff9800;
}
.wave::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 40px;
  background-image:
   radial-gradient(circle at 20px -15px, transparent 23px, #fff 24px);
}
.wave::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 23px;
  background-size: 80px 40px;
  background-image:
    radial-gradient(circle at 0px 45px, #fff 27px, transparent 5px);
}
/**/

.morecontent span {
    display: none;
}
.morelink {
    display: block;
    font-size: 14px;
}

/* plot-options-sec */
.plot-options-sec{
    padding: 60px 0 50px;
}
.plot-options-sec h3{
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    padding-left: 12px;
    text-align: center;
}
.plot-options{
    text-align: center;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
}
.plot-options:hover{
    transform: translateY(-10px);
}
.plot-options img{
    width: 85px;
}
.plot-options h4{
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
}
.plot-options:hover{
    
}
.connectivity-sec-img{
    border: 2px solid #8b8b8b;
}
.connectivity-sec-img{
    border: 1px solid #8b8b8b;
    /*height: 400px;*/
    padding: 20px;
    border-radius: 15px;
    margin-top: 0px;
}
.connectivity-sec-img img{
    object-fit: cover;
}
/* end plot-options-sec */

/* projects-pg-amenities */
.projects-pg-amenities{
    padding: 50px 0 50px;
}
.projects-pg-amenities h3{
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 600;
    padding-left: 12px;
    text-align: center;
}
.projects-pg-amenities p{
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.projects-pg-amenities-card{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    margin-top: 25px;
    
}
.projects-pg-amenities-card img{
    width: 110px;
    -webkit-transition: 1.5s;
    -webkit-transform-style: preserve-3d;
}
.projects-pg-amenities-card h4{
    text-align: center;
    font-size: 20px;
    margin-top: 12px;
}
.projects-pg-amenities-card:hover img{
    -webkit-transform: rotateY(180deg);
}
.projects-pg-amenities-card:hover h4{
    color: #F3780C;
}
/* end projects-pg-amenities */

/* projects-pg-map */
.projects-pg-map{
    padding: 45px 0 50px;
    border: 5px solid #ee903d;
    margin-top: 30px;
}
.projects-pg-map h3{
    text-align: center;
    color: #F3780C;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 32px;
}
.projects-pg-map-img{
    border: 1px solid #8b8b8b;
    /*height: 400px;*/
    padding: 20px;
    border-radius: 15px;
}
.projects-pg-map-img img{
    object-fit: cover;
}
.projects-pg-map-txt{}
.projects-pg-map-txt ul{
        display: grid;
    gap: 20px;
    padding-top: 20px;
}
.projects-pg-map-txt ul li{
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: start;
}
.projects-pg-map-txt ul li img{
    width: 23px;
    height: 23px;
    margin-right: 5px;
}
/* end projects-pg-map */

/* jnpt-port-sec */
.jnpt-port-sec{
    padding-top: 20px;
}
/*.jnpt-port-sec .connectivity-img{*/
/*    position: sticky;*/
/*    top: 100px;*/
/*    display: unset;*/
/*}*/
.jnpt-port-sec .connectivity-img img{
    border-radius: 15px;
}
/* end jnpt-port-sec */

/* jnpt-port-txt */
.jnpt-port-txt{
    text-align: center;
    padding-bottom: 50px;
}
.jnpt-port-txt h3{
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    color: #F3780C;
    font-weight: 700;
}
.jnpt-port-txt p{
    font-size: 18px;
    margin-bottom: 15px;
}
/* end jnpt-port-txt */

/* metro-sec */
.metro-sec{
    padding: 0 0 50px;
}
.metro-sec-txt ul{
    list-style: disc;
    padding: 15px 0 0 25px;
    display: grid;
    gap: 8px;
}
.metro-sec-txt p{
    font-size: 18px;
    line-height: 30px;
}
.metro-map{
    padding: 10px 0 50px;
}
.metro-map h3{
    text-align: center;
    color: #F3780C;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 32px;
}
.metro-map .metro-map-img{
    /*height: 415px;*/
    border: 1px solid #8b8b8b;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}
.metro-map .metro-map-img img{
    object-fit: cover;
    border-radius: 15px;
}
.metro-sec-img img{
    border-radius: 15px;
}
/* end metro-sec */

/* multimodal-corridor-sec */
.multimodal-corridor-sec{
    padding: 0 0 0px;
}
.multimodal-corridor-sec1{
    padding: 0 0 50px;
}
.multimodal-corridor-sec h3{
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    padding-left: 12px;
    text-align: center;
}
.multimodal-corridor-img{
    margin-bottom: 70px;
}
.multimodal-corridor-img img{
    border-radius: 15px;
}
.multimodal-corridor-txt p{
    margin-bottom:10px;
    font-size: 18px;
}
.multimodal-corridor-txt ul{
    display: grid;
    gap: 10px;
    list-style: disc;
    padding-left: 30px;
}
.multimodal-corridor-txt ul li{
    font-size: 17px;
}
/* end multimodal-corridor-sec */

/* multimodal-corridor-map */
.multimodal-corridor-map{
    padding:0 0 50px;
}
.multimodal-corridor-map h3{
    font-size: 30px;
    margin-bottom: 6px;
    font-weight: 600;
    padding-left: 12px;
    text-align: center;
}
.multimodal-corridor-map p{
    text-align: center;
    margin-bottom: 25px;
    font-size: 18px;
}
.multimodal-corridor-map-card{
    /*height: 275px;*/
    border: 1px solid #8b8b8b;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}
.multimodal-corridor-map-card img{
    object-fit: cover;
    border-radius: 15px;
}
/* end multimodal-corridor-map */

/* projects-pg-map1 */
.projects-pg-map1 h3{
    text-align: center;
    color: #F3780C;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 32px;
}
.projects-pg-map1{
    border: 5px solid #ee903d;
    margin-top: 30px;
    padding: 50px 0;
}
.projects-pg-map-txt1 h5{
    margin-bottom: 8px;
    margin-top: 10px;
}
.projects-pg-map-txt1 ul{
    list-style: disc;
    padding: 8px 0 15px 30px;
    display: grid;
    gap: 5px;
}
.projects-pg-map-img1{
    border: 1px solid #8b8b8b;
    padding: 20px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}
/* end projects-pg-map1 */

/* railway-map */
.railway-sec{
    padding: 30px 0;
}
.railway-map{
    padding: 30px 0 0;
}
.railway-map-img{
    border: 1px solid #8b8b8b;
    padding: 15px;
    border-radius: 15px;
}
.railway-map-img img{
    border-radius: 15px;
}
.railway-sec-txt h3{
    color: #F3780C;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 22px;
}
.railway-sec-txt ul{
    list-style: disc;
    padding: 5px 0 0 22px;
    display: grid;
    gap: 10px;
}
.railway-sec-txt{
    margin-bottom: 20px;
}
.railway-sec-img{
    position: sticky;
    top: 100px;
}
/* end railway-map */

/* developing-by */
.developing-by{
    padding: 60px 0 0;
}
.developing-by-txt h6{
    background: #FDF1EC;
    color: #D77D53;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 15px;
}
.developing-by-txt h3{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 26px;
}
.developing-by-txt h5{
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 24px;
}
.developing-by-txt p{
    line-height: 26px;
}
.developing-by-img{
    margin: 0 20px;
}
.developing-by-img img{
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    padding: 0;
}
.developing-by-img img:nth-child(1){
    margin-bottom: 15px;
    margin-top: 10px;
}
.developing-by-img img:nth-child(2){
    width: 390px;
    margin-right: 5px;
}
.developing-by-img img:nth-child(3){
    width: 195px;
}
/* end developing-by */

/* highway-sec */
.highway-sec{
    padding: 10px 0 40px;
}
.highway-sec-img{
    margin: 0 30px;
}
.highway-sec-txt{
    padding-left: 60px;
}
.highway-sec-txt h3{
    margin-bottom: 15px;
    line-height: 36px;
}
.highway-sec-txt p{
    line-height: 30px;
}
/* end highway-sec */

/* highway-sec1 */
.highway-sec1{
    padding: 10px 0 40px;
}
.highway-sec-img1{
    margin: 0 0px;
}
.highway-sec-txt1{
    padding-left: 40px;
}
.highway-sec-txt1 h3{
    margin-bottom: 8px;
    color: #F3780C;
    font-weight: 700;
}
.highway-sec-txt1 h4{
    font-size: 20px;
    padding: 15px 0 10px;
    font-weight: 600;
}
.highway-sec-txt1 ul{
    display: grid;
    gap: 10px;
    list-style: disc;
    padding: 0 0 0 20px;
}
/* end highway-sec */

/* highway-sec2 */
.highway-sec2{
    padding:0 0 40px;
}
.highway-sec2-card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    padding: 25px;
    /*margin-top: 30px;*/
    /* height: 365px; */
    background: #fff;
}
.highway-sec2-card .description {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.highway-sec2-card .highway-sec2-card-img {
    width: 55px;
    margin-bottom: 18px;
}
.highway-sec2-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.highway-sec2-card p {
    line-height: 26px;
    font-size: 15px;
}
.highway-sec2-card .button {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #007bff;
    cursor: pointer;
}
/* end highway-sec2 */

/* highway-sec3 */
.highway-sec3{
    padding: 10px 0 30px;
}
.highway-sec3 h3{
    font-size: 30px;
    margin-bottom: 6px;
    font-weight: 600;
    padding-left: 12px;
    text-align: center;
}
.highway-sec3 p{
    text-align: center;
    margin-bottom: 25px;
    font-size: 18px;
}
.highway-sec3-map{
    border: 1px solid #8b8b8b;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}
.highway-sec3-map img{
    object-fit: cover;
    border-radius: 15px;
}
/* end highway-sec3 */