/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    text-transform: none;
    font-style: normal;
    background-color: #fff;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   z-index: 1;
}
h1 {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 30px;
}
h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-24 {
    --bs-gutter-y: 24px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
/*************************
* Header start
*************************/
header.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}
.main-menu ul {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.main-menu ul li {
    position: relative;
    padding: 37px 0;
}
.main-menu ul li a::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #fff;
    transition: all 0.5s;
}
.main-menu ul li:hover a::after, .main-menu ul li.active a::after{
    width: 100%;
}
.main-menu ul li a{
    color: #fff;
    position: relative;
}
.logo img{
    filter: brightness(500) ;
}
.logo {
    max-width: 220px;
}
.Primary-btn{
    overflow: hidden;
    border-radius: 6px;
    border:none;
    color: #000;
    background-color: #fff;
    padding: 10px 30px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.Primary-btn::before{
    content: '';
    background: #010F59;
        position: absolute;
    top: 0;
    left: 0;
    height: 100%;
        width: 135%;
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    transform: translate3d(-100%, 0, 0);
}
.Primary-btn:hover::before {
    transform: translate3d(0,0,0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.Primary-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #010F59;
        width: 105%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.Primary-btn:hover::after {
    transform: translate3d(0,0,0);
    transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.Primary-btn>span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.Primary-btn:hover span{
    color: #fff;
}
.main-nav {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.main-nav .search form {
    position: relative;
}
.main-nav .search form i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #fff;
}
.main-nav .search form .form-control {
    padding: 8px 0;
    padding-left: 26px;
    color: #fff;
    background-color: transparent;
    border: none;
    border-radius: 0;
    width: 260px;
    font-weight: 300;
    font-size: 14px;
    border-bottom: 1px solid #fff;
}
.main-nav .search form .form-control::placeholder {
    color: #e2e1e1;
    font-weight: 300;
    font-size: 14px;
}
.header-side {
    width: 40px;
    height: 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 40px;
    cursor: pointer;
}
.header-side span {
    background-color: #fff;
    height: 2px;
    display: inline-block;
    width: 100%;
}
.header-menu-collaps {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: end;
    cursor: pointer;
    display: none;
}
.header-menu-collaps span{
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color: #fff;
}
.header-menu-collaps span:nth-child(2){
    width: 32px;
}
.header-menu-collaps span:nth-child(3){
    width: 16px;
}
.banner-section {
    position: relative;
}
.banner-section::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-image: url(../images/bannes-shape.svg);
    z-index: 1;
    filter: brightness(500) invert(1);
    transform: rotate(180deg);
}
.banner-slider-box {
    height: 110vh;
    overflow: hidden;
    position: relative;
}
.banner-slider-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgb(0 0 0 / 66%) 13%, rgba(0, 0, 0, 0) 100%);
}
.banner-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: scale(1);
    width: 100%;
    transition: all 15s linear;
}
.slick-slide.slick-current.slick-active .banner-slider-image{
    transform: scale(1.25);
}
.banner-slider-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.banner-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}
h1.heading-text {
    height: 140px;
    width: 40%;
}
.banner-slider-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
        position: relative;
    z-index: 1;
    width: 100%;
    align-items: flex-start;
    color: #fff;
     padding-top: 50px;
}
.banner-slider-content>p{
    margin-bottom: 24px;
    width: 40%;
}
.zoom-in {
    animation: zoom 15s linear;
}
@keyframes zoom {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.25);
    }
}
.counter-box-outer {
    border-radius: 12px;
    padding: 24px;
    background-color: #00000069;
    display: inline-flex;
    align-items: center;
    column-gap: 30px;
    color: #fff;
    margin-top: 30px;
}
.counter-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.counter-box i{
    font-size: 30px;
}
.counter-box p, .counter-box h4{
    margin-bottom: 0;
    font-size: 20px;
}
.counter-box p{
    font-size: 16px;
}
.counter-box h4 span{
    letter-spacing: 1px;
}
.about-section {
    padding: 100px 0;
}
span.heading-subtitle {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #010F59;
    border-bottom: 1px solid #010F59;
    display: inline-block;
    margin-bottom: 10px;
}
.about-cta-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}
.Primary-btn.two {
    border: 1px solid #010F59;
}
.about-cta {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.about-cta .icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #010F59;
}
.about-cta .icon img {
    filter: brightness(50);
}
.about-cta-details h6 {
    margin-bottom: 0;
}
.about-cta-details a {
    color: #000;
}
.about-images {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.about-images img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-images:hover img{
    transform: scale(1.1);
}
.about-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    row-gap: 24px;
}
.sticky-header--cloned.sticky-fixed {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s;
    visibility: visible;
    backdrop-filter: blur(10px);
   background-color: rgb(1 15 89 / 74%);
}
.sticky-fixed {
    box-shadow: 0 7px 50px 0 rgba(0, 0, 0, .1);
    position: fixed  !important;
    transform: translateY(0);
    z-index: 999;
    transition: all 1.5s;
}
.sticky-header--cloned {
    position: fixed !important;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
}
.one-day-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 352px;
    height: 400px;
    margin-bottom: 15px;
}
.one-day-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.one-day-image:hover>img{
    transform: scale(1.1);
}
.one-day-box {
    margin: 0 12px;
}
.one-day-content {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 10px;
    column-gap: 15px;
    justify-content: center;
    width: 100%;
    z-index: 1;
}
.one-day-content img {
    width: 32px;
}
.one-day-title h4 {
    margin-bottom: 0;
}
.one-day-section {
    padding-bottom: 100px;
}
.one-day-image::after {
    content: "";
    position: absolute;
        bottom: 0;
        left: 0;
    height: 150px;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 66%) 13%, rgba(0, 0, 0, 0) 100%);
}
.heading-box {
    margin-bottom: 30px;
}
.about-info .heading-box {
    margin-bottom: 0px;
}
.one-day-box {
    margin: 0 12px;
}
ul.slick-dots {
    column-gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
ul.slick-dots button {
    font-size: 0;
    border: none;
    background-color: #000;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    transition: all 0.5s;
}
ul.slick-dots li.slick-active button {
    width: 20px;
    border-radius: 8px;
}
.snow-track-section {
    padding-bottom: 100px;
}
.grid-box {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 30px;
}
.grid-item {
    grid-column: span 3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
}
.grid-image img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.grid-image h4 {
    position: absolute;
    bottom: 24px;
    margin-bottom: 0;
    color: #fff;
    z-index: 1;
}
.grid-image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(5, 7, 60, 0) 0%, #05073C 100%);
    opacity: 0.5;
}
.grid-item:hover .grid-image img{
    transform: scale(1.1);
}
.grid-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 2;
}
.grid-item:nth-child(3) {
    grid-column: span 5;
}
.grid-item:nth-child(5) {
    grid-column: span 2;
}
.heading-outer {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    row-gap: 15px;
}
.heading-outer h2 {
    margin-bottom: 0;
}
.treading-box {
    width: 200px;
    text-align: center;
}
.treading-image {
    width: 150px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 100%;
    overflow: hidden;
}
.treading-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.treading-image:hover img {
    transform: scale(1.1);
}
.treading-content {
    color: #000;
}
.treading-content h4 {
    margin-bottom: 5px;
    font-size: 18px;
}
.treading-content p{
    font-size: 14px;
}
.treading-section {
    padding-bottom: 100px;
}
.cta-section {
    padding: 100px 0;
    position: relative;
    background-color: #c0c9ff;
}
.cta-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}
.cta-right>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.cta-right .shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    z-index: 1;
}
.cta-right .shape img {
    width: 100%;
    margin-left: -2px;
}
footer {
    padding-top: 60px;
    background-color: #c0c9ff;
}
.footer-logo {
    max-width: 260px;
    margin-bottom: 20px;
}
.about-footer ul.footer-social-media {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-top: 24px;
}
.about-footer ul.footer-social-media li a {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #fff;
    color: #010f59;
}
.about-footer ul.footer-social-media li a:hover {
    background-color: #010f59;
    color: #fff;
}
.footer-menu {
    display: flex;
    column-gap: 40px;
    justify-content: space-around;
}
.footer-menu-box ul li a {
    color: #000;
    position: relative;
}
.footer-menu-box ul li {
    margin-bottom: 12px;
}
.footer-menu-box ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #000;
    transition: all 0.5s;
}
.footer-menu-box ul li a:hover::after {
    width: 100%;
}
.news-latter-inner form {
    position: relative;
}
.news-latter-inner button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: none;
    background-color: #010f59;
    color: #fff;
    height: 44px;
    width: 44px;
    border-radius: 6px;
}
.news-latter-inner .form-control {
    padding: 10px 30px 10px 20px;
    color: #000;
    border: none;
    border-radius: 6px;
}
.footer-lower {
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ffffff75;
}
.footer-lower p {
    margin-bottom: 0;
}
.testimonial-section {
    padding: 100px 0;
}
.testimonial-video {
    height: 100%;
    width: 100%;
}
.testimonial-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.testimonial-right {
    background-color: #c0c9ff;
    border-radius: 6px;
    padding: 24px;
    height: 100%;
}
.testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.testimonial-head img:first-child {
    height: 100px;
    border-radius: 100%;
    border: 10px solid #fff;
}
.testimonial-box p {
    margin-bottom: 24px;
}
.testimonial-box h4 {
    margin-bottom: 0;
}
.testimonial-right{
    position: relative;
}
.testimonial-slider button.slick-arrow {
    position: absolute;
    bottom: 0px;
    right: 30px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 1;
    border: none;
}
.testimonial-slider button.slick-next.slick-arrow {
    right: 140px;
}
.why-choose-section {
    padding-top: 100px;
}
.why-choose-left {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}
.why-choose-box {
    border: 1px solid #010f59;
    border-radius: 12px;
    padding: 24px;
    grid-column: span 6;
    height: 100%;
}
.why-choose-right {
    height: 100%;
}
.why-choose-box .Primary-btn {
    margin-top: 35px;
}
.why-choose-box:last-child{
    grid-column: span 12;
}
.why-choose-box .icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    background-color: #010f59;
    margin-bottom: 15px;
}
.why-choose-box p {
    margin-bottom: 0;
}
.why-choose-box h4 {
    margin-bottom: 12px;
}
/***********************
 * mobile-nav
***********************/
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #56736c49;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: #fff;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
 ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(119 119 119 / 20%);
}
 ul.mobile-menu-list li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
 ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #000000;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 ul.mobile-menu-list .dropdown ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #313131;
 }
 ul.mobile-menu-list .dropdown ul li a {
    padding-left: 35px;
 }
 .mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
 .mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
 }
/***********************
 * side menu
***********************/
.side-menu-wrapper, .add-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}
.side-menu-wrapper.expanded, .add-wrapper.expanded{
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}
.side-menu-wrapper, .edit-member-popup {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}
.side-menu-wrapper.expanded, .edit-member-popup.expanded{
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}
.side-menu-wrapper, .edit-parent-popup {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}
.side-menu-wrapper.expanded, .edit-parent-popup.expanded{
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}
.side-menu-overlay.side-menu-toggler {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000090;
    opacity: 0.9;
    height: 100%;
    width: 100%;
}
.side-menu-content {
    width: 100%;
    max-width: 420px;
    background-color: #fff;
    text-align: left;
    padding: 60px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100%;
    margin-left: auto;
    overflow: hidden;
    overflow-y: auto;
}
.side-menu-wrapper.expanded .side-menu-content{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}
.side-menu-logo-box {
    margin-bottom: 50px;
    max-width: 220px;
}
.locked {
    position: fixed;
    width: 100%;
    top: 0;
}
.side-menu-container p {
    margin-bottom: 30px;
}
.side-menu-container h4{
    margin-bottom: 20px;
}
.side-menu-container ul {
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}
.side-menu-container ul li {
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.side-menu-container ul li i{
    line-height: 0;
    font-size: 20px;
    position: relative;
}
.side-menu-container ul li a{
    color: #000;
}
ul.side-menu-social-media {
    display: flex;
    justify-content: flex-start;
    column-gap: 15px;
}
ul.side-menu-social-media li a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #010f59;
    color: #fff;
    position: relative;
    transition: all 0.5s;
    border: 1px solid #010f59;
}
ul.side-menu-social-media li a::before{
    content: "";
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50% ,-50%);
    height: 0%;
    width: 0%;
    border-radius: 100%;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 0;
}
ul.side-menu-social-media li a:hover::before{
    height: 100%;
    width: 100%;
}
ul.side-menu-social-media li a:hover{
    color: #010f59;
}
.side-menu-toggler {
    position: absolute;
    right: 20px;
    height: 40px;
    width: 40px;
    top: 40px;
}
.side-menu-toggler span {
    height: 1px;
    display: inline-block;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s;
}
.side-menu-toggler span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}
.one-day-content ul {
    display: flex;
    align-items: center;
    color: #fff;
    column-gap: 20px;
    font-size: 18px;
}
.you-tube-section {
    padding-bottom: 80px;
}
.you-tube-box {
    margin: 0 12px;
}
.you-tube-box-inner {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    width: 535px;
}
.you-tube-box-inner iframe {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.preloader {
    position: fixed;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
}
.loading-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    row-gap: 20px;
}
.preloder-fav {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 92px;
    height: 92px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0px 2px 24px 0px #00000014;
    animation-name: preloaderWraper;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
}
@keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}
.preloder-fav .icon{
    position: absolute;
    animation-name: preloader;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
}
@keyframes preloader {
  0% {
    transform: translateY(180%) scale(1);
  }
  50% {
    transform: translateY(0%) scale(1.2);
  }
  100% {
    transform: translateY(-180%);
  }
}
 /* about us  */
 .page-header-section {
    padding: 200px 0 140px;
    background-image: url(../images/banner-2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.page-header-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000082;
}
 .page-header-section p{
    position: relative;
    z-index: 1;
 }
ul.breadcrumb {
    column-gap: 30px;
    padding: 0;
    font-size: 18px;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
    justify-content: center;
}
ul.breadcrumb li{
    position: relative;
}
ul.breadcrumb li::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -20px;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: #fff;
}
ul.breadcrumb li:last-child::after{
    display: none;
}
ul.breadcrumb li a, ul.breadcrumb li span {
    color: #fff;
}
.about-section-one {
    padding: 80px 0;
    position: relative;
}
.about-image img {
    height: 600px;
}
span.sub-title {
    text-transform: uppercase;
    letter-spacing: 0.62em;
    margin-bottom: 12px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
     margin-bottom: 9px;
}
.about-section-one .heading-title {
    margin-bottom: 36px;
}
.heading-title>span {
    color: #010f59;
}
.about-details-one>p {
    margin-bottom: 48px;
}
.about-project-one {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-top: 1px solid #D4D4D4;
    margin-left: -16px;
}
.about-project-one h4 {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(180deg, #434d84bf 13.89%, #a4b1f98c 88.89%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
    width: 50%;
    text-align: center;
    border-right: 1px solid #D4D4D4;
}
.about-project-one p {
    margin-bottom: 0;
    width: 50%;
    padding: 0 50px;
    color: #3B4443;
}
.mission-section {
    padding-bottom: 100px;
}
.heading-two {
    margin-bottom: 30px;
}
.heading-two>span {
    font-family: 'Dancing Script';
    font-size: 24px;
}
.mission-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 30px;
    background-color: #c0c9ff;
}
.mission-box.one .mission-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.mission-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.mission-box:hover .mission-image img{
    transform: scale(1.1);
}
.mission-box.one .mission-content {
    position: relative;
    color: #fff;
    z-index: 1;
}
.mission-box.one .mission-content {
    margin-top: 160px;
}
.mission-box.one::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.712) 0%, rgba(0, 0, 0, 0) 100%);
}
.mission-box.two .mission-image , .mission-box.three .mission-image{
    height: 170px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}
 .mission-box.three .mission-image {
    height: 120px;
 }
.mission-box.two h4, .mission-box.three h4{
    margin-bottom: 12px;
}
.contact-section {
    padding: 80px 0;
    overflow: hidden;
}
.contact-info .heading-box{
    margin-bottom: 37px;
}
.contact-info ul{
    margin: 0;
    padding: 0;
    list-style: none;
    padding-right: 120px;
}
.contact-info ul li{
    display: flex;
    column-gap: 20px;
    align-items: flex-start;
    margin-bottom: 34px;
}
.contact-title h6{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-title p{
    margin-bottom: 0;
}
.contact-info ul li i {
    font-size: 24px;
}
.contact-title a{
    color: #000;
    display: block;
}
.contact-form {
    background-color: #c0c9ff;
    border-radius: 20px;
    padding: 50px;
}
.form-group {
    display: flex;
    column-gap: 50px;
    margin-bottom:20px;
}
.contact-form .form-control {
    background-color: transparent;
    border: none;
  border-bottom: 1px solid #00000057;
    border-radius: 0;
    padding: 0;
    padding-bottom: 11px;
}
.contact-form  textarea.form-control {
    margin-bottom: 20px;
    height: 140px;
}
.contact-box {
    border-radius: 10px;
    padding: 30px 30px;
    height: 457px;
    display: flex;
    align-items: end;
    background-size: cover;
}
.contact-details {
    padding: 35px;
    border-radius: 10px;
    background-color: #fff;
}
.contact-details h4{
    font-size: 25px;
    margin-bottom: 22px;
}
.contact-details p, .contact-details a{
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
}
.location-section {
    padding-bottom: 50px;
}
.about-two {
    padding: 100px 0;
}
.about-left-two {
    position: relative;
}
.about-shape-two {
    position: absolute;
    top: -80px;
    left: -100px;
    z-index: -1;
}
.about-image-video {
    height: 255px;
    width: 255px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    overflow: hidden;
    z-index: 1;
    border: 5px solid #fff;
}
.about-image-video img {
    height: 100%  !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    color: #fff;
    background-color: #243595;
    box-shadow: 0 0 18px #fff;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.about-image-two {
    border-radius: 100%;
    overflow: hidden;
    width: 400px;
    height: 400px;
    margin-left: auto;
    transform: translateY(60px);
}
.about-image-two img {
    height: 100%!important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-image-two:hover img {
    transform: scale(1.1);
}
.about-image-video:hover img {
    transform: scale(1.1);
}
.about-box-outer {
    display: flex;
    column-gap: 16px;
    margin-bottom: 32px;
    margin-top: 24px;
}
.about-box {
    display: flex;
    gap: 12px;
    border-radius: 25px;
        align-items: center;
    padding: 15px;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.about-box .icon {
    width: 68px;
    height: 68px;
    line-height: 65px;
    text-align: center;
    background: #243595;
    border-radius: 50px;
    flex-shrink: 0;
}
.about-box .icon img{
        width: 45px;
    filter: brightness(0) invert(1);
}
.about-content h6 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.about-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 18px;
}
.about-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 30px;
    border-left: 2px solid #243595;
}
.about-right-two>span {
    font-family: "Dancing Script", cursive;
    font-size: 24px;
}
.whychoose-section-two {
    position: relative;
    background-color: #c0c9ff;
    padding: 80px 0;
}
.whychoose-two-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}
.whychoose-two-image img {
    object-fit: cover;
    top: -170px;
    position: absolute;
    z-index: 0;
    transform: scale(1.5);
}
.whychoose-right ul {
    margin-left: 16px;
    padding-left: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    border-left: 1px solid rgb(51 63 132 / 62%);
}
.whychoose-right ul li h4{
    font-size: 60px;
    font-weight: 800;
    line-height: 70px;
    letter-spacing: 0.02em;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.9);
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-family: sans-serif;
}
.whychoose-right ul li>span{
        font-size: 14px;
    line-height: 20px;
    margin-left: auto;
    display: block;
    width: fit-content;
    margin-bottom: 3px;
    color: rgba(0, 0, 0, 0.6);
}
.whychoose-right ul li p{
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    margin: 0px;
}
.whychoose-box-two {
    padding: 12px;
}
.whychoose-box-two .icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    background-color: rgb(1, 15, 89);
    margin-bottom: 15px;
    border-radius: 100%;
}
.whychoose-box-two h4 {
    margin-bottom: 10px;
    font-size: 18px;
}
.whychoose-box-two p {
    margin-bottom: 0;
    font-size: 14px;
}
.cta-two-box {
    position: relative;
    height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #fff;
}
.cta-two-box.gredant {
    background: linear-gradient(202deg,rgba(72, 146, 212, 1) 0%, rgba(12, 61, 168, 1) 100%);
}
.cta-two-box.image{
    background-image: url(../images/cta-two-bg.jpg);
    background-size: cover;
    background-position: center;
}
.cta-two-box.image.two{
    background-image: url(../images/cta-image.png);
}
.cta-two-box.image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000005c;
}
.cta-two-box.gredant-2 {
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%);
}
.cta-two-box .cta-shape-1 ,.cta-two-box .cta-shape-2{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 170px;
}
.cta-two-box .cta-shape-2{
    left: auto;
    right: 0;
    width: 170px;
}
.cta-two-box>span {
    font-family: 'Dancing Script';
    margin-bottom: 10px;
    display: inline-block;
    font-size: 18px;
    position: relative;
    z-index: 1;
}
.cta-two-box h4 {
    margin-bottom: 55px;
    font-size: 35px;
}
.cta-two-box h4 span {
    font-size: 55px;
}
.cta-shape-3 {
    position: absolute;
    left: -150px;
    bottom: 40px;
}
.cta-slider-section {
    padding: 60px 0;
}
.testimonial-two {
    padding-bottom: 100px;
    padding-top: 40px;
    position: relative;
}
.thumb-inner {
    position: absolute;
    left: 0px;
    right: 0px;
    height: 380px;
    top: 52%;
    transform: translateY(-50%);
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    z-index: -1;
}
.thumb-inner .thumb {
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    border: 5px solid #fff;
}
.thumb-inner .thumb.thumb-1 {
    left: 55px;
    top: 0px;
}
.thumb-inner .thumb.thumb-2 {
    left: 0px;
    top: 162px;
}
.thumb-inner .thumb.thumb-3 {
    left: 55px;
    bottom: -25px;
}
.thumb-inner .thumb.thumb-4 {
    right: 55px;
    top: 0px;
}
.thumb-inner .thumb.thumb-5 {
    right: 0px;
    top: 162px;
}
.thumb-inner .thumb.thumb-6 {
    right: 55px;
    bottom: -25px;
}
.testimonial-box-two {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
.testimonial-box-inner {
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 10px;
    transform: scale(0, 0);
    transition: all 500ms ease;
}
.slick-slide.slick-current.slick-active .testimonial-box-inner{
    transform: scale(1, 1);
}
.testimonial-item-two {
    padding: 120px 0;
}
.testimonial-box-inner .shape-1 {
    position: absolute;
    background: #fff;
    width: calc(100% - 60px);
    height: 100%;
    left: 30px;
    top: 30px;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 10px;
}
.testimonial-box-inner .shape-2 {
    position: absolute;
    background: #fff;
    width: calc(100% - 120px);
    height: 100%;
    left: 60px;
    top: 60px;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1);
    z-index: -2;
    border-radius: 10px;
}
.testimonial-box-inner p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 44px;
}
.testimonial-lower {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
}
.testimonial-lower .title {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.testimonial-lower .title h4, .testimonial-lower .title p {
    margin-bottom: 0;
}
.testimonial-lower .title p {
    color: #333f84;
}
.testimonial-lower .icon {
    font-size: 90px;
    line-height: 50px;
    color: #c0c9ff;
}
.testimonial-slider-two ul.slick-dots {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.testimonial-slider-two{
    margin-top: -90px;
}
.team-section {
    padding-bottom: 80px;
}
.team-box {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.team-box.heading {
    background-color: #c0c9ff;
    padding: 24px;
}
.team-details{
    padding: 16px;
}
.team-details h4{
    margin-bottom: 5px;
}
.team-details p{
    margin-bottom: 0;
    color: #434d84;
}
.team-image {
    height: 350px;
    overflow: hidden;
}
.team-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.team-box:hover .team-image img{
    transform: scale(1.1);
}
.team-box.heading .heading-two {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 10px;
}
.contact-info-box {
    padding: 24px;
    border-radius: 12px;
    background-color: #c0c9ff;
    transition: all 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.contact-info-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 12px #0000006a;
}
.contact-info-box .icon{
    height: 80px;
    width: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #434d84;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}
.contact-info-box h4{
    margin-bottom: 12px;
}
.contact-info-box a{
    color: #000;
    font-size: 18px;
}
.contact-info-section {
    padding-top: 80px;
}
.social-media ul {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: space-evenly;
}
.social-media {
    border-radius: 20px;
    background-color: #c0c9ff;
    padding: 24px;
}
.social-media ul li a {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
    position: relative;
    background-color: #434d84;
}
.social-media ul li a:hover{
    background-color: #fff;
    color: #434d84;
}
.contact-right {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
}
.contact-right .contact-image{
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.contact-right .contact-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.team-section-two {
    padding: 80px 0;
}
.main-team-image {
    border-radius: 20px;
    overflow: hidden;
}
.main-team-image img{
    width: 100%;
}
.founder-box {
    padding: 30px 30px 0px 30px;
    background-color: #c0c9ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 100px;
}
.founder-image {
    width: 500px;
    text-align: center;
}
.founder-content h2 {
    margin-bottom: 0;
}
.founder-content span {
    margin-bottom: 40px;
    display: inline-block;
}
.social-media-two ul{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.social-media-two ul li a{
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
    position: relative;
    background-color: #434d84;
}
.social-media-two ul li a:hover{
    background-color: #fff;
    color: #434d84;
}
.team-image-two {
    margin-bottom: 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.5s;
    position: relative;
}
.team-image-two img {
    transition: all 0.5s;
}
.team-details-two h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}
.team-details-two p {
    font-size: 16px;
    color: rgb(102 102 102 );
}
.team-box-two:hover .team-image-two {
    border-radius: 140px 140px 12px 12px;
}
.w-20 {
    width: 20%;
}
.all-team-section {
    padding-bottom: 100px;
}
.tour-section {
    padding: 100px 0;
    position: relative;
    background-image: url(../images/tour-bg.jpg);
        background-size: cover;
    background-position: center;
}
.tour-left {
    padding-right: 40px;
        position: sticky;
    top: 120px;
}
.tour-right {
    overflow: hidden;
}
.tour-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 24px;
    border: 1px dashed #010F59;
    border-radius: 12px;
    transition: all 0.5s;
    margin-bottom: 30px;
}
.tour-box:last-child{
    margin-bottom: 0;
}
.tour-box:hover{
        border-color: transparent;
    background-color: #c0c9ff7a;
}
.tour-image {
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    max-width: 280px;
}
.tour-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.tour-image:hover img {
    transform: scale(1.1);
}
.tour-content h4 {
    font-size: 20px;
    margin-bottom: 0;
    color: #010F59;
}
.tour-content>span {
    color: #010F59;
    margin-bottom: 15px;
    display: inline-block;
}
.tour-content .lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tour-content p {
    font-size: 14px;
    margin-bottom: 20px;
}
.tour-content .lower p {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin-bottom: 0;
}
.tour-content .lower p span {
    color: #010F59;
    font-size: 24px;
    font-weight: 600;
}
.tour-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}
.pt-100{
    padding-top: 100px;
}
.tour-details-banner {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 600px;
}
.tour-details-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100%;
}
.tour-details-slider ul.slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.tour-details-slider ul.slick-dots button {
    background-color: #fff;
}
.tour-details-slider .tour-details-slider-inner{
    height: 100% !important;
}
.tour-details-slider .slick-list.draggable {
    height: 100% !important;
}
.tour-details-slider .slick-list.draggable .slick-slide ,.tour-details-slider .slick-list.draggable .slick-track div, .tour-details-slider .slick-list.draggable .slick-track, .tour-details-slider .slick-list.draggable .slick-track .tour-details-item{
    height: 100% !important;
}
.tour-details-slider .slick-list.draggable .slick-track .tour-details-item img{
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}
.tour-details-heading {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tour-details-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000082;
}
ul.slick-dots {
    z-index: 111;
}
.excerpt {
  --lines: 4;
  line-height: 1.6;
  position: relative;
}
.excerpt .text {
  display: -webkit-box;
  -webkit-line-clamp: var(--lines); 
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.excerpt .read-less { display: none; cursor:pointer; color:#010f59; }
.excerpt .read-more { display: inline-block; cursor:pointer; color:#010f59; }
.excerpt.expanded .text {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.excerpt.expanded .read-more { display: none; }
.excerpt.expanded .read-less { display: inline-block; }
.tour-details-section {
    padding: 100px 0;
}
.tour-details-left h2 {
    font-size: 30px;
    margin-bottom: 0;
}
.tour-box-outer-two {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #010f59;
    margin-bottom: 30px;
}
.tour-box-two {
    flex: 1;
    border-radius: 8px;
    padding: 16px;
    background-color: #c0c9ff;
    text-align: center;
}
.tour-box-two .icon {
    margin: auto;
    margin-bottom: 10px;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #010f59;
}
.tour-box-two .icon img {
    max-width: 30px;
}
.tour-box-two h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.tour-box-two p {
    margin-bottom: 0;
}
.tour-details-left>h4 {
    margin-bottom: 12px;
}
.excerpt p.text {
    margin: 0;
}
.tour-sidebar {
    padding: 30px;
    border-radius: 10px;
    background-color: #c0c9ff;
}
.tour-sidebar h4 {
    font-size: 35px;
    line-height: 1;
    color: #010f59;
}
.tour-sidebar h4 sub {
    font-size: 18px;
    bottom: 0;
}
.tour-sidebar ul li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex: 1;
}
.tour-sidebar ul li span {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #010f59;
}
.tour-sidebar ul li span img {
    max-width: 25px;
}
.tour-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 25px;
    margin-bottom: 30px;
}
.button-swing{
 cursor: pointer;
  display: inline-block;
  transform-origin: top center; /* Swing like a bell from top */
  animation: bell 2s infinite ease-in-out;
  transition: transform 0.2s;
}
.button-swing:hover{
   animation: none; /* stops on hover */
 transform: scale(1.05);

}
@keyframes bell {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-12deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-8deg); }
  50% { transform: rotate(6deg); }
  60% { transform: rotate(-4deg); }
  70% { transform: rotate(2deg); }
  80% { transform: rotate(-1deg); }
  90% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.tour-tab-top h4 {
    margin-bottom: 20px;
}
.tour-tab-button-box {
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    border: 3px solid transparent;
    width: 250px;
    flex-shrink: 0;
}
.tour-tab-section {
    padding: 60px 0;
    background-color: #c0c9ff;
    margin-bottom: 50px;
}
.tour-tab-button-box .lower {
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
}
.tour-tab-button-box .image{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px #00000046;
    margin-bottom: 10px;
}
.tour-tab-button-box .image img{
    width: 100%;
    object-fit: cover;
    height: 136px !important;
}
.tour-tab-button-box.active {
    border-color: #010f59;
}
.tour-tab-button-box .lower p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.tour-tab-button-box .lower p img {
    max-width: 30px;
    filter: brightness(0);
}
.tour-tab-button-box h5 {
    margin-bottom: 0;
}
.tour-tab-top {
  display: flex;
  column-gap: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #010f59 #fff; 
  padding-bottom: 10px;
}
.tour-tab-top::-webkit-scrollbar {
  height: 8px; 
}
.tour-tab-top::-webkit-scrollbar-track {
  background: #fff;  
  border-radius: 10px;
}
.tour-tab-top::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #010f59, #2336a0); 
  border-radius: 10px;
  border: 2px solid #fff; 
}
.tour-tab-content {
    margin-top: 20px;
}
.tour-tab-content-inner h4 {
    margin-bottom: 18px;
}
.tour-month {
    padding: 6px 10px;
    border-radius: 8px;
    color: #010f59;
    border: 1px solid #010f59;
    transition: all 0.5s;
    background-color: #fff;
}
.tour-month-outer {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}
.tour-date-outer .tour-date {
    display: none;
}
.tour-date-inner {
    margin-right: 15px;
    height: 42px;
    width: 42px;
    border-radius: 100%;
    font-size: 18px;
    color: #010f59;
    border: 2px solid #9b9797;
    background-color: #fff;
    box-shadow: none;
    outline: none;
    line-height: normal;
}
.tour-month.active {
    background-color: #010f59;
    color: #fff;
}
.tour-date-outer .tour-date:first-child {
    display: block;
}
.tour-date-inner.active {
    border-color: #010f59;
}
.tour-details-tab-section {
    margin-bottom: 50px;
    padding: 60px 0;
    background-color: #c0c9ff;
}
.nav-pills {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 30px;
    column-gap: 30px;
}
.nav-pills .nav-link.active {
    background-color: #010f59;
    color: #fff;
}
.nav-pills .nav-link {
    border: 1px solid #010f59;
    color: #010f59;
}
.tab-content h4 {
    margin-bottom: 18px;
}
.accordin-box {
    display: flex;
    column-gap: 20px;
    margin-bottom: 30px;
    position: relative;
}
.accordin-box::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 24px;
    height: 100%;
    width: 1px;
    border-right: 1px dashed #010f59;
}
.accordin-box:last-child::after{
    display: none;
}
.accordin-box:last-child{
    margin-bottom: 0;
}
.accordin-box .icon {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #010f59;
    flex-shrink: 0;
        position: relative;
    z-index: 1;
}
.accordin-box .icon img {
    max-width: 35px;
}
.accordin-content ul li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 26px;
}
.accordin-content ul {
    margin-bottom: 20px;
}
.accordin-content ul li::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../images/point.svg);
}
.accordin-image-outer {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.accordin-image-outer .accordin-image {
    width: 23%;
    border-radius: 12px;
    overflow: hidden;
}
.accordin-image-outer .accordin-image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.accordin-image-outer .accordin-image:hover img {
    transform: scale(1.1);
}
.accordin-content .head {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordin-content .head h4 {
    margin-bottom: 0;
}
.accordin-content .head .head-icon {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #c0c9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #010f59;
    transform: rotate(-180deg);
    transition: all 0.5s;
    flex-shrink: 0;
}
.tab-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
}
.accordin-content {
    max-height: 70px;
    width: 100%;
    overflow: hidden;
}
.accordin-box.active .accordin-content{
    max-height: 1000px;
    width: 100%;
    transition: all 1s;
}
.accordin-box.active .accordin-content .head .head-icon{
    transform: rotate(0deg);
}
.Inclusion-box {
    margin-bottom: 30px;
}
.Inclusion-box ul li {
    margin-bottom: 5px;
    padding-left: 26px;
    position: relative;
}
.Inclusion-box ul li::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../images/point.svg);
}
.sign-up-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: scale(0);
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
    opacity: 0;
    display: flex;
}
.sign-up-popup.expanded {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}
.sign-up-popup .sign-up-toggle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}
.sign-up-content {
    width: 750px;
    margin: auto;
    background-color: #fff;
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 90vh;
    padding: 40px;
}
.sign-up-outer {
    height: auto;
    /*overflow-y: scroll;*/
        padding-right: 20px;
            width: 100%;
}
.sign-up-outer::-webkit-scrollbar {
  width: 6px;
}
.sign-up-outer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.sign-up-outer::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.sign-up-outer::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.sign-up-logo {
    max-width: 250px;
    margin: auto;
    margin-bottom: 20px;
}
.login-inner h4 {
    font-size: 20px;
}
.form-group-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
    margin-bottom: 24px;
}
.from-group {
    width: 100%;
}
.from-group .form-control {
    padding: 12px 16px;
    color: #1A141F;
    border-color: #E9E9EB;
    border-radius: 0;
}
.from-group .form-control::placeholder{
    color: #8F8E8A;
}
.form-group-outer label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #1A141F;
}
.sign-up-button .Primary-btn span{
    justify-content: center;
}
.opt-verify h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}
.opt-verify p {
    font-size: 18px;
    margin-bottom: 37px;
    display: flex;
    column-gap: 8px;
}
.otp-input-wrapper {
    display: flex;
    align-items: center;
    column-gap: 29px;
    justify-content: center;
    margin-bottom: 20px;
}
.otp-input-wrapper .otp-input {
    height: 44px;
    width: 42px;
    border: 1px solid #E9E9EB;
    border-radius: 0;
    padding: 14px;
}
.opt-verify {
    text-align: center;
}
.opt-verify p {
    justify-content: center;
}
.opt-verify p a {
    color: #010f59;
}
.total-parson {
    margin-top: 50px;
        padding: 30px;
    background-color: #fff;
    border-radius: 12px;
}
.table-heding{
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.table-heding h4{
    margin-bottom: 0;
}
table.responsive-table {
    width: 100%;
}
table.responsive-table thead tr {
    border-bottom: 1px solid #E5E7EB;
}
table.responsive-table thead tr th{
    background-color: #F2F4F6;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 18px;
}
.total-parson-list {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0px 0.71px 1.43px 0px #0000000D;
        overflow: overlay;
    overflow-x: scroll;
}
table.responsive-table tbody tr td{
    padding: 12px 16px;
}
table.responsive-table tbody tr{
    border-bottom: 1px solid #E5E7EB;
}
table.responsive-table tbody tr:last-child{
    border-bottom: 0;
}
.add-wrapper-content {
    width: 100%;
    max-width: 480px;
    background-color: #fff;
    text-align: left;
    padding: 60px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100%;
    margin-left: auto;
    overflow: hidden;
    overflow-y: auto;
}
.add-wrapper.expanded .add-wrapper-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}
.edit-member-popup-content {
    width: 100%;
    max-width: 480px;
    background-color: #fff;
    text-align: left;
    padding: 60px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100%;
    margin-left: auto;
    overflow: hidden;
    overflow-y: auto;
}
.edit-member-popup.expanded .add-wrapper-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}
.edit-parent-popup-content {
    width: 100%;
    max-width: 480px;
    background-color: #fff;
    text-align: left;
    padding: 60px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100%;
    margin-left: auto;
    overflow: hidden;
    overflow-y: auto;
}
.edit-parent-popup.expanded .add-wrapper-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}
.add-new-menber-form .from-group {
    margin-bottom: 20px;
}
.section-404 {
    padding: 210px 0;
    text-align: center;
    background-image: url(../images/404-bg.jpg);
    background-size: cover;
    background-position: 42% 34%;
    padding-top: 120px;
}
.section-404 h2 {
    font-size: 36vh;
}
/* sign up / login popup  */
.sign-up-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: scale(0);
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
    opacity: 0;
    display: flex;
}
.sign-up-popup.expanded {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}
.sign-up-popup .sign-up-toggle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}
.sign-up-content {
    width: 900px;
    margin: auto;
    background-color: #fff;
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 90vh;
}
.sign-up-left {
    width: 712px;
    flex: 1;
    padding: 50px 60px;
        height: auto;
    /*overflow-y: scroll;*/
}
.sign-up-right {
    width: 547px;
    flex: 1;
}
.sign-up-slider-box {
    position: relative;
    height: 90vh;
}
.sign-up-slider-box .logo-box {
    position: absolute;
    top: 30px;
    left: 30px;
}
.sign-up-slider-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.tab-button button {
    border: 1px solid #1A141F;
    color: #1A141F;
    background-color: #fff;
    padding: 10px 75px;
    font-weight: 500;
    transition: all 0.5s;
}
.tab-button button.active, .tab-button button:hover{
    background-color: #010f59;
    border-color: #010f59;
    color: #fff;
}
.tab-content h4{
    font-size: 18px;
    color: #3D3D3D;
    font-weight: 400;
    margin-bottom: 30px;
}
.form-group-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
    margin-bottom: 12px;
}
.from-group {
    width: 100%;
}
.form-group-outer .form-control {
    padding: 12px 16px;
    color: #1A141F;
    border-color: #E9E9EB;
    border-radius: 0;
}
.form-group-outer .form-control::placeholder{
    color: #8F8E8A;
}
.form-group-outer label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #1A141F;
}
.otp-input-wrapper {
    display: flex;
    align-items: center;
    column-gap: 29px;
    margin-bottom: 8px;
}
.otp-input-wrapper .otp-input {
    height: 44px;
    width: 42px;
    border: 1px solid #E9E9EB;
    border-radius: 0;
    padding: 14px;
}
.from-group p {
    margin-bottom: 0;
    font-size: 14px;
    color: #8F8E8A;
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.from-group p a {
    text-decoration: underline;
    color: #203738;
}
.sign-up-button button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    background-color: #010f59;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
}
.remainder-box {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 14px;
}
.remainder-box p {
    margin-bottom: 0;
    color: #8F8E8A;
    font-size: 14px;
}
.remainder-box input[type="checkbox"] {
    height: 18px;
    width: 18px;
    flex-shrink: 0;
}
.remainder-box p a {
    color: #203738;
    text-decoration: underline;
}
.other-login-option {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
}
.other-login-option a {
    padding: 12px;
    width: 230px;
    border-radius: 6px;
    border: 1px solid #DAE4F1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    color: #000C1F;
}
.form-devider {
    text-align: center;
    position: relative;
    margin-top: auto;
    margin-bottom: 20px;
}
.form-devider::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #E9E9EB;
}
.form-devider span{
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.sign-up-left::-webkit-scrollbar {
  width: 6px;
}
.sign-up-left::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.sign-up-left::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.sign-up-left::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.sign-up-outer {
    display: flex;
    flex-direction: column;
}
.sign-up-slider ul.slick-dots {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 0;
    position: absolute;
    bottom: 30px;
    z-index: 1;
    width: 100%;
}
.sign-up-slider ul.slick-dots li button{
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: #1A141F;
}
.sign-up-slider ul.slick-dots li.slick-active button{
    background-color: #fff;
}
.opt-verify {
    margin-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.opt-verify h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}
.opt-verify p {
    font-size: 18px;
    margin-bottom: 37px;
    display: flex;
    column-gap: 8px;
}
button.Verify-btn {
    margin-top: 40px;
    margin-bottom: 17px;
    width: 60%;
    border: none;
    padding: 12px;
    border-radius: 8px;
    background-color: #203738;
    color: #fff;
}
.opt-verify p a {
    color: #203738;
    text-decoration: underline;
}
.opt-verify p:last-child {
    margin-bottom: 0;
}
.opt-verify{
    display: none;
}
 /* Style the select wrapper */
.custom-select {
    appearance: none;       /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 16px;
    padding: 10px 40px 10px 12px; /* space for arrow */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

/* Optional: hover/focus styles */
.custom-select:focus {
    border-color: #888;
    outline: none;
}

.contact-form select{
    background: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
}
.member-action{
    display: flex;
    gap: 12px;
}
.member-action i{
    background: #010f59;
    padding: 10px;
    color: white;
    border-radius: 50%;
    font-size: 14px;
}
#add-member-form input , #add-member-form select{
    margin-top:10px;
}

#add-member-form .form-group-outer label {
   margin-bottom:0px;
}
#edit-parent-form .from-group + .from-group{
    margin-top:20px;
}
#edit-parent-form  label{
    margin-bottom: 10px;
}
#edit-parent-form .Primary-btn.two:hover,
#edit-parent-form .Primary-btn.two:hover {
  color: #fff;
}
small{
    display: block;
}

/* === Booking Success Popup === */
.booking-success-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.booking-success-popup.show {
  opacity: 1;
  visibility: visible;
}

.booking-success-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.booking-success-popup.show .booking-success-content {
  transform: scale(1);
}

/* === Animated Checkmark === */
.booking-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.checkmark-circle {
  stroke: #010f59;
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-miterlimit: 10;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke: #00b894;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* === Text and Button === */
.booking-success-content h2 {
  color: #010f59;
  font-size: 24px;
  margin: 10px 0 8px;
}

.booking-success-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.booking-success-content .close-popup {
  background: linear-gradient(135deg, #010f59, #c0c9ff);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.booking-success-content .close-popup:hover {
  opacity: 0.9;
}
input[type="search"]::-webkit-search-cancel-button {
    filter: invert(1);
}
input[type="search"]::-webkit-search-cancel-button {
    filter: brightness(0) invert(1);
}
.nf-search-wrapper input{
    border: none;
}