@import url(layout.min.css);
@import
url('https://fonts.googleapis.com/css2?family=Allura&family=Amatic+SC:wght@400;700&family=Andika:ital,wght@0,400;0,700;1,400;1,700&family=Arimo:ital,wght@0,400..700;1,400..700&family=Bitter:ital,wght@0,100..900;1,100..900&family=Caveat:wght@400..700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@502&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Great+Vibes&family=Heebo:wght@100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Pacifico&family=Permanent+Marker&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&family=Prompt: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&family=Quicksand:wght@300..700&family=Space+Grotesk:wght@300..700&display=swap');

body {
position: relative;
background: #fff;
overflow-x: hidden;
}

:root {
--white: #ffffff;
--black: #000;
--theme-color: #005A85;
--primary: #073e3f;
--yellow: #fad15b;

}

h1,
h2,
h3,
h4,
h5,
h6 {}

.img-auto {
display: block;
max-width: 100%;
margin: 0 auto;
}

a,
button {
text-decoration: none !important;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

a:hover,
button:hover {
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

ul {
padding: 0;
margin: 0;
list-style: none;
}

.title {
font-family: Inter;
font-weight: 700;
font-size: 46px;
color: var(--white);
}

/* Button Start */

.theme-btn {
font-weight: 600;
font-size: 14px;
text-align: center;
color: var(--white);
background: var(--theme-color);
padding: 10px 30px;
border-radius: 5px;
border: 1px solid var(--theme-color);
transition: 0.50s ease;
}

.theme-btn:hover {
background: transparent;
transition: 0.50s ease;
color: var(--white);
border: 1px solid var(--white);
}

/* Button End */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

/* Header Start */

.close-btn img {
width: 40px;
border-radius: 50%;
border: 2px solid white;
}

.contact-info span {
color: #1a3c6e;
font-size: 30px;
}

.header {
color: var(--white);
padding: 15px 0;
position: absolute;
width: 100%;
top: 0;
left: 0;
z-index: 99;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: bold;
}

.nav-links {
list-style: none;
display: flex;
gap: 50px;
}

.nav-links li {
position: relative;
}

.nav-links a {
text-decoration: none;
color: #1a3c6e;
font-family: Arial, sans-serif;
font-size: 17px;
}

.nav-links a:hover {
color: #ff6f00;
}

/* Dropdown styling with header_service_dropdown class */
.header_service_dropdown {
display: none;
position: absolute;
top: 100%;
left: 0;
list-style: none;
padding: 0;
margin: 0;
background-color: #2a3b5a;
min-width: 150px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 1001;
}

.header_service_dropdown li a {
padding: 10px 15px;
color: var(--white);
text-decoration: none;
display: block;
font-size: 14px;
}

.header_service_dropdown li a:hover {
background-color: #3a4b6a;
color: #007bff;
}

/* Show dropdown on hover for desktop */
.nav-links li:hover .header_service_dropdown {
display: block;
}

.toggle-btn {
font-size: 24px;
cursor: pointer;
color: var(--white);
transition: transform 0.3s ease;
display: none;
}

.toggle-btn:hover {
transform: scale(1.1);
}

.sidebar {
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background-color: #1a2a44;
z-index: 1000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: left 0.5s ease-in-out;
}

.sidebar.active {
left: 0;
}

.sidebar .nav-links {
display: flex;
flex-direction: column;
align-items: center;
list-style: none;
text-align: center;
}

.sidebar .nav-links li {
margin: 20px 0;
}

.sidebar .nav-links li a {
color: var(--white);
text-decoration: none;
font-size: 15px;
transition: color 0.3s ease;
}

.sidebar .nav-links li a:hover {
color: #007bff;
}

/* Ensure dropdown is hidden in sidebar */
.sidebar .header_service_dropdown {
display: none;
}

.close-btn {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
cursor: pointer;
color: var(--white);
transition: transform 0.3s ease;
}

.close-btn:hover {
transform: scale(1.1);
}

@media (max-width: 768px) {
.toggle-btn {
display: block;
}

.nav {
justify-content: space-between;
}

.sidebar .nav-links {
display: flex;
gap: 0px;
}
}

/* Header End */
/* Banner Start */
section.banner_bg {/* background: url(../images/banner-bg.jpg); */height: 764px;background-size: cover !important;background-position: center !IMPORTANT;background-repeat: no-repeat !important;padding-top: 100px;display: flex;align-items: center;justify-content: center;text-align: center;overflow: hidden;position: relative;}

section.banner_bg video {position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: fill;}

.banner_title h1 {
color: var(--primary);
margin: 0px;
font-weight: 700;
font-size: 70px;
font-family: "Lato", sans-serif;
text-indent: 1px solid;
}

.banner_title p {
color: var(--primary);
font-weight: 400;
font-size: 24px;
padding: 10px 38px;
font-family: "Lato", sans-serif;
max-width: 1050px;
margin: auto;
}

.banner_img1 img {
width: 500px;
height: auto;
}

.banner_img2 img {
width: 340px;
height: auto;
}

.banner_img1 {text-align: center;margin-top: 83px;margin-right: 278px;}

.banner_img2 {
text-align: end;
}

/* Banner End */
/* Second Section Start */
section.main_second_sec {
background: #ede5b7;
padding: 50px 20px;
}

.main_pays_off_img img {
width: 100%;
height: auto;
margin: 20px 0px;
}

.main_pays_off_img a {
background: #ff6f00;
color: white;
border: 1px solid #ff6f00;
padding: 10px 50px;
margin-bottom: 10px;
border-radius: 14px;
font-weight: 500;
font-size: 21px;
transition: 0.50s ease;
}

.main_pays_off_img {
text-align: center;
}

.main_pays_off h2 {
color: #1a3c6e;
margin: 0px;
font-weight: 700;
font-size: 45px;
line-height: 50px;
font-family: "Lato", sans-serif;
margin-bottom: 20px;
margin-top: 20px;
}

.main_pays_off span {
font-weight: 700;
font-size: 25px;
text-transform: capitalize;
line-height: 27px;
margin: 20px 0px 10px;
display: block;
font-family: "Lato", sans-serif;
color: #ff6f00;
}

.main_pays_off p {
font-family: auto;
color: #1a3c6e;
font-weight: 400;
font-size: 20px;
margin: 0px;
line-height: 35px;
}

.main_pays_off_img img.about-img {
width: 70%;
}

.main_pays_off_img img.about-img1 {
width: 70%;
}

form.third_sec_content_form input {
width: 100%;
background: #ffffff87;
border: 1px solid white;
padding: 14px;
outline: none;
}

form.third_sec_content_form {
width: 100%;
position: relative;
}

.third_sec_content_form_ttn {position: absolute;top: 50%;right: 35px;transform: translateY(-50%);}

.third_sec_content_form_ttn button {
background: var(--yellow);
border: none;
color: var(--primary);
font-size: 20px;
padding: 8px 20px;
font-family: "Lato", sans-serif;
}

.sign-up_content h2 {
color: #1a3c6e;
margin: 0px;
font-weight: 700;
font-size: 45px;
line-height: 50px;
font-family: "Lato", sans-serif;
margin-bottom: 20px;
margin-top: 20px;
}

.sign-up_content p {
font-family: auto;
color: #1a3c6e;
font-weight: 400;
font-size: 20px;
margin: 0px;
line-height: 35px;
}

/* Second Section End */

@media (min-width: 1401px) and (max-width: 1600px) {}

@media (min-width : 992px) and (max-width : 1400px) {
.main_pays_off_img img.about-img1 {
width: 100%;
}

.main_pays_off_img img.about-img {
width: 100%;
}

.main_pays_off p {
line-height: unset;
}
}

@media (min-width : 768px) and (max-width : 991px) {
ul.nav-links {
display: none;
}

.contact-info {
display: none;
}

.nav {
justify-content: end;
}

}

@media (max-width : 992px) {}

@media (max-width : 767px) {
.banner_img1 {
margin-top: 50px;
margin-right: 0px !important;
}

.book_snd_sec {
padding: 50px 0px;
text-align: center;
}

.main_pays_off_img {
margin-top: 50px;

}

form.contact_inner_form button {
display: flex;
width: 100%;
justify-content: center;
font-size: 15px;
border-radius: 0px;
}

.nav {
justify-content: end;
}

span.toggle-btn {
color: #1a3c6e;
font-size: 30px;
}

section.main_second_sec {
padding: 20px 0px;
text-align: center;
}

.main_pays_off h2 {
font-size: 30px;
line-height: unset;
margin: 10px 0px;
}

.main_pays_off span {
margin: 10px 0px;
}

.main_pays_off p {
line-height: unset;
font-size: 16px;
}

.main_pays_off_img button {
margin-top: 40px;
}

.main_pays_off_img img.about-img {
width: 100%;
}

.main_pays_off_img img.about-img1 {
width: 100%;
}

.sign-up_content h2 {
font-size: 30px;
margin: 10px 0px 0px;
}

.sign-up_content p {
font-size: 16px;
line-height: unset;
margin-bottom: 30px;
}

section.banner_bg {
height: unset;
padding-top: 50px;
}

.banner_title h1 {
font-size: 40px;
}

.banner_title p {
font-size: 17px;
}

.banner_title {
padding-bottom: 50px;
}

.contact-info {
display: none;
}

.banner_img1 img {
width: 100%;
}

.banner_img2 img {
width: 100%;
}

ul.nav-links {
display: none;
}
}

@media (max-width : 400px) {}

@media (max-width : 320px) {}

/* Footer Start */
footer {
background: #fae7ca;
padding-block: 22px;
}

footer ul {
display: flex;
justify-content: center;
gap: 4rem;
}

footer ul li a {
text-decoration: none;
font-family: "Lato", sans-serif;
font-size: 18px;
color: var(--primary);
}

/* Footer End */
/* Contact Us Start */

form.contact_inner_form input {
width: 100%;
padding: 12px;
outline: none;
color: black;
border: 1px solid #d9ccb2;
margin-bottom: 22px;
background: transparent;
border-radius: 8px;
}

form.contact_inner_form label {
font-family: Jost;
font-weight: 500;
font-size: 16px;
line-height: 100%;
color: #1a3c6e;
}

form.contact_inner_form textarea {
width: 100%;
padding: 10px;
outline: none;
color: black;
border: 1px solid #d9ccb2;
margin-bottom: 18px;
background: transparent;
border-radius: 8px;
}

form.contact_inner_form button {
width: 100%;
margin-top: 8px;
}

section.main_contact_us {
padding: 40px 0px 80px;
/* background: #ede5b7; */
}

form.contact_inner_form button {
background: #f8ce5a;
color: white;
border: 1px solid #f8ce5a;
padding: 18px 50px;
margin-bottom: 10px;
border-radius: 14px;
font-weight: 500;
font-size: 20px;
transition: 0.50s ease;
color: var(--primary);
}

.contact_inner_form_title h1 {
color: #1a3c6e;
margin: 0px;
font-weight: 700;
font-size: 45px;
font-family: "Lato", sans-serif;
text-align: center;
margin-bottom: 40px;
}

/* Contact Us End */
/* Book Inner Page Start */
.book_snd_sec {
background: #ede5b7;
padding: 100px 0px;
}

.book_snd_sec h2 {
color: #1a3c6e;
margin: 0px;
font-weight: 700;
font-size: 45px;
line-height: 50px;
font-family: "Lato", sans-serif;
margin-bottom: 20px;
margin-top: 20px;
}

.book_snd_sec p {
font-family: auto;
color: #1a3c6e;
font-weight: 400;
font-size: 20px;
margin: 0px;
line-height: 35px;
margin-bottom: 40px;
}

.book_snd_sec img {
width: 100%;
height: auto;
}

.book_snd_sec a {
background: #ff6f00;
color: white;
border: 1px solid #ff6f00;
padding: 10px 50px;
margin-bottom: 10px;
border-radius: 14px;
font-weight: 500;
font-size: 21px;
transition: 0.50s ease;
}

/* Book Inner Page End */
.vert-move {
/* -webkit-animation: mover 1s infinite alternate; */
/* animation: mover 1s infinite alternate; */
}

.vert-move {
/* -webkit-animation: mover 1s infinite alternate; */
/* animation: mover 1s infinite alternate; */
}

@-webkit-keyframes mover {
0% {
transform: translateY(0);
}

100% {
transform: translateY(-10px);
}
}

@keyframes mover {
0% {
transform: translateY(0);
}

100% {
transform: translateY(-10px);
}
}

/* Title Animation */
.banner_title h1 {
display: inline-block;
overflow: hidden;
}

.banner_title h1 span {
display: inline-block;
animation: popLetter 2s ease-in-out infinite;
animation-delay: calc(0.1s * var(--i));
}

@keyframes popLetter {

0%,
100% {
transform: translateY(0) scale(1);
opacity: 0.5;
}

50% {
transform: translateY(-5px) scale(1.1);
opacity: 1;
}
}

@keyframes glowTilt {

0%,
100% {
transform: rotate(0deg);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

50% {
transform: rotate(3deg);
text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}
}

/*
.main_pays_off_video {
display: block;
visibility: visible;
width: 100%;
height: auto;
} */
.main_pays_off_video {
width: 100%;
height: auto;
border-radius: 50% !important;
}

.main_pays_off_video video {
margin-top: 50px;
width: 300px;
height: 300px;
border-radius: 50% !important;
}

body {
background-repeat: no-repeat;
background-size: 100% 100%;
}

.contact_inner_form {
background-color: #fff5e1;
padding: 46px;
border-radius: 16px;
}

form.contact_inner_form select {
width: 100%;
padding: 12px;
outline: none;
color: #1a3c6e;
border: 1px solid #d9ccb2;
margin-bottom: 18px;
background: transparent;
border-radius: 8px;
font-weight: 500;
}

section.contactUsSec {
height: 460px;
padding-top: 9rem;
}

.contactRightSec {
padding: 45px 45px 30px;
background: #d5e0bc;
border-radius: 12px;
position: relative;
overflow: hidden;
}

.contactRightSec h3 {
color: #034d42;
font-weight: 700;
margin-bottom: 16px;
}

.contactRightSec p {
color: #034d42;
font-size: 18px;
margin-bottom: .8rem;
}

.contactRightSec p+p+p+p {
margin-left: 6rem;
}

.contactRightSec img {
position: absolute;
bottom: -3px;
left: -4px;
display: block;
}

.btn {
padding: 16px 50px;
border-radius: 14px;
font-weight: 500;
font-size: 20px;
transition: 0.50s ease;
}

.btn-yellow {
background-color: var(--yellow);
border: 1px solid var(--yellow);
color: var(--primary);
}

.contactRightSecWrap a {
width: 100%;
margin-top: 12px;
}

.subs {
background: #d8deb0;
padding: 44px;
border-radius: 10px;
}

.subs h3 {
color: var(--primary);
font-weight: 500;
font-size: 30px;
margin-bottom: 20px;
}

.subs .form-control {
height: 50px;
border-radius: 10px;
border: 2px solid #d3d4ac;
background: #fff4e0;
margin-bottom: 10px;
}

.subs .btn-yellow {
width: 100%;
}

.subs section .conSubs {
margin-bottom: 61px;
}

section.conSubs .subs {
margin-bottom: -15px;
}

.subs .form-control::placeholder {
color: #1e212b;
}

.bookSecWrap {
background: #fffaeb;
border-radius: 26px;
overflow: hidden;
margin-block: 3rem 5rem;
}

.bookSecWrap img {
width: 100%;
}

.bookSecWrap h3 {
padding-inline: 2rem;
padding-block: 20px 5px;
font-size: 34px;
color: var(--primary);
}

.bookSecWrap p {
padding-inline: 2rem;
padding-block: 0px 10px;
font-size: 22px;
color: var(--primary);
}

.bookSecWrap a {
margin-inline: 2rem;
margin-block-end: 2rem;
width: 60%;
padding-inline: 0;
border-radius: 100vmax;
color:
#eae5db;
font-size: 24px;
line-height: 27px;
background: #f4af40;
}

.storySec .banner_title {
text-align: start;
}

.storySec .banner_title p {
padding-left: 0;
font-size: 24px;
margin-left: 0;
}

.storySec .banner_title h1 {
font-size: 95px;
}

.storySec img {
position: absolute;
right: 0;
width: 100%;
max-width: 25%;
}

.storyWrap {
background: #fffaeb;
border-radius: 16px;
margin-bottom: 3rem;
padding: 50px;
}

.storyWrap h3,
.storyWrap p {
color: var(--primary);
}

.storyWrap h3 {
font-size: 32px;
}

.storyWrap p {
font-size: 20px;
color: #374a47;
font-weight: 400;
min-height: 300px;
}

a.btn-more {
color: var(--primary);
font-size: 20px;
}

a.btn-more:hover {
text-decoration: none !important;
}

.storyWrapinner h3 {
font-size: 44px;
}

.storyWrap .storyimg1 img {
margin: -24% 3% -15%;
}

section.storySec1 {
position: relative;
margin-bottom: 3rem;
}

section.storySec1 .img1 {
position: absolute;
bottom: 6%;
left: 0%;
}

section.storySec1 .img2 {
position: absolute;
bottom: 14%;
right: 10%;
}

section.storySec1 ul {
display: flex;
gap: 20px;
justify-content: center;
}

section.storySec1 ul li a {
border-radius: 100vmax;
background: #bad7c9;
margin-top: 15px;
color: #003b35;
}

section.storySec1 .subs {
min-height: 326px;
}

.storyimg1 {}

section.sec1 .storyimg1 img {
position: absolute;
right: 0;
top: -8rem;
bottom: 0;
display: flex;
align-items: center;
width:
52%;
}

section.sec1 {
position: relative;
}

.sec1 .storyWrap1 h3 {
color: var(--primary);
font-size: 42px;
text-align: center;
}

.sec1 .storyWrap1 img {
display: flex;
justify-content: center;
margin: auto;
}

.sec1 .storyWrap1 p {
font-size: 22px;
}

.sec2 .storyWrap1 h3 {
color: var(--primary);
font-size: 42px;
text-align: center;
}

.sec2 .storyWrap1 p {
font-size: 22px;
}

section.sec2 {
margin-top: 8rem;
margin-bottom: 5rem;
}

.sec2 .storyWrap1 {
margin-bottom: 2rem;
}

section.sec2 .btn1 {
background: #46a09b;
color: #fff;
border-radius: 100vmax;
}

section.sec2 .btn2 {
background: #fc9849;
color: #fff;
border-radius: 100vmax;
}

.sec2WrapLast {
margin-top: 4rem;
}

section.banner_bg.abtSec {
padding-top: 0;
height: 500px;
}

.btn:hover {
opacity: .8;
}

.main_second_sec1 .main_pays_off {
padding-left: 40px;
}

section.main_second_sec .main_pays_off p {
padding-bottom: 2rem;
}

.storyWrap1 .main_pays_off_video {
margin-bottom: 1rem;
}

.faq .tabs1 {
margin-top: 8px;
}

.faq .accordion {
text-align: left;
}

.faq .at-tab {
display: none;
/* border-bottom: 1px solid #dddddd; */
border-top: none;
background-color:
transparent;
padding: 0px 16px 0px 6px;
}

.faq .at-tab p {
line-height: 28px;
font-size: 19px;
}

.faq .at-title {
cursor: pointer;
background-color: transparent;
position: relative;
transition: background-color 0.3s ease;
padding: 10px 4px 4px;
}

.faq .at-title.active,
.faq .at-title:hover {
background: transparent;
color: #1a3c6e;
}

/* .at-title:hover {
background-color: #e0e0e0;
} */

.faq .at-title:after {
content: "+";
font-family: "Font Awesome 5 Pro";
position: absolute;
top: 50%;
transform:
translateY(-50%);
right: 15px;
color: #1a3c6e;
transition: all 0.3s ease-in-out;
font-size: 26px;
font-weight: 700;
}

.faq .at-title.active:after {
content: "-";
}

.faq .at-item {
border-radius: 0;
margin-bottom: 0px;
border-top: 1px solid #1a3c6e;
}

.faq .at-item:last-child {
border-bottom: 1px solid #1a3c6e;
}

.faq .at-title h2 {
display: flex;
align-items: center;
padding: 6px 1px 5px 0px;
background-color: transparent;
color: #1a3c6e !important;
font-size: 26px;
font-weight: 500;
line-height: 29.99px;
}

.faq .at-tab p {
padding-top: 0 !important;
padding-bottom: 12px !important;
color: #1a3c6e;
}

.faq {
padding-block: 8rem 8rem;
}

.faq>h2 {
text-align: center;
margin-bottom: 3rem;
color: #1a3c6e;
font-size: 42px;
}

.storyWrapinner a.btn-more {
text-decoration: underline !important;
}

.storyWrap a.btn-more {
text-decoration: underline !important;
}

.storyWrap a.btn-more:hover {
text-decoration: none !important;
}

.storyWrapinner p {
min-height: auto !important;
padding-top: 8px;
}

section.main_second_sec2 {
padding-top: 0px;
}