@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kanit: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');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primarycolour: #41695e;
    --secondarycolour: #000;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    /* color: #000; */
}

a:focus {
    background-color: transparent;
}

p {
    font-size: 18px;
}

img {
    width: 100%;
}

.navbar-brand img {
    width: 200px;
}

.social-links i {
    padding: 0px 5px;
}

.social-links a {
    color: var(--secondarycolour);
}

.social-links a:hover {
    color: var(--primarycolour);
}

.navbar-light .navbar-nav .nav-item a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    /* opacity: 1; */
}

.navbar-nav .nav-item a:hover {
    color: #f8c503 !important;
}

.align-center {
    align-items: center;
}

.login-button .btn {
    font-size: 14px;
    background: #fff;
    border-color: #be9b0b;
    /* padding: 5px 30px; */
    color: #000;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

.login-button .btn:hover {
    background-color: #be9b0b;
    border: 1px solid #be9b0b;
}

.login-button {
    padding: 10px;
}

.dropdown-item:focus .dropdown-item :hover {
    background-color: #000;
    color: #fff;
}

.banner {
    background-image: url(./img/main-slider.jpg);
    background-repeat: no-repeat;
    background-position: cover;
    background-size: 100% 100%;
    height: 550px;
    position: relative;
}

.banner h1 {
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    position: absolute;
    top: 10%;
    text-shadow: 0 0 30px #000;
    left: 20%;

}

.banner .btn {
    position: absolute;
    bottom: 30%;
    font-size: 20px;
    background: #f8c503;
    border-color: #f8c503;
    padding: 5px 50px;
    color: #000;
    font-weight: 500;
}

.banner .btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}
.calendar-container {
  text-align: center;
  margin: 20px 0;
}

iframe {
  border-radius: 10px;
}



.content-section h2 {

    font-family: "Kanit", sans-serif;
    color: #000;
    font-size: 48px;
    font-weight: 400;
    text-align: center;

}

.content-section .main-section img {
    width: auto;
    margin: 0 auto;
}

.content-section .main-section {
    text-align: center;
}

.content-section h2 span {
    color: #41695e;
    font-weight: 600;
}

.content-section h3 {
    color: #a84e4e;
}

.advent-section h5 {
    text-align: center;
    padding: 15px 0;
}

.advent-section p {
    text-align: center;
}

.advent-section img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.advent-section img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.main-btn {
    text-align: center;
}

.main-btn a {
    background-color: #a84e4e;
    color: #fff;
    font-size: 20px;
    padding: 10px 70px;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.main-btn a:hover {
    color: #fff;
    background-color: #000;
}

.main-btn a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .3;
    z-index: 9;
    content: '';
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 180deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 180deg) translate3d(0, 100%, 0);
}

.main-btn a:hover:before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 180deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 180deg) translate3d(0, -100%, 0);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: flex;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
/* Add this to your custom stylesheet or inside a <style> tag */
.gallery-item.glightbox .gslide .gprev,
.gallery-item.glightbox .gslide .gnext {
    background-color: rgba(0, 0, 0, 0.5); /* Darker background for the buttons */
    color: white; /* White arrow icons */
}

.gallery-item.glightbox .gprev:hover,
.gallery-item.glightbox .gnext:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
}

.adventure {
    background-image: url(./img/adv-bg.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    height: auto;
    position: relative;

}

.adventure h2 {
    text-align: left;
}

.adventure h2 span {
    color: #41695e;
}

.adventure ul li {
    font-size: 18px;
    color: #41695e;
    line-height: 35px;
}

.camp-section {
    background-image: url(./img/camfire.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;

}

.camp-section h2 {
    color: #fff;
    text-align: center;
    font-size: 60px;
}

.camp-section h4 {
    color: #fff;
    text-align: center;
}

.camp-section p {
    color: #fff;
    text-align: center;
}

.hike-content {
    padding: 0 5%;
}

.hike-content h2 {
    text-align: left;
}

.hike-content a {
    width: 100%;
}

.hike-content.cyc h2 {
    font-size: 46px;
}

.holiday-section {
    background-image: url(./img/snow-hills.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    height: 350px;
    position: relative;


}

.holiday-section h3 {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    text-align: center;
}

.holiday-section h4 {
    text-align: center;
}

.simple-link {
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #626570;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.simple-link:before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #626570;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
}

.simple-link:hover:before {
    width: 0%;
}

.simple-link a {
    text-decoration: none;
}

.simple-link:hover {
    color: #a84e4e;
}

.footer {
    background-image: url(./img/bg-footer.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;

}

.footer .useful-links {
    display: flex;
    flex-direction: column;
    /* align-items: center;    */
}

.footer .useful-links h5 {
    color: var(--primarycolour);
    /* text-align: center; */
}

.footer .useful-links a {
    text-align: left;
    color: #000;
    /* text-align: center; */
    text-decoration: none;
}

.footer .useful-links a:hover {
    color: var(--primarycolour);
}

.footer .foot-logo {
    text-align: center;
}

.footer .foot-logo img {
    width: 300px;
}

.in-banner {
   background-image: url(./img/abt-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
    position: relative;
}

.in-banner h1 {
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    text-shadow: 0 0 30px #000;
    left: 50px;

}

.abt-content h2 {
    text-align: left;
}

.summer h5 {
    text-align: center;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    text-align: center;
    font-size: 25px;
}

.summer p {
    text-align: center;
}

.spring {
    background-image: url(./img/munnar-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
    position: relative;
    background-attachment: fixed;
}

.spring:before {

    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;

}

.spring-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.spring-content h2 {
    color: #fff;
    font-size: 45px;
}

.spring-content h2 span {
    color: #c7a3f7;
}

.service-content {
    text-align: center;
}

.service-content img {
    width: auto;
}

.bg-section {
    background-image: url(./img/bg-section.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
    position: relative;
    background-attachment: fixed;

}

.bg-section h2 {
    position: relative;
    color: #fff;
    top: 50px;
}

.bg-section p {
    text-align: center;
    position: relative;
}

.card-content h4 {
    text-align: center;
}

.card-section img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card-section img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.advantages .col-lg-2 {
    text-align: center;
    background: #f5f5f5;
    padding: 15px;
    border-right: 5px solid #fff;
}

.advantages .col-lg-2:hover {
    background-color: #41695e;
}

.advantages .col-lg-2:hover h3 {
    color: #fff;
}

.advantages img {
    text-align: center;
    width: 40%;
}

.advantages h3 {
    text-align: center;
    font-size: 18px;
    padding-top: 15px;
}

.cosmo {
    background-image: url(./img/cosmo-banner.jpg);
}

.cosmos-bg {
    background-image: url(./img/model-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
    position: relative;
    background-attachment: fixed;
}

.cosmos-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;

}

.cosmos-bg h2 {
    position: relative;
    color: #fff;
    top: 50px;

}

.cosmos-bg .main-btn {
    position: relative;
    bottom: -70px;
}

.price-bg {
    background-color: #41695e;
    color: #fff;
}

.price-bg h2,
.price-bg h2 span {
    color: #fff;
}

.privilege .price-bg {
    background-color: #a571ea;
}

.privilege.advantages .col-lg-2:hover {
    background-color: #a571ea;
}

.privilege h2 span {
    color: #a571ea;
}

.in-banner.privilege {
    background-image: url(./img/home1.jpg);
}

.in-banner.provincial {
    background-image: url(./img/home1.jpg);
}

.provincial .price-bg {
    background-color: #cb70c2
}

.content-section .provincial h2 span {
    color: #cb70c2;
}

.provincial.advantages .col-lg-2:hover {
    background-color: #cb70c2;
}

.contact .c-box {
    background-color: #41695e;
    position: relative;
    padding: 40px 20px 90px;
    text-align: center;
    min-height: 248px;
}

.contact .c-box:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    border-color: rgba(255, 255, 255, 0.4) !important;
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    /* height: -webkit-calc(100% - 10px); */
    height: -moz-calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid;
    border-bottom: 0px;
}

.contact .c-box:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -30px;
    width: 60px;
    height: 60px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
}

.contact .c-box h4 {
    color: #fff;
}

.contact .c-box p {
    color: #fff;
    margin-bottom: 0;
    position: relative;
}

.contact .col-lg-4 {
    text-align: center;
    font-size: 28px;
}

.contact .col-lg-4 i {
    position: relative;
    top: -30px;
    color: #41695e;
}

.form-action .btn {
    line-height: 63px;
    padding: 0px 50px 0px 50px;
    border-radius: 63px 63px 63px 63px;
    font-size: 20px;
    background-color: var(--primarycolour);
    color: #fff;
}

.contact .c-box a {
    position: relative;
    color: #fff;
    font-size: 18px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000 !important;
}

.in-banner.ooty {
    background-image: url(./img/ooty-banner.jpg);
}

.ooty .abt-content,
.ooty .abt-content h2 {
    text-align: center;
}

.ooty .summer ul li {
    display: inline-block;
    padding: 6px;
    color: #000;
    background-color: #9ddccb;
    font-weight: 500;
}

.ooty .spring {
    background-image: url(./img/ooty-sub-banner.jpg);
}

.marayoor .spring {
    background-image: url(./img/m-banner.jpg);
}

.courtallam.spring {
    background-image: url(./img/kutrallam.jpg);
}

.white-house img {
    min-height: 378px;
    object-fit: cover
}

.wood-house img {
    min-height: 260px;
}

.ooty .spring.wood {
    background-image: url(./img/ooty-su-banner-2.jpg);
}

.in-banner.kodai {
    background-image: url(./img/kodai-sub-banner.jpg);
}

.kodai .spring {
    background-image: url(./img/kodai-banner.jpg);
}

.kodai .spring h2 span {
    color: #04d63c;
}

.kodai .summer ul li {
    display: inline-block;
    padding: 6px;
    color: #000;
    background-color: #9ddccb;
    font-weight: 500;
}

.kodai .abt-content,
.kodai .abt-content h2 {
    text-align: center;
}

.munnar .summer ul li {
    display: inline-block;
    padding: 6px;
    color: #000;
    background-color: #9ddccb;
    font-weight: 500;
}

.in-banner.munnar {
    background-image: url(./img/munnar.jpg);
}

.in-banner.court {
    background-image: url(./img/courtallam-banner.jpg);
}

.court .spring {
    background-image: url(./img/kutralam.jpg);
}

.court .summer ul li {
    display: inline-block;
    padding: 6px;
    color: #000;
    background-color: #9ddccb;
    font-weight: 500;
}

.price-bg .currency {
    color: #fff !important;
}

.marquee-section img {
    width: 10%;
}

.l-cabin img {
    min-height: 260px;
    object-fit: cover;
}

.marayoor .summer ul li {
    display: inline-block;
    padding: 6px;
    color: #000;
    background-color: #9ddccb;
    font-weight: 500;
}

.concept-house img {
    width: 100%;
}

.concept-house p {
    text-align: left;
}

.offer-banner {
    background-image: url(./img/offers.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
    position: relative;
}

.offer-banner h1 {
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    text-shadow: 0 0 30px #000;
    left: 50px;
}

.login-button a {
    color: #000;
    text-decoration: none;
}

.login-button a:hover {
    color: #fff;
}

.kodai img {
    min-height: 465px;
    object-fit: cover;
}

.munnar img {
    min-height: 349px;
    object-fit: cover;
}

.court img {
    min-height: 220px;
    object-fit: cover;
}

.wayanad-banner {
    background-image: url(./img/wayanad.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
    position: relative;
}

.wayanad-banner h1 {
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    text-shadow: 0 0 30px #000;
    left: 50px;
}

.wayanad img {
    min-height: 222px;
    object-fit: cover;
}

.masinakudi-banner {
    background-image: url(./img/masinakudi.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
    position: relative;
}

.masinakudi-banner h1 {
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    text-shadow: 0 0 30px #000;
    left: 50px;
}

.masinakudi img {
    min-height: 222px;
    object-fit: cover;
}

.marayoor-banner {
    background-image: url(./img/marayoor-banner.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
    position: relative;
}

.marayoor-banner h1 {
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    text-shadow: 0 0 30px #000;
    left: 50px;
}
.lanka-spring {
    background-image: url(./img/Ella-Kandy-Sri-Lanka.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
    position: relative;
    background-attachment: fixed;
}

.lanka-spring:before {

    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;

}

.lanka-spring-content {
    position: relative;
    color: #fff;
    text-align: center;
}
.lanka-spring-content h2 {
    color: #fff;
    font-size: 45px;
}

.lanka-spring-content h2 span {
    color: #9ddccb;
}
.lanka .summer ul li {
    display: inline-block;
    padding: 6px;
    color: #000;
    background-color: #9ddccb;
    font-weight: 500;
}
/* .abt-content{
    background-image: url(./img/Sri-Lanka-Map.png );
    background-position: center center;
    background-size: cover;
} */
.in-banner.lanka{
    background-image: url(./img/srilanka\ image2.jpeg);
    height: 450px;
    }
    .in-banner.combodia{
        /* background-image: url(./img/cambodia.jpeg);  */
        height: 450px;
        }
        .in-banner.jingshang{
           background-image: url(./img/combodia/jingshang3.jpg); 
            height: 450px;
        }
        .in-banner.haoshang{
            background-image: url(./img/combodia/hoa1.jpg); 
             height: 450px;
         }
         .in-banner.lavogue{
            background-image: url(./img/combodia/lavogue1.jpg); 
             height: 450px;
         }
        .cambodia-spring {
            background-image: url(./img/cambodia-3.jpg);
            background-position: center center;
            background-size: cover;
            height: 400px;
            position: relative;
            background-attachment: fixed;
        }
        
        .cambodia-spring:before {
        
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #000;
            opacity: 0.5;
        
        }
        
        .cambodia-spring-content {
            position: relative;
            color: #fff;
            text-align: center;
        }
        .cambodia-spring-content h2 {
            color: #fff;
            font-size: 45px;
        }
        
        .cambodia-spring-content h2 span {
            color: #9ddccb;
        }
        .cambodia img{
            min-height: 232px;
        }

        .in-banner.malaysia{
            background-image: url(./img/Malaysia.jpg);
            height: 550px;
            }
    
            .malaysia-spring {
                background-image: url(./img/malaysia1.jpeg);
                background-repeat: no-repeat;
                background-position: center center;
                background-size: cover;
                height: 400px;
                position: relative;
                background-attachment: fixed;
            }
            .malaysia-spring:before {
            
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                background-color: #000;
                opacity: 0.5;
            
            }
            .malaysia .summer ul li {
                display: inline-block;
                padding: 6px;
                color: #000;
                background-color: #9ddccb;
                font-weight: 500;
            }
            .malaysia-spring-content {
                position: relative;
                color: #fff;
                text-align: center;
            }
            .malaysia-spring-content h2 {
                color: #fff;
                font-size: 45px;
            }
            
            .malaysia-spring-content h2 span {
                color: #9ddccb;
            }
            .malaysia img{
                min-height: 232px;
            }

            .in-banner.vietnam{
                background-image: url(./img/vietnam.jpeg);
                height: 450px;
                }
        
                .vietnam-spring {
                    background-image: url(./img/vietnam-tour-packages-from-India.jpg);
                    background-repeat: no-repeat;
                    background-position: center center;
                    background-size: cover;
                    height: 400px;
                    position: relative;
                    background-attachment: fixed;
                }
                .vietnam-spring:before {
                
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background-color: #000;
                    opacity: 0.5;
                
                }
                .vietnam .summer ul li {
                    display: inline-block;
                    padding: 6px;
                    color: #000;
                    background-color: #9ddccb;
                    font-weight: 500;
                }
                .vietnam-spring-content {
                    position: relative;
                    color: #fff;
                    text-align: center;
                }
                .vietnam-spring-content h2 {
                    color: #fff;
                    font-size: 45px;
                }
                
                .vietnam-spring-content h2 span {
                    color: #9ddccb;
                }
                /* .malaysia img{
                    min-height: 232px;
                } */
            
                .in-banner.thailand{
                    background-image: url(./img/thailand-banner3.jpg);
                    height: 500px;
                    }
            
                    .thailand-spring {
                        background-image: url(./img/thailand-banner2.jpg);
                        background-repeat: no-repeat;
                        background-position: center center;
                        background-size: cover;
                        height: 400px;
                        position: relative;
                        background-attachment: fixed;
                    }
                    .thailand-spring:before {
                    
                        content: '';
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        background-color: #000;
                        opacity: 0.5;
                    
                    }
                    .thailand .summer ul li {
                        display: inline-block;
                        padding: 6px;
                        color: #000;
                        background-color: #9ddccb;
                        font-weight: 500;
                    }
                    .thailand-spring-content {
                        position: relative;
                        color: #fff;
                        text-align: center;
                    }
                    .thailand-spring-content h2 {
                        color: #fff;
                        font-size: 45px;
                    }
                    
                    .thailand-spring-content h2 span {
                        color: #9ddccb;
                    }
                    .in-banner.dubai{
                        background-image: url(./img/dubai-banner2.jpeg);
                        height: 500px;
                        }
                
                        .dubai-spring {
                            background-image: url(./img/dubai-banner1.jpeg);
                            background-repeat: no-repeat;
                            background-position: center center;
                            background-size: cover;
                            height: 400px;
                            position: relative;
                            background-attachment: fixed;
                        }
                        .dubai-spring:before {
                        
                            content: '';
                            position: absolute;
                            width: 100%;
                            height: 100%;
                            background-color: #000;
                            opacity: 0.5;
                        
                        }
                        .dubai .summer ul li {
                            display: inline-block;
                            padding: 6px;
                            color: #000;
                            background-color: #9ddccb;
                            font-weight: 500;
                        }
                        .dubai-spring-content {
                            position: relative;
                            color: #fff;
                            text-align: center;
                        }
                        .dubai-spring-content h2 {
                            color: #fff;
                            font-size: 45px;
                        }
                        
                        .dubai-spring-content h2 span {
                            color: #9ddccb;
                        }
                        .dubai img{
                        min-height: 232px;
                        }
@media (max-width:768px) {
    .banner h1 {
        font-size: 40px;
        /* left: 45px; */
        top: 90px;
    }

    .content-section h2 {
        text-align: center;
        padding-top: 10px;
    }

    .hike-section img {
        padding-top: 10px;
    }

    .footer {
        height: auto; 
    }

    .spring-content p {
        font-size: 15px;
    }

    .advantages img {
        width: 15%;
    }

    .ooty .summer ul li {
        margin-bottom: 15px;
    }

    .kodai .summer ul li {
        margin-bottom: 15px;
    }

    .munnar .summer ul li {
        margin-bottom: 15px;
    }

    .court .summer ul li {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 40px;
        left: 45px;
    }

    .banner {
        height: 300px;
    }

    .content-section h2 {
        font-size: 25px;
    }

    .advent-section p {
        text-align: left;
    }

    .content-section h2 {
        text-align: center;
        padding-top: 10px;
    }

    .py-5 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .hike-section img {
        padding-top: 10px;
    }

    .footer {
        height: 470px;
    }

    .spring-content p {
        font-size: 15px;
    }
}

.content-heading {
    text-align: center;
    position: relative;
}

.partner-list a {
    height: 155px;
    min-height: 0;
    white-space: nowrap;
}

.partner-list a:after {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-right: -.25em;
    content: '';
}

.partner-list a img {
    vertical-align: middle;
}

.column-demo {
    margin-bottom: 45px;
}

.carousel-wrapper h3 {
    padding-left: 25px;
}

.carousel-wrapper .article h3 {
    padding-left: 0;
}

.carousel-wrapper .single-item h3 {
    padding-left: 0;
}

.demo-animation .demo-wrapper h3 {
    margin-bottom: 10px;
}

.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-next,
.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-prev {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 40px;
    margin-top: -10px;
    border-radius: 2px;
    font-size: 0;
    opacity: 1;
    -webkit-transition: all linear .3s;
    transition: all linear .3s;
    opacity: 0;
    visibility: hidden;
    background: #dbcb36;
}

.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-next:hover,
.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-prev:hover {
    background: #dba905;
}

.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-next:after,
.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-prev:after {
    font: 14px/14px 'icomoon';
    content: '\e907';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -7px;
}

.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 10px;
}

.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 10px;
}

.demo-wrapper .owl-theme .owl-controls .owl-buttons .owl-prev:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.demo-wrapper .owl-theme .article {
    padding: 0 15px;
}

#common-multiple-slide-v1 .owl-controls {
    position: absolute;
    bottom: 100%;
    right: 10px;
}

#common-multiple-slide-v1 .owl-next,
#common-multiple-slide-v1 .owl-prev {
    position: relative;
    top: 0;
    margin: 0;
    right: inherit;
    left: inherit;
    margin: 0 5px 10px;
}

.payment img {
    width: 50%;
    margin-bottom: 50px;
}
.carousel-item img{
    height: 350px;
    object-fit: cover;
    /* filter: blur(2px);
  -webkit-filter: blur(2px); */

}
.carousel-inner {caro
    width: 50% !important;
    margin: auto !important;
    
}
.carousel-inner p{
    text-shadow: 0 0 10px #000;
    
}
.overlay-a {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0px;
    padding: 0;
    height: 100%;
    width: 100%;
  }
  
  /*------/ Owl carousel /------*/
  
  .owl-theme .owl-dots {
    text-align: center;
    margin-top: 18px;
    /* margin-left: 20px; */
    max-width: auto;
  }
  
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
  }
  
  .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 9px;
    margin: 5px 5px;
    background: #000000;
    border: 0px solid #000000;
    display: block;
    transition: all 0.6s ease-in-out;
    cursor: pointer;
    border-radius: 0px;
  }
  
  .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #2eca6a;
  }
  
  .owl-theme .owl-dots .owl-dot.active span {
    background-color: #2eca6a;
    width: 35px;
  }
  
  .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.8rem;
  }
  
  .owl-arrow .owl-nav .owl-prev,
  .owl-arrow .owl-nav .owl-next {
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #000000;
  }
  
  .owl-arrow .owl-nav .owl-prev.disabled,
  .owl-arrow .owl-nav .owl-next.disabled {
    transition: all 0.6s ease-in-out;
    color: #adadad;
  }
  
  .owl-arrow .owl-nav .owl-next {
    margin-left: 15px;
  }
  
  .nav-arrow-a .owl-arrow .owl-nav {
    font-size: 1.8rem;
    margin-top: -110px;
  }
  
  .nav-arrow-a .owl-arrow .owl-nav .owl-next {
    margin-left: 15px;
  }
  
  .nav-arrow-b .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
  }
  
  .nav-arrow-b .owl-arrow .owl-nav .owl-prev,
  .nav-arrow-b .owl-arrow .owl-nav .owl-next {
    padding: .7rem 1.5rem !important;
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #ffffff;
    background-color: #2eca6a;
    opacity: .9;
  }
  
  .nav-arrow-b .owl-arrow .owl-nav .owl-prev.disabled,
  .nav-arrow-b .owl-arrow .owl-nav .owl-next.disabled {
    transition: all 0.6s ease-in-out;
    color: #ffffff;
  }
  
  .nav-arrow-b .owl-arrow .owl-nav .owl-prev:hover,
  .nav-arrow-b .owl-arrow .owl-nav .owl-next:hover {
    background-color: #26a356;
  }
  
  .nav-arrow-b .owl-arrow .owl-nav .owl-next {
    margin-left: 0px;
  }
  .intro {
    height: 100vh;
    position: relative;
    color: #ffffff;
  }
  
  .intro .owl-theme .owl-dots {
    position: absolute;
    bottom: 70px;
    right: 50px;
  }
  
  .intro .owl-theme .owl-dots .owl-dot span {
    background: #ffffff;
    border: 0px solid #ffffff;
  }
  
  .intro .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #2eca6a;
  }
  
  .intro .owl-theme .owl-dots .owl-dot.active span {
    background-color: #2eca6a;
  }
  
  .intro .intro-item {
    padding-top: 2rem;
  }
  
  .intro .carousel-item-a {
    position: relative;
    height: 100vh;
  }
  
  .intro .carousel-item-a.bg-image {
    background-attachment: scroll;
  }
  .display-table {
    width: 100%;
    height: 100%;
    display: table;
  }
  .table-cell {
    display: table-cell;
    vertical-align: middle;
  }
  .intro .intro-content {
    position: absolute;
  }
  
  .intro .intro-body {
    padding-left: 1rem;
  }
  
  .intro .intro-body .price-a {
    color: #ffffff;
    padding: 1rem 1.5rem;
    border: 2px solid #2eca6a;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.030em;
  }
  
  .intro .spacial {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    color: #ffffff;
  }
  
  .intro .intro-title-top {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    margin-bottom: 1rem;
    font-size: .9rem;
    color: #ffffff;
    letter-spacing: .05em;
  }
  
  .intro .intro-title {
    transition-duration: 9s !important;
    color: #ffffff;
    font-weight: 700;
    font-size: 2.8rem;
    text-transform: uppercase;
  }
  
  .intro .intro-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
  }
  
  .intro .intro-subtitle.intro-price {
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  
  /*------/ Intro Single /------*/
  
  .intro-single {
    padding: 12rem 0 3rem;
  }
  
  .intro-single .title-single-box {
    padding: 1rem 0 1rem 2rem;
  }
  
  .intro-single .title-single-box {
    border-left: 3px solid #2eca6a;
  }
  
  .intro-single .title-single-box .title-single {
    font-weight: 600;
    font-size: 2.2rem;
  }
  
  .intro-single .breadcrumb-box {
    padding: 1rem 0 0 .5rem;
  }
  
  .intro-single .breadcrumb {
    background-color: transparent;
    padding-right: 0;
    padding-left: 0;
  }
   
#popupContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(250, 243, 243);  */
    /* semi-transparent background */

    /* hide initially */
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgb(241, 239, 239);

    border: 1px solid #ccc;
    padding: 10px;
    -moz-box-align: center;
    text-align: center;
    z-index: 11;
    display: flex;
}

.popup-content {    
      
    width: 100%;
    border: 0px solid #070505;   
    padding: 1px;
    text-align: center;    
    position: relative; 
    z-index: 12;     
}

.close-btn {
    color: #FFFFFF;
    position: absolute;
    top: 10%;
    right: 0%;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 13;
}

.close-btn:hover,
.close-btn:focus {
    color: rgb(255, 0, 0);
    text-decoration: none;
}

.container {
    text-align: center;
    /* Center content horizontally */
    font-size: 16px;

}

@media screen and (min-width: 1024px) {
    .popup-content {
        width: 400px;
        height: 350px;
    }
}

/* For Tablet View */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .popup-content {
        width: 400px;
        height: 400px;
    }
}

/* For Mobile Portrait View */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
    .popup-content {
        width: 300px;
        height: 200px;
    }
}

/* For Mobile Landscape View */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
    .popup-content {
        width: 400px;
        height: 200px;
    }
}

/* For Mobile Phones Portrait or Landscape View */
@media screen and (max-device-width: 640px) {
    .popup-content {
        width: 400px;
        height: 200px;
    }
}

/* For iPhone 4 Portrait or Landscape View */
@media screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    .popup-content {
        width: 400px;
        height: 400px;
    }
}

/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    .popup-content {
        width: 400px;
        height: 400px;
    }
}

/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
    .popup-content {
        width: 400px;
        height: 400px;
    }
}
/* *{
    margin: 0px;
    padding: 0px;
    font-family: poppins;
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
  }
  #testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100%;
  }
  .testimonial-heading{
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .testimonial-heading span{
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
  }
  .testimonial-box{
    width:500px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
  }
  .profile-img{
    width:50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
  }
  .profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .profile{
    display: flex;
    align-items: center;
  }
  .name-user{
    display: flex;
    flex-direction: column;
  }
  .name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  .name-user span{
    color: #979797;
    font-size: 0.8rem;
  }
  .reviews{
    color: #f9d71c;
  }
  .box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
  }
  .testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
  }
  
  @media(max-width:1060px){
    .testimonial-box{
        width:45%;
        padding: 10px;
    }
  }
  @media(max-width:790px){
    .testimonial-box{
        width:100%;
    }
    .testimonial-heading h1{
        font-size: 1.4rem;
    }
  }
  @media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
  }
  ::selection{
    color: #ffffff;
    background-color: #252525;
  } */