@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
html {scroll-behavior: smooth;}
body{font-family:"Inter",serif!important;font-size:15px;margin: 0;padding: 0;overflow-x: hidden;}
.container{width:1620px;margin:0 auto;max-width:100%;position:relative}
.container-fluid{margin:0 auto;max-width:100%;position:relative;padding: 0 4%}
:root{
	--orange:#F37021;
	--white:#fff;
	--black:#000;
	--text:#636363;
}
::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }
* {box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}
.animate-on-scroll {
    opacity: 0;
}
.w-full {width: 100%;}
.h-screen {height: 100vh;}

.animate-on-scroll.animated {
    opacity: 1;animation-delay:.6s;
}
.submit-btn {
    transition: all .3s ease;
}
 
.submit-btn:disabled {
    background: #939393 !important;
    border-color: #939393 !important;
    color: #777 !important;
    cursor: not-allowed;
    opacity: .6;
}
 
.submit-btn:disabled img {
    opacity: .5;
}

/* Animation*/
.reveal-up {
    opacity: 0;
    transform: translateY(80px) scale(.96);
    filter: blur(8px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,1,.36,1),
        filter 0.9s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Optional delay classes */
.delay-1 {transition-delay: 0.15s;}
.delay-2 {transition-delay: 0.3s;}
.delay-3 {transition-delay: 0.45s;}

h1,h2,h3,h4,h5,h6{font-family:"Inter",serif!important}
.mb-10{margin-bottom:10px!important}
.mb-20{margin-bottom:20px!important}
.mb-30{margin-bottom:30px!important}
.mb-40{margin-bottom:40px!important}
.mb-50{margin-bottom:50px!important}

.mt-10{margin-top:10px!important}
.mt-20{margin-top:20px!important}
.mt-30{margin-top:30px!important}
.mt-40{margin-top:40px!important}
.mt-50{margin-top:50px!important}

.my-10{margin:10px 0!important}
.my-20{margin:20px 0!important}
.my-30{margin:30px 0!important}
.my-40{margin:40px 0!important}
.my-50{margin:50px 0!important}

.mx-10{margin:0 10px!important}
.mx-20{margin:0 20px!important}
.mx-30{margin:0 30px!important}
.mx-40{margin:0 40px!important}
.mx-50{margin:0 50px!important}

.py-10{padding:10px 0!important}
.py-20{padding:20px 0!important}
.py-30{padding:30px 0!important}
.py-40{padding:40px 0!important}
.py-50{padding:50px 0!important}

.pt-10{padding-top:10px!important}
.pt-20{padding-top:20px!important}
.pt-30{padding-top:30px!important}
.pt-40{padding-top:40px!important}
.pt-50{padding-top:50px!important}

.pb-10{padding-bottom:10px!important}
.pb-20{padding-bottom:20px!important}
.pb-30{padding-bottom:30px!important}
.pb-40{padding-bottom:40px!important}
.pb-50{padding-bottom:50px!important}

.btn-white-icon {display: flex;gap: 12px;color: var(--orange);background: var(--white);text-decoration: none;padding: 10px 18px;border-radius: 12px;font-weight: 600;align-items: center;transition: .5s;}
.btn-white-icon img {}

.filter-white{filter:brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(7496%) hue-rotate(1deg) brightness(127%) contrast(106%)!important}
.filter-orange {filter: brightness(0) saturate(100%) invert(49%) sepia(32%) saturate(1840%) hue-rotate(346deg) brightness(98%) contrast(94%);}

.header-container {position: fixed;width: 100%;z-index: 999;}
.header-container.scrolled {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	
	box-shadow: 0 10px 30px rgba(171, 165, 165, 0.15);
	animation: slideDown .4s cubic-bezier(.22,1,.36,1) forwards;
}
/* Hide animation */
.header-container.slide-up{
    animation:slideUp .4s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes slideDown{
    from{
        transform:translateY(-100%);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

@keyframes slideUp{
    from{
        transform:translateY(0);
        opacity:1;
    }
    to{
        transform:translateY(-100%);
        opacity:0;
    }
}
.header-container .header {display: flex;align-items: center;justify-content: space-between;padding: 15px 0;}
.header-container .header .logo {}
.header-container .header .logo a {}
.header-container .header .logo a img {}
.header-container .header .header-right {display: flex;align-items: center;gap: 40px;}
.header-container .header .header-right nav {}
.header-container .header .header-right nav .menu {}
.header-container .header .header-right nav .menu ul {margin: 0;padding: 0;list-style: none;display: flex;gap: 25px;}
.header-container .header .header-right nav .menu ul li {}
.header-container .header .header-right nav .menu ul li a {color: var(--white);text-decoration: none;font-size: 16px;padding: 40px 0;transition: .5s;}
.header-container .header .header-right nav .menu ul li a.active, .header-container .header .header-right nav .menu ul li a:hover, .header-container .header .header-right nav .menu .has-submenu:hover > a {color: var(--orange);transition: .5s;}
.header-container .header .header-right nav .menu .has-submenu {background: url("../images/icon-arrow.svg") no-repeat center right;padding-right: 13px;position: relative;}
.header-container .header .header-right nav .menu .has-submenu:hover ul {display: block;position: absolute;background: var(--white);width: 250px;top: 40px;z-index: 999;}
.header-container .header .header-right nav .menu .has-submenu ul {display: none;}
.header-container .header .header-right nav .menu .has-submenu ul li {}
.header-container .header .header-right nav .menu .has-submenu ul li a {display: block;color: var(--black);font-size: 15px;padding: 10px;}
.header-container .header .header-right nav .menu .has-submenu ul li a:hover {background:var(--orange);color:var(--white) !important}
.header-container .header .header-right .header-button {}
.header-container .header .header-right .header-button a {}
.header-container.scrolled nav .menu ul li a {color: var(--black) !important;}
.header-container.scrolled nav .menu ul li a.active, .header-container .header .header-right nav .menu ul li a:hover, .header-container .header .header-right nav .menu .has-submenu:hover > a {color: var(--orange) !important;}
.header-container.scrolled nav .menu .has-submenu ul li a {color: var(--white);}
.header-container.scrolled nav .menu .has-submenu ul li a:hover {background:var(--orange);color:var(--white) !important}
.header-container.scrolled  nav .menu .has-submenu {background: url("../images/icon-arrow-black.svg") no-repeat center right !important;}
.header-container.scrolled .btn-white-icon, .btn-white-icon:hover {color: var(--white);background: var(--orange);transition: .5s;}
.header-container.scrolled .btn-white-icon img, .btn-white-icon:hover img {filter:brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(7496%) hue-rotate(1deg) brightness(127%) contrast(106%)!important;}

.banner-container {background: url("../images/hero-banner.jpg") no-repeat center center / cover;height: 100vh;position: relative;}
.banner-container .caption {position: absolute;right: 4%;bottom: 4%;}
.banner-container .caption .sub-heading {font-size: 28px;color: var(--white);}
.banner-container .caption h1 {font-size: 70px;color: var(--white);margin-top: 30px;}

.sec-orange-container {margin-top: 220px;}
.sec-orange-container .sec-orange {background: var(--orange);display: grid;align-items: center;grid-gap: 60px;grid-template-columns: 41% 55%;justify-content: space-between;}
.sec-orange-container .sec-orange .thumb {margin-top: -150px;position: relative;padding-bottom: 100px;}
.sec-orange-container .sec-orange .thumb img {display: block;width: 100%;}
.sec-orange-container .sec-orange .text {padding-right: 15%;}
.sec-orange-container .sec-orange .text h2 {font-size: 60px;color: var(--white);margin-bottom: 30px;}
.sec-orange-container .sec-orange .text p {font-size: 18px;color: var(--white);line-height: 32px;font-weight: 300;}
.sec-orange-container .sec-orange .text ul {list-style: none;padding: 0;margin: 0;display: flex;flex-wrap: wrap;}
.sec-orange-container .sec-orange .text ul li {font-size: 18px;color: var(--white);line-height: 32px;font-weight: 300;position: relative;padding-left: 25px;width: 48%;}
.sec-orange-container .sec-orange .text ul li::before {content: "";background: url(../images/icon-check-white.svg) no-repeat center center;height: 17px;width: 17px;position: absolute;left: 0;top: 6px;}
.sec-orange-container .sec-orange .text .button {margin-top: 40px;}
.sec-orange-container .sec-orange .text .button a {display: inline-flex;gap: 12px;color: var(--orange);background: var(--white);text-decoration: none;padding: 16px 26px;border-radius: 12px;font-weight: 600;align-items: center;font-size: 16px;transition: .5s;}
.sec-orange-container .sec-orange .text .button a:hover {transition: .5s;background:var(--black)}
.sec-orange-container .sec-orange .text .button a img {}

.section {padding: 80px 0;}
.section .heading {text-align: center;}
.section .heading .sub-heading {}
.section .heading .sub-heading img {}
.section .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;}
.section .heading h3 {font-size: 40px;font-weight: 700;margin-top: 30px;margin-bottom: 0;
}
.section .heading p {font-size: 18px;color: var(--text);padding: 0 20%;line-height: 32px;}

.gradient-border {border: 1px solid transparent;background:linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #F37021 0%, #8C8A8A 100%) border-box;}
.sec-why-container {}
.sec-why-container .sec-why {}
.sec-why-container .sec-why .sec-why-row {display: grid;grid-template-columns: 24% 24% 24% 24%;justify-content: space-between;margin-top: 50px;}
.sec-why-container .sec-why .sec-why-row .sec-why-col {border-radius: 20px;text-align: center;padding: 20px 30px;position: relative;}
.sec-why-container .sec-why .sec-why-row .sec-why-col .watermark {position: absolute;bottom: 0;right: 0;}
.sec-why-container .sec-why .sec-why-row .sec-why-col .icon {height: 100px;width: 100px;background: #FFD7BF;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 20px auto;border: var(--orange) 7px solid;}
.sec-why-container .sec-why .sec-why-row .sec-why-col .icon img {}
.sec-why-container .sec-why .sec-why-row .sec-why-col .content {}
.sec-why-container .sec-why .sec-why-row .sec-why-col .content h3 {font-size: 20px;font-weight: 600;line-height: 28px;}
.sec-why-container .sec-why .sec-why-row .sec-why-col .content p {font-size: 15px;line-height: 26px;color: var(--text);}

.our-services-container {padding: 80px 0;position: relative}
.our-services-container::before {content: "";background: var(--orange);width: 100%;height: 687px;display: inline-block;position: absolute;top: 0;}
.our-services-container .our-services {}
.our-services-container .our-services .heading {text-align: center;}
.our-services-container .our-services .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;color: var(--white);margin-bottom: 30px;}
.our-services-container .our-services .heading p {font-size: 18px;color: var(--white);padding: 0 22%;line-height: 32px;}
.our-services-container .our-services .our-services-row {display:flex;gap:30px;flex-wrap:wrap;justify-content: center;margin-top: 50px;}
.our-services-container .our-services .our-services-row .our-serivces-col { width:20%;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card {position:relative;height:420px;overflow:hidden;border-radius:22px;}

.our-services-container .our-services .our-services-row .our-serivces-col .service-card img {width:100%;height:100%;object-fit:cover;transition:.5s;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover img {transform:scale(1.08);}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card .overlay {position:absolute;inset:0;background:linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.2), rgba(0,0,0,.15));transition:.45s ease;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content {position:absolute;left:25px;right:25px;bottom: -120px;color:#fff;transition:.45s ease;min-height: 270px;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover .service-content {bottom:45px;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content .service-icon {width:55px;height:55px;border-radius:50%;background:#ff8a00;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:20px;transform:translateY(25px);opacity:0;transition:.45s ease;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover .service-content .service-icon {opacity:1;transform:translateY(0);}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content .service-icon img {object-fit: none;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content h3 {margin:0;font-size:22px;font-weight:700;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content p {margin-top:18px;line-height:1.7;opacity:0;transform:translateY(25px);transition:.45s ease;}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover .service-content p {opacity:1;transform:translateY(0);}
.our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover .overlay {position:absolute;inset:0;background:linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.55), rgba(0,0,0,.15));transition:.45s ease;}

.charter-showcase-container {background: url("../images/bg1.jpg") no-repeat center center / cover;}
.charter-showcase-container .charter-showcase {}
.charter-showcase-container .charter-showcase h2 {font-size: 60px;font-weight: 800;margin-top: 30px;color: var(--black);}
.charter-showcase-container .charter-showcase .charter-showcase-row {display: grid;grid-template-columns: 64% 34.5%;justify-content: space-between;grid-gap: 30px;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col {}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box {position: relative;border-radius: 22px;margin-bottom: 20px;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .overlay {position:absolute;inset:0;background:linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.2), rgba(0,0,0,.15));transition:.45s ease;border-radius: 22px;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box img {width: 100%;display: block;border-radius: 22px;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .content {position: absolute;bottom: 0;z-index: 99;width: 100%;padding: 35px;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .content h3 {font-size: 22px;color: var(--white);font-weight: 600;margin-bottom: 0;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .content p {color: var(--white);font-size: 15px;line-height: 24px;font-weight: 300;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .button {}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .button a {background: var(--orange);color: var(--white);padding: 30px;text-decoration: none;display: flex;align-items: center;justify-content: center;gap: 15px;font-size: 18px;border-radius: 22px;transition:.5s;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .button a:hover {background: var(--black);transition:.5s;}
.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .button a img {}

.steps-container {background: url("../images/bg2.png") no-repeat center center / cover;}
.steps-container .steps {}
.steps-container .steps .heading {text-align: center;}
.steps-container .steps .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;margin-bottom: 30px;}
.steps-container .steps .heading p {font-size: 18px;color: var(--text);padding: 0 20%;line-height: 32px;}
.steps-container .steps .steps-row {display: grid;grid-template-columns: 19% 19% 19% 19% 19%;justify-content: space-between;margin-top: 50px;}
.steps-container .steps .steps-row .steps-col {border-radius: 30px;text-align: center;padding: 20px 20px;position: relative;}
.steps-container .steps .steps-row .steps-col .icon {height: 70px;width: 70px;background: var(--orange);border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 20px auto;}
.steps-container .steps .steps-row .steps-col .icon img {}
.steps-container .steps .steps-row .steps-col .content {}
.steps-container .steps .steps-row .steps-col .content h3 {font-size: 20px;font-weight: 600;line-height: 28px;}
.steps-container .steps .steps-row .steps-col .content p {font-size: 15px;line-height: 26px;color: var(--text);}
.every-journey-container .every-journey .every-journey-row .every-journey-col .content ul {margin: 0;padding: 0;list-style: none;}
.every-journey-container .every-journey .every-journey-row .every-journey-col .content ul li {font-size: 15px;line-height: 26px;color: var(--text);text-align: left;position: relative;padding-left: 27px;}
.every-journey-container .every-journey .every-journey-row .every-journey-col .content ul li::before {content: "";background: url(../images/icon-check.svg) no-repeat center center;height: 18px;width: 18px;position: absolute;left: 0;top: 5px;}
.steps-row-flexible {display: flex !important;gap: 20px;justify-content: center !important;}
.steps-row-flexible .every-journey-col {width: 22%;}

.sec-trust-container {}
.sec-trust-container .sec-trust {}
.sec-trust-container .sec-trust .heading {}
.sec-trust-container .sec-trust .heading h2 {}
.sec-trust-container .sec-trust .heading h2 span {color:var(--orange)}
.sec-trust-container .sec-trust .sec-trust-row {display: grid;grid-template-columns: 25% 25% 25% 25%;justify-content: space-between;margin: 70px 0 0;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col {display: flex;flex-direction: column;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top {border-bottom: #D9D9D9 1px solid;padding: 24px 30px;border-right: #D9D9D9 1px solid;height: 200px;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top .icon {}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top .icon img {}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top h3 {font-size: 20px;line-height: 28px;font-weight: 600;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .bottom {padding: 24px 30px;height: 200px;border-right: #D9D9D9 1px solid;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .bottom p {font-size: 15px;line-height: 24px;color: var(--text);}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .top {order:2;border-bottom:0;display: flex;flex-direction: column;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .top .icon {order:2}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .top h3 {order:1}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .bottom {order:1;border-bottom: #D9D9D9 1px solid;}
.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:last-child .top, .sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:last-child .bottom {border-right:0}

.testimonial {}
.testimonial .thumb {order: 2;}
.testimonial .text {order: 1;padding-left: 15%;padding-right: 0 !important;}
.testimonial .client-words-row {}
.testimonial .client-words-row .clients-words-col {}
.testimonial .client-words-row .clients-words-col .quote {}
.testimonial .client-words-row .clients-words-col .quote img {height: 48px;width: 60px;}
.testimonial .client-words-row .clients-words-col p {}
.testimonial .client-words-row .clients-words-col .author {font-size: 18px;color: var(--white);margin-top: 30px;font-weight: 600;}
.testimonial .sec-orange {grid-template-columns: 55% 41%;}
.testimonial .owl-dots {margin-top: 20px;}
.testimonial .owl-dots .owl-dot {margin-right: 4px;}
.testimonial .owl-dots .owl-dot.active {}
.testimonial .owl-dots .owl-dot.active span {background: #ffffff;}
.testimonial .owl-dots .owl-dot span {background: #FFB588;height: 12px;width: 12px;display: inline-block;border-radius: 50%;}

.sec-form-container {padding: 80px 0;}
.sec-form-container .sec-form {}
.sec-form-container .sec-form .sec-form-row {display: grid;grid-template-columns: 51% 47%;justify-content: space-between;margin-top: 40px;}
.sec-form-container .sec-form .sec-form-row .sec-form-left {}
.sec-form-container .sec-form .heading {}
.sec-form-container .sec-form .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;margin-bottom: 30px;}
.sec-form-container .sec-form .heading p {font-size: 18px;color: var(--text);line-height: 32px;}
.sec-form-container .sec-form .thumb {}
.sec-form-container .sec-form .thumb img {border-radius: 30px;width: 100%;}
.sec-form-container .sec-form .sec-form-row .sec-form-right {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper {box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);border: #ededed 1px solid;border-radius: 30px;padding: 35px;position: relative;background: #fff;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .img-trail {position: absolute;top: -70%;z-index: -1;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .header {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .header h3 {font-size: 30px;text-align: center;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row {margin: 10px 0;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group {position: relative;width: 100%;overflow: hidden;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .checkbox-group {display: flex;align-items: center;gap: 10px;margin: 14px 0 22px;flex-wrap: wrap;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .checkbox-group a {color:var(--orange);text-decoration: none}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .checkbox-group input[type="checkbox"] {height: 20px;width: 20px;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group input, .sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group textarea {width: 100%;height: 70px;padding: 22px 16px 8px;color: #222;border: 1px solid #e5e5e5;border-radius: 10px;outline: none;background: #fff;transition: .3s;font-family: "Inter",serif;font-size: 16px;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group textarea {height: 125px;padding-top: 30px;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group label {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-full {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-button {margin-top: 15px;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-button button {background: #F37021;border: 0;width: 100%;height: 70px;border-radius: 12px;display: flex;align-items: center;justify-content: center;gap: 12px;cursor: pointer;transition:.5s;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-button button:hover {transition:.5s;background:var(--black)}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-button button span {font-size: 16px;font-family: "Inter",serif;font-weight: 600;color: var(--white);}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-button button img {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info {display: flex;gap: 8px;align-items: center;justify-content: center;margin-top: 18px;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info .icon {}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info .icon img {display: block;}
.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info p {font-size: 16px;color: var(--text);margin: 0;padding: 0;}


.input-group{position:relative;width:100%;}
.input-group input, .input-group textarea {width:100%;height:70px;padding:22px 16px 8px;font-size:18px;color:#222;border:1px solid #e5e5e5;border-radius:10px;outline:none;background:#fff;transition:.3s;}
.input-group input:focus, .input-group textarea:focus{border-color:#F37021;box-shadow:0 0 0 3px rgba(243,112,33,.12);}
.input-group label{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:#9a9a9a;font-size:17px;pointer-events:none;padding:0 4px;transition:all .25s ease;}
.textarea-group label{position:absolute;left:16px;top:22%;transform:translateY(-50%);color:#9a9a9a;font-size:17px;pointer-events:none;padding:0 4px;transition:all .25s ease;}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label{top:10px;transform:translateY(0);font-size:12px;color:#999;}

.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label{top:10px;transform:translateY(0);font-size:12px;color:#999;}

.input-group input::placeholder, .input-group textarea::placeholder{color:transparent;}

.blogs-container {background: #FAFAFA;padding: 80px 0}
.blogs-container .blogs {}
.blogs-container .blogs .heading {display: flex;align-items: center;justify-content: space-between;}
.blogs-container .blogs .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;margin-bottom: 30px;}
.blogs-container .blogs .heading .btn {background: var(--orange);color: var(--white);text-decoration: none; padding: 14px 40px;font-size: 16px;border-radius: 12px;transition:.5s;}
.blogs-container .blogs .heading .btn:hover {background:var(--black);transition:.5s;}
.blogs-container .blogs .blogs-row {display: grid;grid-gap: 30px;grid-template-columns: 23.5% 23.5% 23.5% 23.5%;margin-top: 15px;justify-content: space-between;}
.blogs-container .blogs .blogs-row .blogs-col {position: relative;border-radius: 22px;overflow: hidden;}
.blogs-container .blogs .blogs-row .blogs-col img {width: 100%;height: 100%;object-fit: cover;transition: .5s;border-radius: 22px;}
.blogs-container .blogs .blogs-row .blogs-col:hover img {transform: scale(1.08);}
.blogs-container .blogs .blogs-row .blogs-col .overlay {position: absolute;inset: 0;background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.2), rgba(0,0,0,.15));transition: .45s ease;z-index: 10;}
.blogs-container .blogs .blogs-row .blogs-col .content {position: absolute;z-index: 999;left: 0;width: 100%;bottom: 10px;padding: 30px;}
.blogs-container .blogs .blogs-row .blogs-col .content h3 {color: var(--white);font-size: 17px;line-height: 28px;font-weight: 600;}
.blogs-container .blogs .blogs-row .blogs-col .content .date {color: var(--white);font-weight: 300;}

.news-container {}
.news-container .news {}
.news-container .news .heading {}
.news-container .news .heading h2 {}
.news-container .news .news-row {display: grid;grid-gap: 30px;grid-template-columns: 23.5% 23.5% 23.5% 23.5%;margin-top: 15px;justify-content: space-between;}
.news-container .news .news-row .news-col {border-radius: 22px;border: #C2C2C2 1px solid;border-bottom-width: 8px;}
.news-container .news .news-row .news-col .thumb {position: relative;border-radius: 22px 22px 0 0;overflow: hidden}
.news-container .news .news-row .news-col .thumb .date {position: absolute;background: #fff;padding: 8px 20px;border-radius: 50px;right: 18px;top: 18px;}
.news-container .news .news-row .news-col .thumb img {border-radius: 22px 22px 0 0;width: 100%;transition: .5s;display: block;height: 250px;object-fit: cover;}
.news-container .news .news-row .news-col:hover .thumb img {transform: scale(1.08);}
.news-container .news .news-row .news-col .content {padding: 25px;}
.news-container .news .news-row .news-col .content h3 {font-size: 18px;line-height: 26px;margin-top: 0;margin-bottom: 0;}
.news-container .news .news-row .news-col .content p {font-size: 15px;line-height: 24px;color: var(--text);}
.news-container .news .news-row .news-more-col {border: var(--orange) 1px solid;background: var(--orange);display: flex;justify-content: center;align-items: center;}
.news-container .news .news-row .news-more-col:hover .icon {transform: rotate(-45deg);transition: .5s;}
.news-container .news .news-row .news-more-col .news-more {text-align: center;}
.news-container .news .news-row .news-more-col .news-more p {font-size: 22px;line-height: 30px;color: var(--white);margin-top: 14px;}
.news-container .news .news-row .news-more-col .news-more p a {color:var(--white);text-decoration: none}
.news-container .news .news-row .news-more-col .news-more .icon {height: 70px;width: 70px;background: #fff;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 0 auto;transition: .5s;}
.news-container .news .news-row .news-more-col .news-more .icon img {}

.newsletter-container {background: url("../images/bg3.png") no-repeat center center / cover;}
.newsletter-container .newsletter {}
.newsletter-container .newsletter .newsletter-row {display: grid;grid-gap: 30px;grid-template-columns: 23.5% 23.5% 23.5% 23.5%;margin-top: 15px;justify-content: space-between;}
.newsletter-container .newsletter .newsletter-row .newsletter-col {position: relative;border-radius: 22px;overflow: hidden;}
.newsletter-container .newsletter .newsletter-row .newsletter-col img {width: 100%;height: 100%;object-fit: cover;transition: .5s;border-radius: 22px;}
.newsletter-container .newsletter .newsletter-row .newsletter-col:hover img {transform: scale(1.08);}
.newsletter-container .newsletter .newsletter-row .newsletter-col .overlay {position: absolute;inset: 0;background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.2), rgba(0,0,0,.15));transition: .45s ease;z-index: 10;}
.newsletter-container .newsletter .newsletter-row .newsletter-col .content {position: absolute;z-index: 999;left: 0;width: 100%;bottom: 0;padding: 30px;}
.newsletter-container .newsletter .newsletter-row .newsletter-col .content h3 {color: var(--white);font-size: 17px;line-height: 28px;font-weight: 600;text-align: center;}
.newsletter-container .newsletter .newsletterinput-row {}
.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col {}
.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col form .flex {display: flex;justify-content: center;align-items: center;}
.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col .form-response {text-align: center;padding: 12px;}

.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col input[type="email"] {padding: 15px 22px;font-size: 16px;font-family: "Inter",seri;border-radius: 12px 0 0 12px;border: #c9c9c9 1px solid;height: 70px;width: 500px;}
.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col input[type="submit"] {padding: 15px 30px;height: 70px;background: var(--orange);font-size: 16px;font-family: "Inter",serif;border: 0;color: #fff;border-radius: 0 12px 12px 0;cursor: pointer;}

.faq-container {}
.faq-container .faqs {}
.faq-container .faqs .heading {}
.faq-container .faqs .heading h2 {}
.faq-container .faqs .faqs-row {padding: 0 10%;}
.faq-container .faqs .faqs-row .faq-item {padding: 24px 30px;margin-bottom: 10px;cursor: pointer;position: relative;transition: all .3s ease;}
.faq-container .faqs .faqs-row .faq-item.active {background: #fafafa;border: 1px solid #d4d4d4;border-radius: 20px;}
.faq-container .faqs .faqs-row .faq-item h3 {margin: 0;padding-right: 40px;position: relative;font-size: 20px;font-weight: 600;}
.faq-container .faqs .faqs-row .faq-item h3::after {content: "+";position: absolute;right: 0;top: 50%;transform: translateY(-50%);font-size: 28px;font-weight: 600;line-height: 1;}
.faq-container .faqs .faqs-row .faq-item.active h3::after {content: "−";}
.faq-container .faqs .faqs-row .faq-item p {max-height: 0;overflow: hidden;margin: 0;transition: max-height .4s ease, margin-top .4s ease;font-size: 15px;line-height: 26px;}
.faq-container .faqs .faqs-row .faq-item.active p {max-height: 300px;margin-top: 15px;color: var(--text);}

.about-airayodhya {}
.about-airayodhya .airayodhya {}
.about-airayodhya .airayodhya img {width: 100%;}

.footer-container {background: #2B2E32;margin-top: 50px;}
.footer-container .footer {padding: 44px 0;}
.footer-container .footer .footer-row {display: grid;grid-template-columns: 30% 20% 20% 20%;justify-content: space-between;}
.footer-container .footer .footer-row .footer-col {}
.footer-container .footer .footer-row .footer-col h3 {font-size: 18px;color: var(--white);font-weight: 600;}
.footer-container .footer .footer-row .footer-col p {font-size: 15px;color: #DEDEDE;line-height: 27px;}
.footer-container .footer .footer-row .footer-col .social-icons {margin-top: 40px;}
.footer-container .footer .footer-row .footer-col .social-icons a {margin-right: 3px;}
.footer-container .footer .footer-row .footer-col .social-icons a img {}
.footer-container .footer .footer-row .footer-col ul {margin: 0;padding: 0;list-style: none;}
.footer-container .footer .footer-row .footer-col ul li {}
.footer-container .footer .footer-row .footer-col ul li a {font-size: 15px;color: #DEDEDE;line-height: 27px;text-decoration: none;transition: .5s;}
.footer-container .footer .footer-row .footer-col ul li a:hover, .footer-container .footer .footer-row .footer-col .address-row .text p a:hover, .copyright .copyright-text p a:hover {color:var(--orange);transition: .5s;}
.footer-container .footer .footer-row .footer-col .address-row {display: grid;grid-template-columns: 10% 90%;margin-bottom: 12px;}
.footer-container .footer .footer-row .footer-col .address-row .icon {position: relative;top: 7px;}
.footer-container .footer .footer-row .footer-col .address-row .icon img {}
.footer-container .footer .footer-row .footer-col .address-row .text {}
.footer-container .footer .footer-row .footer-col .address-row .text p {margin: 0;padding: 0;}
.footer-container .footer .footer-row .footer-col .address-row .text p a {font-size: 15px;color: #DEDEDE;line-height: 27px;text-decoration: none;transition: .5s;}
.copyright {background: #2B2E32;border-top: #383838 1px solid;padding: 25px 0 40px;}
.copyright .copyright-text {text-align: center;}
.copyright .copyright-text p {margin: 0;padding: 0;font-size: 14px;color: #DEDEDE;line-height: 27px;}
.copyright .copyright-text p a {font-size: 14px;color: #DEDEDE;line-height: 27px;text-decoration: none;transition: .5s;}
.menu-close, .menu-trigger {display: none;}

.header-inner {position: static;box-shadow: 0 2px 20px rgba(171, 165, 165, 0.15);}
.header-inner .header .header-right nav .menu ul li a {color:var(--black)}
.header-inner .header .header-button .btn-white-icon {color: var(--white);background: var(--orange);transition: .5s;}
.header-inner .header .header-button .btn-white-icon img {filter:brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(7496%) hue-rotate(1deg) brightness(127%) contrast(106%)!important}

.banner-about {background: url("../images/banner-about.jpg") no-repeat center center / cover;height: 485px;position: relative;}
.banner-about .caption {position: absolute;top: 70%;transform: translateY(-50%);left: 4%;}
.banner-about .caption .sub-heading {font-size: 20px;}
.banner-about .caption h1 {font-size: 50px;line-height: 62px;color: var(--black);font-weight: 800;margin-top: 30px;}



.banner-contact {background: url("../images/banner-contact.jpg") no-repeat center center / cover;height: 600px;position: relative;}
.banner-contact .caption {position: absolute;top: 50%;transform: translateY(-50%);left: 4%;width: 40%;}
.banner-contact .caption h1 {font-size: 50px;line-height: 62px;color: var(--black);font-weight: 800;margin-top: 30px;}
.banner-contact .caption p {font-size: 18px;line-height: 30px;margin-top: 0;}
.banner-contact .caption .button {margin-top: 30px;}
.banner-contact .caption .button a {background: var(--orange);color: var(--white);padding: 18px 28px;text-decoration: none;display: inline-flex;align-items: center;justify-content: center;gap: 15px;font-size: 15px;border-radius: 12px;transition: .5s;font-weight: 600;}
.banner-contact .caption .button a:hover {background: var(--black); transition: .5s;}
.banner-contact .caption .button a img {height: 20px;}

.about-content {margin-top: 10px;}
.about-content .sec-orange {grid-template-columns: 55% 41%;}
.about-content .thumb {order: 2;margin-top: 0 !important;}
.about-content .text {order:1;padding-left: 15%;padding-right: 0 !important;}
.about-content .text p {font-size: 22px !important;line-height: 42px !important;font-style: italic;}

.journey{position:relative;padding:80px 0;overflow:hidden}
.journey .container{width:min(1450px,92%);margin:auto;position:relative;z-index:5}
.bg-glow{position:absolute;border-radius:50%;filter:blur(120px);animation:float 12s ease-in-out infinite alternate;opacity:.5}
.glow-1{width:520px;height:520px;background:#F9731635;left:-180px;top:-100px}
.glow-2{width:420px;height:420px;background:#FDBA7435;right:-120px;top:200px;animation-duration:18s}
.glow-3{width:350px;height:350px;background:#FB923C25;left:45%;bottom:-120px;animation-duration:15s}
@keyframes float {
from{transform:translateY(0) scale(1)}
to{transform:translateY(60px) scale(1.15)}
}
.section-title{text-align:center;margin-bottom:0}
.section-title span {display: inline-block;padding: 14px 26px;background: #f9731614;color: #F97316;border-radius: 50px;font-size: 14px;font-weight: 700;}
.section-title h2{margin-top:22px;font-size:56px;color:#0F172A;line-height:1.1;font-weight:800}
.section-title p{max-width:760px;margin:28px auto 0;font-size:16px!important;line-height:1.9!important;color: var(--text);}
.timeline{position:relative;padding-top:70px}
.timeline-line{position:absolute;left:0;right:0;top:70px;height:4px;background:#eceff3;border-radius:30px;overflow:hidden}
.progress-line{position:absolute;left:0;top:0;width:35%;height:100%;background:linear-gradient(90deg,#F97316,#FFB347,#F97316);border-radius:30px;animation:loading 6s linear infinite}
@keyframes loading {
0%{left:-40%}
100%{left:100%}
}
.cards{display:flex;justify-content:space-between;align-items:flex-start;gap:26px;position:relative}
.card{position:relative;width:16.66%;padding:20px 16px;background:#ffffffb8;backdrop-filter:blur(18px);border:1px solid #ffffffa6;border-radius:26px;box-shadow:0 18px 45px #0f172a14;transition:.45s}
.card:nth-child(even){margin-top:120px}
.card:nth-child(odd){margin-top:20px}
.journey .year{background:#F37021;padding:6px 12px;border-radius:50px;font-size:14px;color:#fff;display:inline-block;margin-bottom:10px}
.journey h3{margin:5px 0 10px;font-weight:700}
.journey p{font-size:14px;line-height:22px;color: var(--text);}
.journey ul{margin:15px;padding: 0;}
.journey ul li{font-size:14px;line-height:22px;color: var(--text);margin-bottom: 5px;}

.built-by-container {background: url("../images/bg4.png") no-repeat center center / cover;padding: 60px 0;}
.built-by-container .built-by {}
.built-by-container .built-by .heading {text-align: center;}
.built-by-container .built-by .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;}
.built-by-container .built-by .built-by-row {margin-top: 80px;}
.built-by-container .built-by .built-by-row .built-by-col {display: grid;align-items: center;grid-template-columns: 30% 50%;justify-content: center;}
.built-by-container .built-by .built-by-row .built-by-col .thumb {}
.built-by-container .built-by .built-by-row .built-by-col .thumb img {width: 100%;display: block;}
.built-by-container .built-by .built-by-row .built-by-col .text {background: #F37021;opacity: 0.9;padding: 40px;}
.built-by-container .built-by .built-by-row .built-by-col .text p {color: var(--white);font-size: 20px;line-height: 36px;font-style: italic;}
.built-by-container .built-by .built-by-row .built-by-col .text .author {}
.built-by-container .built-by .built-by-row .built-by-col .text .author h4 {font-size: 20px;color: var(--white);margin-bottom: 6px;}
.built-by-container .built-by .built-by-row .built-by-col .text .author .designation {display: inline-block; width: 100%;font-size: 15px;color: var(--white);font-style: italic;}
.built-by-container .built-by .built-by-row .built-by-col .text .author .company {display: inline-block; width: 100%;font-size: 15px;color: var(--white);font-weight: 600;margin-top: 2px;}
.built-by-container .built-by .built-by-row .built-by-col:nth-child(2) .thumb {order: 2}
.built-by-container .built-by .built-by-row .built-by-col:nth-child(2) .text {order: 1}
.built-by-container .built-by .built-by-row .built-by-col:nth-child(2) {grid-template-columns: 50% 30%;}

.sec-contactinfo-container {padding-bottom: 60px;}
.sec-contactinfo-container .sec-contactinfo {}
.sec-contactinfo-container .sec-contactinfo .heading {}
.sec-contactinfo-container .sec-contactinfo .heading .sub-heading {}
.sec-contactinfo-container .sec-contactinfo .heading .sub-heading img {}
.sec-contactinfo-container .sec-contactinfo .heading h2 {}
.sec-contactinfo-container .sec-contactinfo .heading p {}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row {display: grid;grid-template-columns: 1fr 1fr 1fr;justify-content: space-between;margin-top: 50px;grid-gap: 20px;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col {border-radius: 20px;padding: 20px 30px;display: grid;grid-template-columns: 70% auto;justify-content: space-between;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text {}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text h3 {font-size: 26px;margin-top: 10px;margin-bottom: 0;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text p {font-size: 16px;color: var(--text);line-height: 26px;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text .info {}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text .info h4 {font-size: 22px;margin-bottom: 0;margin-top: 0;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text .info h4 a {font-size: 22px;text-decoration: none;color: var(--black);}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text .info p {margin-top: 10px;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .icon {height: 100px;width: 100px;background: #FFD7BF;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 10px auto;border: var(--orange) 7px solid;}
.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .icon img {}

.sec-reachout-container {padding-top: 40px;padding-bottom: 20px;}
.sec-reachout-container .sec-reachout {}
.sec-reachout-container .sec-reachout .heading {}
.sec-reachout-container .sec-reachout .heading h2 {}
.sec-reachout-container .sec-reachout .sec-reachout-row {display: grid;grid-template-columns: 1fr 1fr 1fr;justify-content: space-between;margin-top: 50px;grid-gap: 20px;}
.sec-reachout-container .sec-reachout .sec-reachout-row .sec-reachout-col {border-radius: 20px;padding: 40px 30px 20px;text-align: center;}
.sec-reachout-container .sec-reachout .sec-reachout-row .sec-reachout-col .icon {}
.sec-reachout-container .sec-reachout .sec-reachout-row .sec-reachout-col .icon img {}
.sec-reachout-container .sec-reachout .sec-reachout-row .sec-reachout-col .content {}
.sec-reachout-container .sec-reachout .sec-reachout-row .sec-reachout-col .content h3 {font-size: 20px;line-height: 28px;}
.sec-reachout-container .sec-reachout .sec-reachout-row .sec-reachout-col .content p {font-size: 15px;line-height: 24px;color: var(--text);}

.banner-charter-service {background: url("../images/banner-charter-service.png") no-repeat center center / cover;height: 800px;position: relative;padding: 60px 0;}
.banner-private-charter {background: url("../images/banner-privatecharter.jpg") no-repeat center center / cover;}
.banner-helicopter-charter {background: url("../images/banner-helicoptercharter.png") no-repeat center center / cover;}
.banner-airambulance {background: url("../images/banner-airambulance.jpg") no-repeat center center / cover;}
.banner-chardham {background: url("../images/banner-chardham.png") no-repeat center center / cover;}
.banner-dodham {background: url("../images/banner-dodham.png") no-repeat center center / cover;}

.banner-charter-service .banner-charter-row {display: flex;justify-content: space-between;align-items: center;}
.banner-charter-service .banner-charter-row .caption {}
.banner-charter-service .banner-charter-row .caption h1 {font-size: 60px;line-height: 70px;color: var(--black);font-weight: 800;margin-top: 30px;}
.banner-charter-service .banner-charter-row .caption p {font-size: 20px;}
.banner-charter-service .banner-charter-row .form-wrapper {box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);border: #ededed 1px solid;border-radius: 30px;padding: 35px;position: relative;background: rgba(255,255,255,0.92);}
.banner-charter-service .banner-charter-row .form-wrapper .header {}
.banner-charter-service .banner-charter-row .form-wrapper .header h3 {font-size: 30px;text-align: center;margin-top: 0;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row {margin: 10px 0;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group {position: relative;width: 100%;overflow: hidden;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group input, .banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group textarea {width: 100%;height: 70px;padding: 22px 16px 8px;color: #222;border: 1px solid #c9c9c9;border-radius: 10px;outline: none;background: rgba(255,255,255,0.5);transition: .3s;font-family: "Inter",serif;font-size: 16px;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row-button {margin-top: 0;margin-bottom: 0;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row-button button {background: #F37021;border: 0;width: 100%;height: 70px;border-radius: 12px;display: flex;align-items: center;justify-content: center;gap: 12px;cursor: pointer;transition: .5s;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row-button button:hover {background:var(--black)}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row-button button span {font-size: 16px;font-family: "Inter",serif;font-weight: 600;color: var(--white);}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .checkbox-group {display: flex;align-items: center;gap: 10px;margin: 14px 0 22px;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .checkbox-group input[type="checkbox"] {height: 20px;width: 20px;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .checkbox-group a {color: var(--orange);text-decoration: none;}
.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group textarea {height: 100px;padding-top: 30px;}


.charter-more-container {background: url("../images/bg5.png") no-repeat center center / cover;padding-bottom: 50px;}
.charter-more-container .charter-more {text-align: center}
.charter-more-container .charter-more h2 {font-size: 50px;font-weight: 800;margin-top: 50px;margin-bottom: 30px;}
.charter-more-container .charter-more p {font-size: 15px;line-height: 26px;color: var(--text);padding: 0 16%;}
.charter-more-container .charter-more .button {margin-top: 40px;}
.charter-more-container .charter-more .button a {display: inline-flex;gap: 12px;color: var(--white);background: var(--orange);text-decoration: none;padding: 16px 26px;border-radius: 12px;font-weight: 600;align-items: center;font-size: 16px;transition: .5s;}
.charter-more-container .charter-more .button a:hover {background:var(--black)}
.charter-more-container .charter-more .button a img {}

.charter-exp-container {background: #FFF5EF;padding: 60px 0;}
.charter-exp-container .charter-exp {}
.charter-exp-container .charter-exp .heading {text-align: center;}
.charter-exp-container .charter-exp .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;}
.charter-exp-container .charter-exp .charter-exp-row {display: grid;grid-template-columns: 1fr 1fr 1fr 1fr 1fr;grid-gap: 20px;}
.charter-exp-container .charter-exp .charter-exp-row .charter-exp-col {border-radius: 22px;padding: 30px 20px 20px;text-align: center;}
.charter-exp-container .charter-exp .charter-exp-row .charter-exp-col .icon {}
.charter-exp-container .charter-exp .charter-exp-row .charter-exp-col .icon img {}
.charter-exp-container .charter-exp .charter-exp-row .charter-exp-col h3 {}
.service-col-3 {}
.service-col-3 .our-services-row {}
.service-col-3 .our-services-row .our-serivces-col {width: 30% !important;}
.service-col-3 .our-services-row .our-serivces-col .service-card {height: auto !important;}
.service-col-3 .our-services-row .our-serivces-col .service-card .service-content ul {padding: 0;margin: 15px;}
.service-col-3 .our-services-row .our-serivces-col .service-card .service-content ul li {line-height: 1.7;opacity: 1;transition: .45s ease;}
.service-col-3 .our-services-row .our-serivces-col .service-card .service-content {bottom: 0 !important;min-height: auto;top: 80px;display: none;}
.service-col-3 .our-services-row .our-serivces-col .service-card:hover ul {}
.service-col-3 .our-services-row .our-serivces-col .service-card:hover .service-content {bottom: 45px !important;}
.service-col-3 .our-services-row .our-serivces-col .service-card .service-content p {opacity: 1 !important;transform: none !important;}
.service-col-3 .our-services-row .our-serivces-col .service-card .service-content .service-icon {transform: none !important;opacity: 1 !important;}
.service-col-3 .our-services-row .our-serivces-col:hover .service-content {display: block}
.service-col-3 .our-services-row .our-serivces-col:hover .overlay {background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.8), rgba(0,0,0,.5)) !important;}


/*==========================
    AIRCRAFT GRID
===========================*/

.aircraft-grid-container{
    padding:60px 0;
}

.aircraft-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.aircraft-col{
    position:relative;
    height:420px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    perspective:1000px;
}

.aircraft-col img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.aircraft-col .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.25),
    rgba(0,0,0,.05));
    z-index:1;
}

/* Default Text */

.aircraft-col .text{
    position:absolute;
    left:35px;
    bottom:35px;
    z-index:3;
    color:#fff;
    transition:.4s;
}

.aircraft-col .text h3{
    margin:0;
    font-size:24px;
    font-weight:600;
}

/*==========================
      FLIP CONTENT
===========================*/

.fliptext{
    position:absolute;
    inset:0;
    z-index:5;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    padding:35px;
    background: var(--orange);

    color:#fff;

    transform:rotateY(180deg);
    opacity:0;
    visibility:hidden;
    transition:.6s;
    backface-visibility:hidden;
}

.fliptext h3{
    font-size: 24px;
  margin-bottom: 6px;
}

.fliptext p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
    color:#ffffff;
}

.fliptext .button a{
    display:inline-block;
    padding:12px 28px;
    background:#fff;
    color: var(--orange);
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.fliptext .button a:hover{
    background:#000000;
    color:#fff;
}

/*==========================
        HOVER
===========================*/

.aircraft-col:hover img{
    transform:scale(1.08);
    transition:.6s;
}

.aircraft-col img{
    transition:.6s;
}

.aircraft-col:hover .overlay{
    opacity:0;
}

.aircraft-col:hover .text{
    opacity:0;
    transform:translateY(20px);
}

.aircraft-col:hover .fliptext{
    transform:rotateY(0deg);
    opacity:1;
    visibility:visible;
}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:991px){

    .aircraft-row{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .aircraft-row{
        grid-template-columns:1fr;
    }

    .aircraft-col{
        height:380px;
    }

}


.every-journey-container {background: url("../images/bg6.png") no-repeat center center / cover;}
.every-journey-container .every-journey {}
.every-journey-container .every-journey .heading {text-align: center;}
.every-journey-container .every-journey .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;margin-bottom: 30px;}
.every-journey-container .every-journey .every-journey-row {display: flex;justify-content: center;margin-top: 50px;flex-wrap: wrap;gap: 20px;}
.every-journey-container .every-journey .every-journey-row .every-journey-col {border-radius: 30px;text-align: center;padding: 20px 30px;position: relative;width: 24%;}
.every-journey-container .every-journey .every-journey-row .every-journey-col .icon {height: 70px;width: 70px;background: var(--orange);border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 20px auto;}
.every-journey-container .every-journey .every-journey-row .every-journey-col .icon img {}
.every-journey-container .every-journey .every-journey-row .every-journey-col .content {}
.every-journey-container .every-journey .every-journey-row .every-journey-col .content h3 {font-size: 20px;font-weight: 600;line-height: 28px;}
.every-journey-container .every-journey .every-journey-row .every-journey-col .content p {font-size: 15px;line-height: 26px;color: var(--text);}

.journey-we-container {background:#FFF5EF;padding: 60px 0;}
.journey-we-container .journey-we {}
.journey-we-container .journey-we .heading {text-align: center;}
.journey-we-container .journey-we .heading h2 {font-size: 60px;font-weight: 800;margin-top: 30px;margin-bottom: 30px;}
.journey-we-container .journey-we .journey-we-row {display: flex;justify-content: center;margin-top: 50px;flex-wrap: wrap;gap: 20px;}
.journey-we-container .journey-we .journey-we-row .journey-we-col {border-radius: 30px;text-align: center;padding: 20px 30px;position: relative;width: 19%;}
.journey-we-container .journey-we .journey-we-row .journey-we-col .icon {display: flex;align-items: center;justify-content: center;margin: 20px auto;}
.journey-we-container .journey-we .journey-we-row .journey-we-col .icon img {}
.journey-we-container .journey-we .journey-we-row .journey-we-col .content {}
.journey-we-container .journey-we .journey-we-row .journey-we-col .content h3 {font-size: 18px;font-weight: 600;line-height: 28px;}

.box-point {width: 60%;margin: 30px auto;background: #fff;padding: 20px;border-radius: 22px;box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);}
.box-point h3 {margin: 10px 0 30px;text-align: center;}
.box-point ul {list-style: none;padding: 0;margin: 0;display: flex;flex-wrap: wrap;text-align: left;}
.box-point ul li {font-size: 16px;color: var(--black);line-height: 30px;font-weight: 500;position: relative;padding-left: 26px;width: 48%;}
.box-point ul li::before {content: "";background: url(../images/icon-check.svg) no-repeat center center;height: 18px;width: 18px;position: absolute;left: 0;top: 6px;}


.cdhy-itinerary-section{padding:90px 20px;background:#faf8f2}
.cdhy-container{max-width:1250px;margin:auto}
.cdhy-heading{text-align:center;margin-bottom:80px}
.cdhy-subtitle{display:inline-block;color: var(--orange);font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:15px}
.cdhy-heading h2 {font-size: 60px;line-height: 1.2;color: #1d2430;margin: 0;font-weight: 700;margin-top: 20px;}
.cdhy-timeline{position:relative;margin-bottom: 150px;}
.cdhy-timeline:before{content:"";position:absolute;left:65px;top:0;bottom:0;width:3px;background: linear-gradient(135deg,var(--orange),#FFC19C);}
.cdhy-item{position:relative;display:flex;gap:40px;margin-bottom:50px;align-items:flex-start}
.cdhy-day{width:130px;min-width:130px;height:130px;border-radius:50%;background: linear-gradient(135deg,var(--orange),#FFC19C);color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;z-index:2;box-shadow:0 15px 35px #0000002e}
.cdhy-day span{font-size:14px;text-transform:uppercase;letter-spacing:2px}
.cdhy-day h3{margin:5px 0 0;font-size:42px;line-height:1}
.cdhy-return{font-size:20px;font-weight:600}
.cdhy-return span{font-size:18px}
.cdhy-card{flex:1;background:#fff;padding:35px 40px;border-radius:20px;border:1px solid #d2b97659;box-shadow:0 20px 50px #0000000f;transition:.35s}
.cdhy-card:hover{transform:translateY(-8px);box-shadow:0 25px 60px #0000001f}
.cdhy-card h3{margin:0 0 20px;color:#1f2734;font-size:30px}
.cdhy-route {background: #FFEEE3;border-left: 4px solid var(--orange);padding: 18px 22px;margin-bottom: 25px;border-radius: 12px;}
.cdhy-route strong{display:block;color:#000000;margin-bottom:8px}
.cdhy-route p{margin:0;color:#555;font-weight:500}
.cdhy-card ul{margin:0;padding:0;list-style:none}
.cdhy-card ul li{position:relative;padding-left:30px;margin-bottom:10px;color:#555;line-height:1.7}
.cdhy-card ul li:before{content: ""; background: url(../images/icon-check.svg) no-repeat center center;height: 18px;width: 18px;position: absolute;left: 0;top: 5px;}
@media(max-width:992px) {
.cdhy-timeline:before{left:35px}
.cdhy-item{gap:25px}
.cdhy-day{width:70px;min-width:70px;height:70px}
.cdhy-day h3{font-size:24px}
.cdhy-day span{font-size:10px}
.cdhy-heading h2{font-size:34px}
.cdhy-card h3{font-size:24px}
}
@media(max-width:768px) {
.cdhy-item{flex-direction:column;padding-left:45px}
.cdhy-day{position:absolute;left:0}
.cdhy-timeline:before{left:34px}
.cdhy-card{width:100%}
}

.price-box {display: flex;justify-content: center;margin-top: 40px;gap: 15px;}
.price-box .price {padding: 15px;border-radius: 22px;width: 20%;}
.price-box .price .label {}
.price-box .price h4 {font-size: 24px;margin-top: 14px;margin-bottom: 0;color: var(--orange);}
.price-box .price small {font-size: 12px;line-height: 10px;font-weight: 500;}
.price-box .price h4 span {display: inline-block;width: 100%;font-size: 14px;color: var(--text);;
  font-weight: 500;}
.price-box .button {background: var(--orange);}
.price-box .button:hover {background: var(--black)}
.price-box .button a {color: #fff;text-decoration: none;height: 100%;display: inline-flex;align-items: center;justify-content: center;font-weight: 600;width: 100%;}
.pricing {margin-top: 20px;}
.pricing legend {text-align: center;margin: 0 auto;padding: 10px;font-weight: 600;font-size: 16px;}
.pricing p {padding: 0;margin: 0;}
.pricing .price-box {margin-top: 20px;}
.price-box .price .label2 {margin-top: 15px;}
.package-last {margin-bottom: 0;}

.policy-container{padding:80px 0}
.policy{max-width:1000px;margin:0 auto}
.policy .heading{text-align:center;margin-bottom:50px}
.policy .heading h1{font-size:48px;font-weight:700;color:#1d2430;margin:0;line-height:1.2;position:relative;padding-bottom:18px}
.policy .heading h1::after{content:"";width:80px;height:4px;background: var(--orange);border-radius:20px;position:absolute;left:50%;bottom:0;transform:translateX(-50%)}
.policy-content{font-size:17px;line-height:1.9;color:#555}
.policy-content p{margin:0 0 22px}
.policy-content h2,.policy-content h3,.policy-content h4{margin:50px 0 20px;color:#1d2430;font-weight:700;line-height:1.3}
.policy-content h2{font-size:36px}
.policy-content h3{font-size:28px}
.policy-content h4{font-size:22px}
.policy-content strong{color: var(--orange);font-weight:600}
.policy-content a{color: var(--orange);text-decoration:none;font-weight:600;transition:.3s}
.policy-content a:hover{color:#c9a227}
.policy-content ul,.policy-content ol{margin:25px 0;padding-left:0}
.policy-content ul li,.policy-content ol li{list-style:none;position:relative;padding-left:28px;margin-bottom:0}
.policy-content ul li::before{content:"";width:8px;height:8px;border-radius:50%;background: var(--orange);position:absolute;left:0;top:12px}
.policy-content ol{counter-reset:item}
.policy-content ol li{counter-increment:item}
.policy-content ol li::before{content:counter(item) ".";color:#c9a227;font-weight:700;position:absolute;left:0;top:0}
.policy-content blockquote{margin:35px 0;padding-left:25px;border-left:4px solid #c9a227;font-style:italic;color:#666}
.policy-content table{width:100%;border-collapse:collapse;margin:30px 0}
.policy-content table th,.policy-content table td{padding:14px;border:1px solid #ddd}
.policy-content table th{background:#f8f8f8;color: var(--orange);font-weight:600}
.policy-content hr{margin:40px 0;border:none;border-top:1px solid #e5e5e5}
@media (max-width:991px) {
.policy .heading h1{font-size:40px}
.policy-content h2{font-size:30px}
.policy-content h3{font-size:24px}
}
@media (max-width:767px) {
.policy-container{padding:60px 0}
.policy .heading{margin-bottom:35px}
.policy .heading h1{font-size:32px}
.policy-content{font-size:16px}
.policy-content h2{font-size:26px}
.policy-content h3{font-size:22px}
}

.medianews-row {grid-template-columns: 32% 32% 32% !important;grid-gap: 10px !important;}
.testimonial-container {}
.testimonial-container .heading {text-align: center;}

.testimonial-container .testimonial-row {display: flex;justify-content: center;gap: 30px;}
.testimonial-container .testimonial-row .testimonial-col {border-radius: 20px;box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);border: #ebebeb 1px solid;width: 30%;}
.testimonial-container .testimonial-row .testimonial-col .video-box {position: relative;}
.testimonial-container .testimonial-row .testimonial-col .video-box img {display: block;border-radius: 20px 20px 0 0;width: 100%}
.testimonial-container .testimonial-row .testimonial-col .video-box .play {position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.testimonial-container .testimonial-row .testimonial-col .video-box .play img {cursor: pointer;}
.testimonial-container .testimonial-row .testimonial-col .video-info {border-radius: 0 0 20px 20px;text-align: center;padding: 24px 20px;background: #fff;min-height: 100px;}
.testimonial-container .testimonial-row .testimonial-col .video-info h3 {margin: 0;font-weight: 700;font-size: 20px;margin-bottom: 8px;}
.testimonial-container .testimonial-row .testimonial-col .video-info p {margin: 4px 0;}
.testimonial-container .button, .awards-container .button {text-align: center;margin-top: 25px;}
.video-element {display: none;width: 100%;height: 600px;object-fit: cover;border-radius: 20px 20px 0 0;}
.video-thumb {display: block;width: 100%;height: 600px;object-fit: cover;}

@media(max-width:1366px){
	html,body {overflow-x:hidden}
	.container {width: 1300px;}
	.header-container .header .header-right nav .menu ul li a {font-size: 15px;}
	.sec-orange-container .sec-orange .text h2 {font-size: 42px;margin-bottom: 20px;}
	.sec-orange-container .sec-orange .text p, .sec-orange-container .sec-orange .text ul li {font-size: 16px;line-height: 28px;}
	.container-fluid {padding: 0 3%;}
	.banner-container .caption .sub-heading {font-size: 22px;}
	.banner-container .caption h1 {font-size: 56px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .img-trail {width: 400px;}
	.header-container .header .header-right nav .menu ul {gap: 20px;}
	.sec-orange-container .sec-orange .text {padding-right: 10%;}
	.sec-orange-container .sec-orange {padding: 10px 0 50px;}
	.sec-form-container {padding: 60px 0;}
	.section {padding: 60px 0;}
	
	.section .heading h2, .our-services-container .our-services .heading h2, .steps-container .steps .heading h2, .sec-form-container .sec-form .heading h2, .blogs-container .blogs .heading h2 {font-size: 42px;}
	.section .heading p, .our-services-container .our-services .heading p, .steps-container .steps .heading p {font-size: 16px;padding: 0 24%;line-height: 28px;}
	
	.sec-why-container .sec-why .sec-why-row .sec-why-col .content h3, .steps-container .steps .steps-row .steps-col .content h3, .sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top h3 {font-size: 18px;line-height: 28px;}
	
	.sec-why-container .sec-why .sec-why-row .sec-why-col .icon img {height: 40px;}
	.our-services-container {padding: 50px 0 70px;}
	.our-services-container .our-services .our-services-row .our-serivces-col {width: 23%;}
	.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content h3, .charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .content h3 {font-size: 20px;}
	.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content p {margin-top: 16px;line-height: 24px;}
	.sec-why-container .sec-why .sec-why-row .sec-why-col .content p, .steps-container .steps .steps-row .steps-col .content p {font-size: 15px;line-height: 24px;}
	.charter-showcase-container .charter-showcase h2 {font-size: 42px;margin-top: 0;}
	.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .content p {margin-top: 10px;}
	.charter-showcase-container .charter-showcase .charter-showcase-row {grid-template-columns: 65% 32.5%;}
	.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .button a {padding: 23px;font-size: 16px;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top .icon img {width: 46px;}
	.testimonial .client-words-row .clients-words-col .quote img {height: 30px;width: auto;}
	.testimonial .owl-dots .owl-dot span {height: 10px;width: 10px;}
	.sec-form-container .sec-form .heading p {font-size: 16px;line-height: 28px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .img-trail {top: -48%;left: 50%;transform: translateX(-50%);}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .header h3 {font-size: 26px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group input, .sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group textarea {height: 60px;}
	.input-group label, .textarea-group label {font-size: 15px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .input-group textarea {height: 85px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row-button button {height: 60px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info p {font-size: 15px;}
	.textarea-group label {top: 27%;}
	.blogs-container .blogs .heading .btn {font-size: 15px;}
	.blogs-container {padding: 60px 0;}
	.blogs-container .blogs .blogs-row .blogs-col .content h3 {font-size: 16px;line-height: 26px;}
	.blogs-container .blogs .blogs-row .blogs-col .content .date {font-size: 14px;}
	.news-container .news .news-row, .newsletter-container .newsletter .newsletter-row {grid-gap: 15px;grid-template-columns: 24% 24% 24% 24%;}
	.news-container .news .news-row .news-col .thumb .date {font-size: 14px;}
	.news-container .news .news-row .news-more-col .news-more p a {font-size: 18px;line-height: normal;}
	.faq-container .faqs .faqs-row .faq-item h3 {font-size: 18px;}
	.footer-container .footer .footer-row {grid-template-columns: 30% 17% 17% 26%;}
	.sec-orange-container .sec-orange .text .button a img {height: 20px;}
	.section .heading .sub-heading img {height: 30px;}
	.testimonial .text {padding-left: 10%;}
	.banner-about {height: 400px;}
	.banner-about .caption h1 {font-size: 40px;line-height: 50px;margin-top: 20px;}
	.banner-about .caption .sub-heading {font-size: 18px;}
	.about-content .text p {font-size: 20px !important;line-height: 38px !important;}
	.about-content .text {padding-left: 10%;}
	.about-content .sec-orange {padding: 0 !important;}
	.section-title h2 {font-size: 42px;margin-bottom: 0;}
	.built-by-container .built-by .heading h2 {font-size: 42px;margin-top: 0;}
	.built-by-container .built-by .built-by-row .built-by-col .text p {font-size: 16px;line-height: 26px;}
	.built-by-container .built-by .built-by-row .built-by-col .text .author h4 {font-size: 18px;}
	.built-by-container .built-by .built-by-row .built-by-col .text .author .designation, .built-by-container .built-by .built-by-row .built-by-col .text .author .company {font-size: 14px;}
	.built-by-container .built-by .built-by-row {margin-top: 60px;}
	.built-by-container .built-by .built-by-row .built-by-col {grid-template-columns: 30% 55%;}
	.built-by-container .built-by .built-by-row .built-by-col:nth-child(2) {grid-template-columns: 55% 30%;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .bottom p {font-size: 14px;}
	.banner-contact .caption h1 {font-size: 40px;line-height: 50px;}
	.banner-contact .caption {width: 50%;}
	.banner-contact .caption p {font-size: 16px;line-height: 28px;}
	.banner-contact {height: 500px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row {grid-template-columns: 32.5% 32.5% 32.5%;}
	.sec-contactinfo-container .sec-contactinfo .heading h2 {margin-bottom: 25px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text h3 {font-size: 22px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text p {font-size: 15px;line-height: 24px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text .info h4 a, .sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text .info h4 {font-size: 20px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col {min-height: 270px;}
	.sec-contactinfo-container {padding-bottom: 20px !important;}
	.sec-reachout-container {padding-top: 10px !important;padding-bottom: 20px !important;}
	
	.banner-charter-service .banner-charter-row .caption h1 {font-size: 40px;line-height: 50px;}
	.charter-more-container .charter-more h2 {font-size: 42px;margin-bottom: 20px;}
	.service-col-3 .our-services .our-services-row .our-serivces-col .service-card:hover .service-content p, .our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover .service-content ul li {font-size: 14px !important;line-height: 22px !important;}
	.service-col-3 .our-services .our-services-row .our-serivces-col .service-card .service-content .service-icon {display: none;}
	.service-col-3 .our-services-row .our-serivces-col .service-card .service-content {min-height: 420px !important;}
	.service-col-3 .our-services-row .our-serivces-col:nth-child(5) .service-card .service-content, .service-col-3 .our-services-row .our-serivces-col:nth-child(6) .service-card .service-content {}
	.service-col-3 .our-services-row .our-serivces-col .service-card .service-content {top: 50px;}
	.charter-exp-container .charter-exp .heading h2 {font-size: 42px;margin-top: 0px;}
	.aircraft-grid-container {padding-top: 20px !important;}
	.every-journey-container .every-journey .heading h2, .journey-we-container .journey-we .heading h2 {font-size: 42px;margin-top: 0;}
	.every-journey-container .every-journey .every-journey-row, .journey-we-container .journey-we .journey-we-row {margin-top: 40px;}
	.every-journey-container .every-journey .every-journey-row .every-journey-col {width: 32%;}
	.every-journey-container .every-journey .every-journey-row .every-journey-col .content h3 {font-size: 18px;line-height: 28px;margin-bottom: 0;}
	.journey-we-container .journey-we .journey-we-row .journey-we-col {width: 23%;}
	.box-point {width: 70%;}
	.box-point ul li {font-size: 15px;}
	.cdhy-heading h2 {font-size: 42px;}
	.every-journey-container .every-journey .every-journey-row .every-journey-col .content ul {margin-top: 10px;}
	
	
}

@media(max-width:1024px){
	.container {width: 94%;}
	.banner-container {height: 50vh;}
	.banner-container .caption h1 {font-size: 40px;margin-top: 16px;}
	.banner-container .caption .sub-heading {font-size: 18px;}
	.header-container .header .header-right nav {display: none;}
	.header-container .header .logo a img {height: 60px;}
	.header-container .header .header-right {gap: 20px;}
	
	.menu-trigger {display: block;}
	.menu-trigger img {height: 32px;display: block;}
	.menu-close {top: 20px;right: 20px;display: block;position: absolute;}
	.menu-close a img {height: 32px;}
	.header-container .header .header-right nav {display: none;position: fixed;width: 100%;background: #fff;z-index: 9999;top: 0;left: 0;padding: 70px 0 0;height: 100vh;}
	.header-container .header .header-right nav .menu ul {flex-wrap: wrap;padding: 0;margin: 0;gap: 0;}
	.header-container .header .header-right nav .menu ul li {padding: 0;width: 100%;}
	.header-container .header .header-right nav .menu ul li a {color: #000;width: 100%;padding: 15px;display: block;}
	.header-container .header .header-right nav .menu .has-submenu ul {display: block;margin: 0 25px;}
	.header-container .header .header-right nav .menu .has-submenu:hover ul {position: static;}
	.header-container.scrolled nav .menu ul li a.active, .header-container .header .header-right nav .menu ul li a:hover, .header-container .header .header-right nav .menu .has-submenu:hover > a {background: var(--orange) !important;color: var(--white) !important;}
	.header-container .header .header-right nav .menu .has-submenu {background: none !important;}
	.header-container.scrolled .menu-trigger img {filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(3%) hue-rotate(326deg) brightness(97%) contrast(104%)}
	
	.btn-white-icon {font-size: 14px;}
	.header-container .header {padding: 10px 0;}
	.sec-orange-container {margin-top: 30px;}
	.sec-orange-container .sec-orange {grid-template-columns: 100%;padding: 0;grid-gap: 0;}
	.sec-orange-container .sec-orange .thumb {margin-top: 0;padding-bottom: 0;}
	.sec-orange-container .sec-orange .text {padding: 40px;}
	.sec-orange-container .sec-orange .text h2 {margin-top: 0;}
	.section .heading p, .our-services-container .our-services .heading p, .steps-container .steps .heading p {font-size: 15px;padding: 0 10%;}
	.section .heading h2, .our-services-container .our-services .heading h2, .steps-container .steps .heading h2, .sec-form-container .sec-form .heading h2, .blogs-container .blogs .heading h2 {font-size: 40px;margin-bottom: 20px;}
	.sec-why-container .sec-why .sec-why-row {grid-template-columns: 1fr 1fr;margin-top: 30px;grid-gap: 20px;}
	.our-services-container .our-services .heading h2 {margin-top: 10px;}
	.our-services-container .our-services .our-services-row {gap: 20px;}
	.our-services-container .our-services .our-services-row .our-serivces-col {width: 48%;}
	.our-services-container::before {height: 500px;}
	.our-services-container {padding: 40px 0 50px;}
	.charter-showcase-container .charter-showcase .charter-showcase-row {grid-template-columns: 100%;grid-gap: 0px;}
	.charter-showcase-container .charter-showcase h2 {font-size: 40px;}
	.section {padding: 50px 0;}
	.steps-container .steps .steps-row {grid-template-columns: 1fr 1fr;grid-gap: 20px;margin-top: 40px;}
	.sec-trust-container .sec-trust .heading h2 {margin-top: 0;}
	.sec-trust-container .sec-trust .sec-trust-row {grid-template-columns: 50% 50%;margin: 40px 0 0;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2) .top, .sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2) .bottom {border-right:0}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(3) .top, .sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(4) .bottom {border-top:#D9D9D9 1px solid}
	.testimonial .text {padding-right: 6% !important;}
	.sec-form-container {padding: 40px 0;}
	.sec-form-container .sec-form .heading h2 {margin-top: 10px;}
	.sec-form-container .sec-form .sec-form-row {grid-template-columns: 1fr;margin-top: 20px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right {margin-top: 170px;}
	.blogs-container {padding: 40px 0;}
	.blogs-container .blogs .blogs-row {grid-gap: 20px;grid-template-columns: 1fr 1fr;}
	.news-container .news .heading h2 {margin-top: 0;}
	.news-container .news .news-row, .newsletter-container .newsletter .newsletter-row {grid-gap: 20px;grid-template-columns: 1fr 1fr;margin-top: 30px;}
	.faq-container .faqs .heading h2 {margin-top: 0;}
	.faq-container .faqs .faqs-row {padding: 0;margin-top: 35px;}
	.footer-container {margin-top: 20px;}
	.footer-container .footer {padding: 30px 0;}
	.footer-container .footer .footer-row {grid-template-columns: 1fr 1fr;grid-gap: 30px;}
	.footer-container .footer .footer-row .footer-col .address-row {grid-template-columns: 8% 92%;}
	
	.sec-orange-container {margin-top: 10px;}
	.about-content .text p {font-size: 18px !important;line-height: 32px !important;}
	.about-content .text {padding: 40px !important;}
	.banner-about .caption h1 {font-size: 36px;line-height: 48px;}
	.banner-about {height: 350px;}
	.journey {padding: 60px 0;}
	.journey .cards {flex-wrap: wrap;gap: 15px;}
	.journey .cards .card {width: 31%;}
	.journey .cards .card:nth-child(2n) {margin-top: 20px;}
	.built-by-container .built-by .built-by-row .built-by-col {grid-template-columns: 1fr;}
	.built-by-container .built-by .built-by-row .built-by-col .text p {margin-top: 0;}
	.built-by-container .built-by .built-by-row {margin-top: 40px;}
	.built-by-container .built-by .built-by-row .built-by-col:nth-child(2) {grid-template-columns: 1fr;margin-top: 20px;}
	.built-by-container .built-by .built-by-row .built-by-col:nth-child(2) .thumb {order: 1;}
	.sec-trust-container .sec-trust .heading h2 br {display:none}
	.menu-trigger img {filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(5%) hue-rotate(167deg) brightness(104%) contrast(101%);}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row {grid-template-columns: 1fr;margin-top: 30px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col {min-height: auto;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .icon img {width: 42px;}
	.sec-reachout-container .sec-reachout .sec-reachout-row {grid-template-columns: 1fr;margin-top: 30px;}
	.banner-contact .caption {width: 80%;}
	.banner-charter-service .banner-charter-row {flex-wrap: wrap;}
	.banner-charter-service .banner-charter-row .caption h1 br {display:none}
	.banner-charter-service .banner-charter-row .form-wrapper {width: 100%;}
	.banner-charter-service {height: auto;}
	.charter-more-container .charter-more p {padding: 0;}
	.service-col-3 .our-services-row .our-serivces-col {width: 98% !important;}
	.charter-exp-container .charter-exp .charter-exp-row {grid-template-columns: 1fr 1fr;}
	.every-journey-container .every-journey .every-journey-row .every-journey-col, .journey-we-container .journey-we .journey-we-row .journey-we-col {width: 48%;}
	.box-point {width: 100%;}
	.box-point ul li {width: 46%;}
	.box-point ul {justify-content: space-between;}
	.cdhy-itinerary-section {padding: 60px 20px;}
	.price-box .price {width: 30%;}
	.section .heading h3 {font-size: 30px;}
	.aircraft-row {margin-top: 30px;}
	.medianews-row {grid-template-columns: 48.5% 48.5% !important;}
	.medianews-row .news-col .thumb iframe, .medianews-row .news-col .thumb img {width: 100%;}
	.testimonial-container .testimonial-row {flex-wrap: wrap;gap: 20px;}
	.testimonial-container .testimonial-row .testimonial-col {width: 47%;}
	
}

@media(max-width:1024px) and (orientation:landscape){
	
}

@media(max-width:767px){
	.container {width: 92%;}
	.container-fluid {padding: 0 4%;}
	.header-container .header .logo a img {height: 50px;}
	.menu-trigger img {height: 28px;}
	.banner-container .caption h1 {font-size: 26px;}
	.banner-container .caption .sub-heading {font-size: 16px;}
	.banner-container {background: url("../images/hero-banner.jpg") no-repeat left center / cover;}
	.sec-orange-container .sec-orange .text h2 {font-size: 30px;margin-bottom: 10px;}
	.sec-orange-container .sec-orange .text h2 br, .section .heading h2 br, .our-services-container .our-services .heading h2 br, .charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box .content p br {display:none}
	.section .heading h2, .our-services-container .our-services .heading h2, .steps-container .steps .heading h2, .sec-form-container .sec-form .heading h2, .blogs-container .blogs .heading h2 {font-size: 30px;}
	.section .heading p, .our-services-container .our-services .heading p, .steps-container .steps .heading p {padding: 0 4%;}
	.sec-why-container .sec-why .sec-why-row {grid-template-columns: 1fr;}
	.our-services-container .our-services .our-services-row .our-serivces-col {width: 100%;}
	.charter-showcase-container .charter-showcase h2 {font-size: 30px;}
	.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box {height: 400px;}
	.charter-showcase-container .charter-showcase .charter-showcase-row .charter-showcase-col .charter-box img {height: 100%;}
	.steps-container .steps .heading h2 {margin-top: 0;}
	.steps-container .steps .steps-row {grid-template-columns: 1fr;margin-top: 20px;}
	.sec-trust-container .sec-trust .sec-trust-row {grid-template-columns: 1fr;margin: 30px 0 0;gap: 15px;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col {border: #d9d9d9 1px solid;border-radius: 22px;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top, .sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .bottom {border: 0;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .bottom {height: auto;padding-top: 0;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top {height: auto;padding-bottom: 0;border-top: 0 !important;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col .top h3 {margin-bottom: 0;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .top {order: 1;display: flex;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .top .icon {order: 1;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .top h3 {order: 2;}
	.sec-trust-container .sec-trust .sec-trust-row .sec-trust-col:nth-child(2n+2) .bottom {order: 2;border-bottom: 0;border-top: 0;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .img-trail {width: 300px;top: -35%;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right {margin-top: 140px;}
	.sec-form-container .sec-form .heading h2 {margin-bottom: 0;}
	.sec-form-container .sec-form .heading p {font-size: 15px;line-height: 26px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .header h3 {font-size: 22px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper {padding: 22px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info p {font-size: 13px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info .icon img {height: 16px;width: 16px;}
	.sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-info {gap: 5px;}
	.blogs-container .blogs .heading {flex-wrap:wrap;}
	.blogs-container .blogs .heading h2 {margin-top: 0;}
	.blogs-container .blogs .blogs-row, .news-container .news .news-row, .newsletter-container .newsletter .newsletter-row {grid-gap: 15px;grid-template-columns: 1fr;margin-top: 30px;}
	.blogs-container .blogs .blogs-row .blogs-col .content h3 {font-size: 18px;line-height: 28px;}
	.news-container .news .news-row .news-more-col {height: 220px;}
	.news-container .news .news-row .news-more-col .news-more p {margin-bottom: 0;}
	.newsletter-container {padding-top: 20px !important;}
	.footer-container .footer .footer-row {grid-template-columns: 1fr;grid-gap: 20px;}
	.footer-container .footer {padding: 20px 0;}
	.copyright {padding: 20px 0 30px;}
	.banner-about .caption .sub-heading {font-size: 15px;color: var(--white);}
	.banner-about .caption h1, .banner-contact .caption h1 {font-size: 24px;line-height: 34px;margin-top: 15px;color: var(--white);}
	.banner-about {height: 250px;}
	.banner-contact {height: 460px;}
	.banner-about .overlay, .banner-contact .overlay {background: rgba(0,0,0,0.5);height: 100%;width: 100%;z-index: 0;position: absolute;}
	.banner-about .caption, .banner-contact .caption {z-index: 1;}
	.about-content .text p {font-size: 16px !important;line-height: 28px !important;}
	.section-title h2 {font-size: 30px;line-height: 40px;}
	.section-title p {margin: 15px auto 0;font-size: 15px !important;line-height: 28px !important;}
	.journey .cards .card {width: 100%;}
	.journey .cards .card:nth-child(2n), .card:nth-child(2n+1) {margin-top: 10px;}
	.timeline {padding-top: 20px;}
	.timeline-line {display: none;}
	.built-by-container .built-by .heading h2 {font-size: 30px;}
	.built-by-container {padding: 50px 0;}
	.built-by-container .built-by .built-by-row .built-by-col .text {padding: 30px;}
	.banner-contact .caption p {font-size: 15px;line-height: 24px;color: var(--white);}
	.banner-contact .caption .button a {padding: 16px 24px;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col {grid-template-columns: 100%;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .text {order:2;text-align: center;}
	.sec-contactinfo-container .sec-contactinfo .sec-contactinfo-row .sec-contactinfo-col .icon {order:1}
	.sec-contactinfo-container .sec-contactinfo .heading h2 {margin-top: 20px;}
	
	.banner-charter-service .banner-charter-row .caption h1 {font-size: 24px;line-height: 34px;margin-bottom: 25px;margin-top: 0}
	.banner-charter-service .banner-charter-row .form-wrapper .header h3 {font-size: 22px;}
	.banner-charter-service .banner-charter-row .form-wrapper {padding: 22px;}
	.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group input, .banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group textarea {height: 60px;}
	.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .input-group textarea {height: 85px;}
	.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row-button button {height: 60px;}
	.banner-charter-service .banner-charter-row .form-wrapper .form-content .form-row .checkbox-group, .sec-form-container .sec-form .sec-form-row .sec-form-right .form-wrapper .form-content .form-row .checkbox-group {flex-wrap: wrap;}
	.charter-more-container .charter-more h2 {font-size: 30px;}
	.our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content p, .our-services-container .our-services .our-services-row .our-serivces-col .service-card .service-content ul li {line-height: 20px !important;font-size: 13.5px !important;}
	.service-col-3 .our-services .our-services-row .our-serivces-col .service-card:hover .service-content p, .our-services-container .our-services .our-services-row .our-serivces-col .service-card:hover .service-content ul li {
	font-size: 13.5px !important;line-height: 20px !important;}
	.service-col-3 .our-services-row .our-serivces-col .service-card .service-content {top: 30px;}
	.charter-exp-container .charter-exp .heading h2 {font-size: 30px;}
	.charter-exp-container .charter-exp .heading h2 br {display:none}
	.charter-exp-container {padding: 50px 0;}
	.charter-exp-container .charter-exp .charter-exp-row {grid-template-columns: 1fr;}
	.aircraft-grid .heading h2 {margin-top: 0;}
	.aircraft-row {margin-top: 30px;gap: 20px;}
	.aircraft-col .text h3 {font-size: 20px;}
	.every-journey-container .every-journey .heading h2, .journey-we-container .journey-we .heading h2 {font-size: 30px;}
	.every-journey-container .every-journey .every-journey-row .every-journey-col, .journey-we-container .journey-we .journey-we-row .journey-we-col {width: 100%;}
	.every-journey-container .every-journey .every-journey-row, .journey-we-container .journey-we .journey-we-row {margin-top: 30px;}
	.sec-orange-container .sec-orange .text ul li {width: 100%;}
	.box-point ul li {width: 100%;}
	.charter-more-container {padding-bottom: 30px;}
	.cdhy-heading h2 {font-size: 30px;margin-top: 0;}
	.price-box {flex-wrap: wrap;}
	.price-box .price {width: 90%;}
	.section .heading h3 {font-size: 24px;}
	.cdhy-timeline {margin-bottom: 80px;}
	.package-last {margin-bottom: 0 !important;}
	.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col input[type="email"] {padding: 10px 18px;font-size: 15px;height: 60px;width: 220px;}
	.newsletter-container .newsletter .newsletterinput-row .newsletterinput-col input[type="submit"] {padding: 10px 20px;height: 60px;font-size: 15px;}
	.medianews-row {grid-template-columns: 100% !important;}
	.testimonial-container .testimonial-row .testimonial-col {width: 100%;}
	.testimonial-container h2 {margin-top:0 !important}
}

@media(max-width:767px) and (orientation:landscape){
	
}