/* ---------------------------------
    Import Fonts 
   --------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300i,400,400i,600,600i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Herr+Von+Muellerhoff');

@font-face {
    font-family: SriLankan;
    src: url(../fonts/Srilankan.ttf);
}

/* ---------------------------------
    General 
   --------------------------------- */
body, button, input, select, textarea{
    font-family: 'Poppins', sans-serif;
}

b, strong{
    font-weight: 600;
}

p {
    margin: 0 0 10px !important;
}

/* ---------------------------------
    Header 
   --------------------------------- */
.header-logo .site-title{
    color: #ffd9a5 !important;
}
.overlay-content .header-logo .site-title {
    color: #c7aa79 !important;
}

@media (max-width: 991px){
    
    /* 
    *
    Bootstrap navbar collapse override 
    */
    .navbar-header {
        float: none;
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        position: absolute;
        right: -450px;
        width: 100%;
        background: rgb(255, 255, 255);
        margin: 0;
        transition: all 0.6s ease-in;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
        margin-right: -15px !important;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in { 
        right: 0px;
    }
    /* End Overrides */
    
    #header-wrapper{
        background-color: rgba(29, 47, 52, 0.9);
        border: 0;
    }
    #header-wrapper .navbar-header{
        padding: 20px 15px;
        height: 80px;
        border-bottom: 1px solid rgba(0,0,0,0.15);
        list-style: none;
        transition: all 0.2s ease;
    }
    #header-wrapper .navbar-header.shrink{
        padding: 10px 15px;
        height: 60px;
    }
    #navbar-toggler{
        float: right;
/*        font-size: 35px;
        color: #13a1c5;*/
    }
    .header-logo{
        float: left;
        width: 235px;
    }
    /* #header-wrapper #header-sticky-logo{
        display: none !important;
    } */
    .header-logo .site-title{
        font-weight: 400;
        color: #FFF;
        padding-left: 15px;
        font-size: 17px;
        line-height: 1.3;
        width: 65%;
    }
    .header-logo > a{
        display: flex;
    }
    #header-wrapper .navbar-collapse{
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,0.15);
    }
    #header-wrapper .navbar-nav>li>a:focus,
    #header-wrapper .navbar-nav>li>a:hover,
    #header-wrapper .navbar-nav>.active>a,
    #header-wrapper .navbar-nav>.active>a:focus,
    #header-wrapper .navbar-nav>.active>a:hover,
    #header-wrapper .navbar-nav .open .dropdown-menu>.active>a,
    #header-wrapper .navbar-nav .open .dropdown-menu>.active>a:focus,
    #header-wrapper .navbar-nav .open .dropdown-menu>.active>a:hover{
        color: #13a1c5;
        background-color: transparent;
    }
    #header-wrapper .navbar-nav>.open>a,
    #header-wrapper .navbar-nav>.open>a:focus,
    #header-wrapper .navbar-nav>.open>a:hover,
    #header-wrapper .navbar-nav .current-menu-parent>a{
        background-color: transparent !important;
        color: #13a1c5 !important;
    }
    .navbar-nav .open .dropdown-menu>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    #mobile-to-header{
        background-color: #2c2c2c;
        height: 50px;
        padding: 15px;
    }
    #mobile-to-header .top-header-link{
        color: #fff;
        font-size: 17px;
    }
    #mobile-to-header .top-header-link .fa{
        margin-right: 5px;
    }
    
    /* Top header social links */
    #mobile-to-header .social-list{
        padding: 0;
        margin: 0;
        list-style-type: none;
        float: right;
    }
    #mobile-to-header .social-list li{
        display: inline-block;
    }
    #mobile-to-header .social-list li a{
        display: block;
        width: 30px;
        text-align: center;
        font-size: 17px;
        color: #fff;
    }
    #mobile-to-header .social-list li a:hover{
        color: #13a1c5;
    }
   
    /* Mobile menu icon */
    .header-ham-icon{
        width: 40px;
        height: 32px;
        margin-top: 5px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        scale: 0.8;
    }
    .header-ham-icon span{
        display: block;
        position: absolute;
        height: 5px;
        width: 100%;
        background: #13a1c5;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    .header-ham-icon span:nth-child(1) {
        top: 0px;
    }
    .header-ham-icon span:nth-child(2),.header-ham-icon span:nth-child(3) {
        top: 12px;
    }
    .header-ham-icon span:nth-child(4) {
        top: 24px;
    }
    .header-ham-icon.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    .header-ham-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-ham-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header-ham-icon.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    
    /* Sticky header styles Mobile */
    #header-wrapper.sticky{
        position: fixed;
    }
    #header-wrapper.sticky #mobile-to-header{
        display: none !important;
    }
    .collapse.navbar-collapse{
        display: none !important;
    }
    #sidebar{
        display: block;
    }
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    #header-wrapper > .container {
        width: 100%;
    }
    #header-wrapper .navbar-collapse{
        margin-left: -15px;
        margin-right: -15px;
        max-height: 400px;
        overflow-y: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }
    #header-wrapper .dropdown-menu>li>a{
        color: #9d9d9d;
    }
    .navbar-nav li {
        margin-right: 5px;
    }
    .page-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}
@media (min-width: 992px){
    #header-wrapper{
        position: fixed;
        background-color: rgba(29,47,52,0.8);
        border: 0;
        height: 80px;
        z-index: 9999;
        display: flex;
        align-items: center;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        max-width: 1920px; 
        width: 100%; 
        margin: 0 auto; 
        left: 0; 
        right: 0; 
    }
    #header-wrapper.shrink {
        height: 60px;
        background-color: rgba(29, 47, 52, 0.95);
    }

    #header-wrapper .navbar-nav>li>a{
        font-weight: 400;
        color: #fff;
        letter-spacing: 0.4px;
    }
    #header-wrapper .navbar-nav>li.active>a{
        font-weight: 500;
    }
    #header-wrapper .main-navigation>li:last-child>a{
        background-color: #13a1c5;
        border-radius: 40px;
        padding: 10px 15px !important;
    }

    li#menu-item-toggle, #header-wrapper .main-navigation>li:last-child>a{
        transform: translateY(5px);
    }
    #header-wrapper .navbar-nav>li>a:focus,
    #header-wrapper .navbar-nav>li>a:hover,
    #header-wrapper .navbar-nav>.active>a,
    #header-wrapper .navbar-nav>.active>a:focus,
    #header-wrapper .navbar-nav>.active>a:hover,
    #header-wrapper .navbar-nav>.open>a,
    #header-wrapper .navbar-nav>.open>a:focus,
    #header-wrapper .navbar-nav>.open>a:hover{
        color: #13a1c5;
        background-color: transparent;
    }
    #header-wrapper .main-navigation>li.active:last-child>a{
        color: #fff;
    }
    #header-wrapper .main-navigation>li:last-child>a:hover,
    #header-wrapper .main-navigation>li.active:last-child>a{
        background-color: #fff;
        color: #13a1c5;
    }
    #header-wrapper .main-navigation>li.active:last-child>a:hover{
        background-color: #13a1c5;
        color: #fff;
    }
    
    #header-wrapper .dropdown-menu{
        border-top: 0;
        padding: 0;
        left: 0;
        right: auto;
        top: 156%;
        border-radius: 0;
    }
    #header-wrapper .dropdown-menu>li>a{
        padding: 8px 15px;
        color: #777;
        font-weight: 500;
        border-bottom: 1px solid #e5e5e5;
    }
    #header-wrapper .dropdown-menu>li:last-child>a{
        border-bottom: 0;
    }
    #header-wrapper .dropdown-menu>li>a:focus,
    #header-wrapper .dropdown-menu>li>a:hover,
    #header-wrapper .dropdown-menu>.active>a,
    #header-wrapper .dropdown-menu>.active>a:focus,
    #header-wrapper .dropdown-menu>.active>a:hover{
        background-color: #13a1c5;
        color: #fff;
    }
    
    .header-logo{
        position: absolute;
        width: 320px;
        text-align: center;
        padding: 15px 50px;
        top: 0;
    }
    .header-logo > a{
        display: block;
    }
    /* .header-logo:after{
        content: '';
        width: 320px;
        height: 190px;
        position: absolute;
        border-bottom-left-radius: 160px;
        border-bottom-right-radius: 160px;
        left: 0;
        top: 0;
        z-index: -1;
        opacity: 0.8;
        background-image: -webkit-linear-gradient(transparent 42%, rgb(29,47,52) 0%, rgb(29,47,52)), -webkit-linear-gradient(0deg, transparent 100%, rgb(29,47,52) 50%, rgb(29,47,52));
    } */
    .header-logo img {
        width: 120px;
        max-height: 80px;
        max-width: 260px;
        margin-bottom: 10px;
    }
    .header-logo .site-title{
        color: #fff;
        font-weight: 500;
        font-size: 22px;
        line-height: 1.2;
    }
    
    /* Sticky header styles Desktop */
/*    .header-logo > a,
    #header-wrapper .header-logo img{
        -webkit-transition: all 2s ease-in-out;
        -moz-transition: all 2s ease-in-out;
        transition: all 2s ease-in-out;
    }*/
    
    /* #header-wrapper #header-sticky-logo{
        display: none;
    } */
    #header-wrapper #header-sticky-logo{
        text-align: left;
        padding: 0;
        width: 300px;
        top: 7px;
    }
    #header-wrapper #header-sticky-logo > a{
        display: flex;
        align-items: center;
    }
    #header-wrapper #header-sticky-logo img{
        height: 65px;
        max-height: 70px;
        width: auto;
        margin-bottom: 0;
        transition: all 0.2s ease;
    }
    #header-wrapper #header-sticky-logo img.shrink-logo{
        height: 45px;
    }
    #header-wrapper #header-sticky-logo .site-title{
        font-size: 18px;
        line-height: 1.3;
        padding-left: 15px;
    }
    #header-wrapper #header-sticky-logo:after{
        display: none;
    }
    
    
    #header-wrapper.sticky{
        background-color: rgba(29,47,52,0.95);
    }
/*    #header-wrapper.sticky .header-logo{
        text-align: left;
        padding: 0;
        width: 300px;
        top: 7px;
    }
    #header-wrapper.sticky .header-logo > a{
        display: flex;
        align-items: center;
    }
    #header-wrapper.sticky .header-logo img{
        height: 65px;
        max-height: 70px;
        width: auto;
        margin-bottom: 0;
    }
    #header-wrapper.sticky .header-logo .site-title{
        font-size: 18px;
        line-height: 1.3;
        padding-left: 15px;
    }
    #header-wrapper.sticky .header-logo:after{
        display: none;
    }*/
    
}
/* ---------------------------------
    Footer 
   --------------------------------- */
/* CTA Banner */
.footer-cta-banner > .container{
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-cta-banner .cta-title{
    color: #2c2c2c;
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
}
.footer-cta-banner .cta-title .small-text{
    font-size: 32px;
    font-weight: 600;
}
.footer-cta-banner .cta-title .mini-text{
    font-size: 20px;
    font-weight: 600;
}
.footer-cta-banner .section-overlay{
    background-color: rgba(0,0,0,0.08);
}
.cta-caller-area a{
    background-color: #fff;
    font-weight: 700;
    font-size: 30px;
    padding: 7px 20px 2px;
    display: inline-block;
}
/* Social Icons */
.widget-social-list{
    padding: 0;
    margin: 10px 0 0;
    list-style-type: none;
}
.widget-social-list li{
    display: inline-block;
    margin: 2px;
}
.widget-social-list li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 34px;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    font-size: 19px;
}
.widget-social-list li a .fa-facebook{ color: #325c94;}
.widget-social-list li a .fa-instagram{ color: #cb328d;}
.widget-social-list li a .fa-twitter{ color: #00abdc;}
.widget-social-list li a .fa-linkedin{ color: #0073b2;}
.widget-social-list li a .fa-pinterest-p{ color: #d9031f;}
.widget-social-list li a .fa-youtube{ color: #f20026;}
.widget-social-list li a .fa-google-plus{ color: #ea3032;}
.widget-social-list li a .fa-yelp{ color: #d32323;}
.widget-social-list li a .fa {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.widget-social-list li a:hover{
    background-color: #13a1c5;
}
.widget-social-list li a:hover .fa{
    color: #fff !important;
}
/* Footer bottom */
#footer-bottom{
    background-color: #fff;
    color: #666666;
}
#footer-bottom .developer-note a{
    color: #666;
    display: flex;
    align-items: center;
}
#footer-bottom .developer-note a span {
    margin-left: 35px;
}
#footer-bottom .copyright-note{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    z-index: 99;
    position: relative;
    width: 500px;
    bottom: -80px;
    right: 50px;
}
#footer-bottom .developer-note {
    margin-top: 15px;
}

.footer-bottom-wrapper{
    position: absolute;
    bottom: -50px;
}
.footer-logo-circle{
    text-align: center;
    position: relative;
    transform: translate(300px, -85px);
    z-index: 9;
}
.footer-logo-circle > a{
    width: 500px;
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}
.footer-logo-circle img{
    width: 300px;
    height: 93px;
    margin: 0 auto;
    position: absolute;
    left: 25%;
    z-index: 99;
}
.footer-logo-circle .site-title{
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.footer-logo-circle:after{
    content: '';
    width: 390px;
    height: 220px;
    position: absolute;
    border-top-left-radius: 220px;
    border-top-right-radius: 220px;
    bottom: -75px;
    background-color: #fff;
    left: 0;
    z-index: 2;
}
.d-flex{
    display: flex;
}
@media (max-width: 767px){
    .footer-cta-banner .cta-title{ font-size: 40px;}
    .footer-cta-banner .cta-title .small-text{ font-size: 25px;}
    .footer-cta-banner .cta-title .mini-text{ font-size: 17px;}
    .cta-caller-area a{ font-size: 18px;}
    
    .footer-logo-circle:after{ display: none;}
    #footer-bottom .copyright-note,
    #footer-bottom .developer-note{
        text-align: center;
    }
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .footer-logo-circle {
        transform: translate(100px, -85px);
    }
}
/* ---------------------------------
    Single Package Page 
   --------------------------------- */
.pg-single-package{
    position: relative;
}
.package-title-bar > .container{
    position: relative;
}
.package-title-bar .title-bar-overlay{
    background-color: rgba(0,0,0,0.5);
}
.page-title-bar.package-title-bar h1{
    border-left: 3px solid #fff;
    padding: 10px 20px 7px;
    text-transform: uppercase;
    font-weight: 500;
}
.package-title-bar .social-links{
    position: absolute;
    right: 0;
    bottom: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
}
.package-title-bar .social-links ul{
    padding: 0;
    margin: 0 0 0 10px;
    list-style-type: none;
}
.package-title-bar .social-links ul li{
    display: inline-block;
    margin: 2px;
}
.package-title-bar .social-links ul li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 34px;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    font-size: 19px;
}
.package-title-bar .social-links ul li a .fa-facebook{ color: #325c94;}
.package-title-bar .social-links ul li a .fa-instagram{ color: #cb328d;}
.package-title-bar .social-links ul li a .fa-twitter{ color: #00abdc;}
.package-title-bar .social-links ul li a .fa-linkedin{ color: #0073b2;}
.package-title-bar .social-links ul li a .fa-pinterest-p{ color: #d9031f;}
.package-title-bar .social-links ul li a .fa-youtube{ color: #f20026;}
.package-title-bar .social-links ul li a .fa-google-plus{ color: #ea3032;}
.package-title-bar .social-links ul li a .fa-yelp{ color: #d32323;}
.package-title-bar .social-links ul li a:hover{
    background-color: #13a1c5;
}
.package-title-bar .social-links ul li a:hover .fa{
    color: #fff !important;
}
.under-strip-link{
    background-color: #13a1c5;
    padding: 8px 15px 6px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.under-strip-link a{
    color: #fff;
    font-weight: 500;
}
.under-strip-link a:hover{
    color: rgba(255,255,255,0.9);
}
/* Genaral Details */
.pg-single-package .general-details{
    margin-bottom: 20px;
}
.pg-single-package .general-details .normal-price{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    text-decoration: line-through;
}
.pg-single-package .general-details .discounted-price{
    font-size: 17px;
}
.pg-single-package .general-details .discounted-price span{
    font-size: 26px;
    font-weight: 600;
    color: #e12c30;
}
.pg-single-package .general-details .duration{
    font-weight: 500;
}
.pg-single-package .pack-discount-flag{
    position: absolute;
    width: 70px;
    height: 60px;
    background-color: #e1294f;
    color: #fff;
    text-align: center;
    z-index: 2;
    font-size: 17px;
    padding: 16px 5px;
    font-size: 14px;
    top: 0;
    right: 20px;
}
.pg-single-package .pack-discount-flag span{
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 0.7;
}
.pg-single-package .pack-discount-flag:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 0;
    height: 0;
    border-bottom: 25px solid transparent;
    border-left: 35px solid #e1294f;
    border-right: 35px solid #e1294f;
}
/* Tab Area */
.tab-content{
    display: none;
}
.tab-content.current{
    display: inherit;
}
.package-tabs{
    margin-bottom: 15px;
}
.package-tabs .tab-list{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.package-tabs .tab-list:after{
    content: '';
    display: table;
    clear: both;
}
.package-tabs .tab-list li{
    float: left;
    padding: 10px 15px 7px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    cursor: default;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    color: #999;
}

.package-tabs .tab-list li.current{
    background-color: #e8e8e8;
    border-color: #13a1c5;
    color: #777;
}
.package-tabs .tab-pane{
    background-color: #f8f7f5;
    padding: 30px;
}
.package-tabs .package-gallery-slider{
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 25px;
}
.package-tabs .package-gallery-slider .package-gallery-item{
    width: 100%;
    height: auto;
    display: block;
}
.package-tabs .package-gallery-slider .package-gallery-item img{
    width: 100%;
    height: 600px;

}
.package-tabs .package-gallery-slider .owl-nav > div{
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 33px;
    text-align: center;
    font-size: 18px;
    border-radius: 100%;
    color: rgba(0,0,0,0.5);
}
.package-tabs .package-gallery-slider .owl-nav > div.owl-prev{
    left: 20px;
}
.package-tabs .package-gallery-slider .owl-nav > div.owl-next{
    right: -10px;
}
/* Tour Plan */
.package-tabs .tour-plan-image{
    display: inline-block;
    height: 550px;
    width: auto;
}
.package-tabs .tour-plan-image img{
    height: 100%;
}
.package-tabs .tour-plan-pdf{
    width: 100%;
    height: 800px;
    display: block;
}
/* Accommodation */
.package-tabs .accommodation-list{
    padding: 0;
    list-style-type: none;
}
.package-tabs .accommodation-list li{
    margin-bottom: 10px;
}
.package-tabs .accommodation-list li:before{
    content: '\f05d';
    font-family: 'FontAwesome';
    padding-right: 10px;
}
/* Featured Packages slider */
.featured-packages-area .title-dark{
    color: #444;
}
.featured-packages-area > p{
    margin-bottom: 20px;
}
.featured-packages-area{
    margin-top: 60px;
    margin-bottom: 80px;
}
.featured-slider .featured-item{
    position: relative;
    height: 150px;
}
.featured-slider .featured-item img,
.featured-slider .featured-details{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.featured-slider .featured-item img{
    object-fit: cover;
}
.featured-slider .featured-details{
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    padding: 15px;
    text-align: center;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.featured-slider .featured-item:hover .featured-details{
    opacity: 1;
}
.featured-slider .featured-details .featured-title{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
}
.featured-slider .featured-details .featured-link{
    color: #fff;
    display: inline-block;
    padding: 6px 16px 2px;
    border: 2px solid #fff;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    font-size: 13px;
    opacity: 0;
    transform: translateY(1px);
    transition: all 0.9s ease;
}
@media (max-width: 767px){
    .featured-slider .featured-details .featured-link{
        opacity: 1;
    }
}
/* When hover on parent container */
.featured-slider .featured-details:hover .featured-link {
    opacity: 1;
    transform: translateY(0);
}
.featured-slider .featured-details .featured-link:hover{
    border-color: #13a1c5;
    color: #13a1c5;
}
.featured-slider .owl-nav > div{
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    border-radius: 100%;
    color: rgba(0,0,0,0.5);
}
.featured-slider .owl-nav > div.owl-prev {
    left: 16px;
    padding-right: 1px;
}
.featured-slider .owl-nav > div.owl-next{
    right: -10px;
    padding-left: 3px;
}
.featured-slider .owl-nav{
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.featured-slider:hover .owl-nav{
    opacity: 1;
}
/* Book Now Form */
#book-now-popup{
    display: none;
}
#book-now-popup .popup-content .package-name{
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #efefef;
    padding: 8px 15px 5px;
    text-align: center;
    color: #13a1c5;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}
#book-now-popup .wpcf7 input[type="submit"]{
    padding: 10px 35px 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
#book-now-popup .wpcf7 span.wpcf7-not-valid-tip {
    font-weight: 400;
    margin-top: 5px;
}
/*#book-now-popup .wpcf7 input[type="date"]:before {
    content: attr(placeholder) !important;
    color: #777;
    margin-right: 0.5em;
    position: absolute;
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: #fff;
    left: 10px;
    right: 40px;
}
#book-now-popup .wpcf7 input[type="date"]:focus:before,
#book-now-popup .wpcf7 input[type="date"]:valid:before {
    content: "";
}
#book-now-popup .wpcf7 input[type="date"]::-webkit-datetime-edit{ color: transparent; }
#book-now-popup .wpcf7 input[type="date"]:focus::-webkit-datetime-edit{ color: #777; }*/
@media (max-width: 767px){
    .page-title-bar.package-title-bar h1{
        border-left: none;
    }
    .pg-single-package .pack-discount-flag{
        width: 120px;
        height: 30px;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 8px 15px 5px;
    }
    .pg-single-package .pack-discount-flag span{
        display: inline-block;
        margin-right: 5px;
    }
    .pg-single-package .pack-discount-flag:after{
/*        bottom: 0;
        top: 0;
        left: -25%;
        border-bottom: 15px solid #e1294f;
        border-left: 25px solid transparent;
        border-top: 15px solid #e1294f;*/
        display: none;
    }
    .pg-single-package .general-details .vc-theme-button{
        margin-top: 10px;
    }
    .package-tabs .tab-list li{
        width: 100%;
        text-align: left;
        padding: 15px 15px 10px;
    }
    .package-tabs .tab-pane{
        padding: 20px 15px;
    }
    .package-tabs .package-gallery-slider .package-gallery-item{
        height: 200px;
    }
}
@media (min-width: 768px){
    .pg-single-package .general-details > .row{
        display: flex;
        align-items: center;
    }
    .pg-single-package .general-details .vc-theme-button{
        text-align: right;
    }
}
@media (min-width: 992px){   
    .page-title-bar.package-title-bar{
        height: 380px; 
    }
    .under-strip-link{
        font-size: 16px;
    }
    
    .pg-single-package .general-details .discounted-price,
    .pg-single-package .general-details .duration{
        display: inline-block;
    }
    .pg-single-package .general-details .duration{
        margin-left: 40px;
    }
    
    .featured-packages-area > p{
        width: 65%;
    }
    
    /* .featured-slider .featured-details{
         opacity: 0; 
    } */
/*    .featured-slider .owl-item:first-child .featured-details{
        opacity: 1;
    }*/
    #book-now-popup{
        max-width: 750px;
    }
}
/* ---------------------------------
    Footer Form Banner 
   --------------------------------- */
.footer-form-banner{
    position: relative;
}
.footer-form-banner .ff-baner-image{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-form-banner > .container{
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}
.footer-form-banner .ff-banner-title{
    font-size: 36px;
    color: #444;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.footer-form-banner .ff-banner-title span{
    font-weight: 600;
    color: #13a1c5;
    display: block;
}
.footer-form-banner .ff-banner-title.small-title{
    font-size: 26px;
}
.ff-wrapper .ff-section{
    display: none;
}
.ff-wrapper .ff-section.active{
    display: block;
}
.ff-wrapper .ff-element-wrapper{
    margin-bottom: 10px;
    width: 65%;
    position: relative;
}
.ff-wrapper .ff-element{
    width: 100%;
    border: 2px solid #13a1c5;
    background-color: #fff;
    height: 45px;
    padding: 5px 10px 3px;
    color: #13a1c5;
    font-weight: 400;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.ff-wrapper .ff-element:focus{
    outline: 0;
}
.ff-wrapper .ff-element-wrapper.select:after{
    content: '\f0d7';
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 13px;
    color: #13a1c5;
    z-index: 3;
    font-size: 15px;
}
.ff-wrapper .ff-element::-webkit-input-placeholder{
  color: #13a1c5;
}
.ff-wrapper .ff-element::-moz-placeholder{
  color: #13a1c5;
}
.ff-wrapper .ff-section-controller-area .ff-section-button{
    display: inline-block;
    background-color: #33a1bc;
    padding: 8px 25px 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    border-radius: 50px;
    width: 120px;
    text-align: center;
    border: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.ff-wrapper .ff-section-controller-area .ff-section-button:hover,
.ff-wrapper .ff-section-controller-area .ff-section-button:focus{
    background-color: #218da8;
    color: #fff;
    outline: 0;
}
.ff-validation-output{
    display: none;
    font-size: 12px;
    color: #d11f3f;
    margin-top: 4px;
    font-weight: 500;
}
.ff-response-output{
    display: none;
    padding: 8px 20px 5px;
    border-radius: 40px;
    background-color: #efefef;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}
.ff-response-output.ff-response-success{
    background-color: #6ac239;
    color: #fff;
}
.ff-response-output.ff-response-error{
    background-color: #d11f3f;
    color: #fff;
}
.ff-banner-title.after-submission{
    display: none;
}
.ff-response-output.visible,
.ff-banner-title.after-submission.visible{
    display: inline-block;
}
@media (max-width: 991px){
    .footer-form-banner .ff-banner-title{
        font-size: 32px;
    }
}
@media (max-width: 767px){
    .footer-form-banner{
        background-color: #efefef;
    }
    .footer-form-banner > .container{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-form-banner .ff-baner-image{
        display: none;
    }
    .footer-form-banner .ff-banner-title{
        font-size: 25px;
    }
    .ff-wrapper .ff-element-wrapper{
        width: 100%;
    }
}
@media (min-width: 768px){
    .footer-form-banner{
        height: 385px;
        margin-top: 41px;
    }
    .footer-form-banner > .container{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
.footer-form-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(202, 190, 190, 0.61); /* adjust overlay color & opacity */
    z-index: 1;
}
/* ---------------------------------
    Slider with search form 
   --------------------------------- */
.main-slider,
.slider-strip-non-home{
    position: relative;
}
.slider-search-strip{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 80px;
    background-color: rgba(29,47,52,0.8);
    max-width: 1920px; 
    width: 100%; 
    margin: 0 auto; 
    left: 0; 
    right: 0;
}
.slider-strip-non-home .slider-search-strip{
    position: relative;
    background-color: rgb(42, 60, 68);
}
.slider-search-strip > .container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.slider-search-strip .strip-title{
    color: #fff;
    font-size: 18px;
    padding-right: 25px;
    border-right: 1px solid rgba(255,255,255,0.3);
    margin-right: 10px;
}
.slider-search-strip .strip-title span{
    display: block;
}
.slider-search-strip .strip-form > form{
    display: flex;
}
.slider-search-strip .strip-form .element-wrapper{
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
}
.slider-search-strip .strip-form .element-wrapper label{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    margin-right: 12px;
}
.slider-search-strip .strip-form .element-wrapper select,
.slider-search-strip .strip-form .element-wrapper input[type='number']{
    width: 200px;
    height: 35px;
    padding: 5px 10px 3px;
    background-color: #fff;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 30px;
}
.slider-search-strip .strip-form .element-wrapper select:focus,
.slider-search-strip .strip-form .element-wrapper input[type='number']:focus{
    border: 0;
    outline: 0;
}
.slider-search-strip .strip-form .element-wrapper.select:after{
    content: '\f0d7';
    font-family: 'FontAwesome';
    position: absolute;
    right: 28px;
    top: 7px;
    z-index: 3;
    font-size: 15px;
}
.slider-search-strip .strip-form .element-wrapper input[type='submit']{
    height: 35px;
    background-color: #13a1c5;
    border: 0;
    color: #fff;
    font-weight: 400;
    /* text-transform: uppercase; */
    text-align: center;
    padding: 0 40px;
    font-size: 14px;
    line-height: 36px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 30px;
    letter-spacing: 1px;
}

.slider-search-strip .strip-form .element-wrapper input[type='submit']:hover{
    background-color: #14c2ce;
}
.slider-search-strip .strip-form .element-wrapper input[type='submit']:focus{
    outline: 0;
}
.slider-search-strip .strip-form .element-wrapper .validation-alert{
    display: none;
    position: absolute;
    background-color: #fff;
    font-size: 13px;
    padding: 8px 15px 6px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    font-weight: 500;
    left: 42%;
    white-space: nowrap;
    top: -45px;
    z-index: 999;
}
.slider-search-strip .strip-form .element-wrapper .validation-alert .fa{
    color: #faab20;
    display: inline-block;
    font-size: 19px;
    vertical-align: text-top;
    margin-right: 4px;
}
.slider-search-strip .strip-form .element-wrapper .validation-alert:after{
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    content: '';
    position: absolute;
    bottom: -7px;
    left: 30px;
    z-index: 1000;
}
.mobile-slider-title{
    color: #fff;
    font-size: 40px;
    line-height: 1px;
    font-weight: 700;
}
.mobile-slider-sub-title{
    color: #fff;
    font-size: 60px;
    font-family: 'Herr Von Muellerhoff', cursive;
    font-weight: 400;
    line-height: 1.2em; 
}
@media (max-width: 991px){
    .slider-search-strip{
        display: none;
        height: auto;
    }
    .slider-strip-non-home .slider-search-strip{
        display: block;
    }
    .slider-search-strip > .container{
        display: block;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .slider-search-strip .strip-title{
        border-right: 0;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    .slider-search-strip .strip-title span{
        display: inline-block;
    }
    .slider-search-strip .strip-form > form {
        margin-left: -18px;
        margin-right: -18px;
        justify-content: center;
    }
    .slider-search-strip .strip-form .element-wrapper label{
        font-size: 16px;
    }
    .slider-search-strip .strip-form .element-wrapper select,
    .slider-search-strip .strip-form .element-wrapper input[type='number']{
        width: 170px;
    }
}
@media (max-width: 767px){
    .slider-search-strip .strip-form > form {
        display: block;
    }
    .slider-search-strip .strip-form .element-wrapper{
        margin-bottom: 10px;
    }
    .slider-search-strip .strip-form .element-wrapper select,
    .slider-search-strip .strip-form .element-wrapper input[type='number']{
        width: 100%;
        margin-top: 5px;
    }
    .slider-search-strip .strip-form .element-wrapper.select:after{
        bottom: 7px;
        top: initial;
    }
    .slider-search-strip .strip-form .element-wrapper .validation-alert{
        left: 15%;
        top: -20px;
    }
}
/* ---------------------------------
    Helpers 
   --------------------------------- */
.txt-white{ color: #fff;}
.txt-center{ text-align: center; }
.mb-10{ margin-bottom: 10px;}

.navbar-nav li{
    margin-right: 15px;
}

li#menu-item-toggle {
    margin-right: 25px;
    width: 75px;
    height: 50px;
}

.menu-item a.pn-wrapper-icon {
    border: 1px solid white;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    gap: 2px;
    padding: 5px !important;
}
#menu-item-toggle .toggle-btn.inbound{
    margin-right: 5px;
}

#menu-item-toggle .toggle-btn{
    margin: 2px auto;
}

#menu-item-toggle .toggler-mark{
    width: 30px;
    height: 30px;
    background-color: #13a1c5;
    border-radius: 30px;
    position: absolute;
    right: 1px;
    top: 3px;
    z-index: -1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

#menu-item-toggle .toggle-btn.toggle-active img.pn-icon{
    filter: none;
}

#menu-item-toggle .toggle-btn img.pn-icon{
    filter: invert(59%) sepia(35%) saturate(513%) hue-rotate(163deg) brightness(195%) contrast(180%);
    transition: filter 0.2s ease;
    object-fit: contain;
    height: 23px;
    display: inline-flex;
    align-items: center;
}

#menu-item-toggle .toggle-btn img.pn-icon:hover {
    filter: none;
}

.main-slider .owl-carousel .item {
    position: relative;
    height: 100vh;
}

.main-slider .owl-carousel .item .hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.main-slider .carousel-caption {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 26%;
    text-align: center;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-shadow: none;
}

.main-slider .carousel-caption p {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.main-slider .social-icons {
    margin-top: 30px; 
}

.main-slider .social-icon {
    display: inline-flex;
    justify-content: center; 
    align-items: center; 
    margin: 0 5px;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    text-shadow: none;
    transition: all 0.2s ease;
}
.main-slider .social-icon:hover {
    background-color: #b8f1ff;
}

.main-slider .social-icon i {
    font-weight: 200;
    font-size: 24px;
}


.testi-box {
    margin-bottom: 30px !important;
}

.testimonial-slider .owl-nav{
    position: absolute;
    top: 0;
    right: 20px;
}

.testimonial-slider .owl-nav .owl-next,
.testimonial-slider .owl-nav .owl-prev{
    border: 0.5px solid #fff;
    padding: 6px;
    width: 35px;
    height: 35px;
}
.testimonial-slider .owl-nav .owl-next i,
.testimonial-slider .owl-nav .owl-prev i{
    font-size: 26px;
    transform: translate(2px, -19px);
}
.testimonial-slider .owl-nav .owl-next{
    left: 0;
}
.testimonial-slider .owl-nav .owl-prev{
    left: -50px;
}

.testimonial-slider .testi-box {
    margin-top: 50px;
}

.testimonial-slider{
    margin: -10px auto;
    width: 70%;
    display: block;
}

.vc-section-heading.light.medium.center.classes {
    margin-top: 40px;
}
.opacity-bg{
    z-index: 1;
}
.opacity-bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    filter: contrast(0.8) brightness(0.8);
    background-color: rgba(0, 0, 0, 0.5);
}

.opacity-bg-light::before{
    background-color: rgba(0, 0, 0, 0.7);
    filter: contrast(0.7) brightness(3.5);
}

.testi-auth-rating {
    display: flex; 
    align-items: center;
    justify-content: center; 
    margin-top: 10px;
}

.testi-auth-rating i {
    margin-right: 5px;
    font-size: 12px;
}

/* Optional: If you want to remove the margin from the last star */
.testi-auth-rating i:last-child {
    margin-right: 0;
}

#testi-bg-layout1.testi-bg-layout, #testi-bg-layout2.testi-bg-layout {
    background-position: right center !important;
    background-size: 45% 100% !important;
}
.testi-bg-layout p{
    font-size: 15px;
    font-weight: 400;
}    
.testi-bg-layout .vc-theme-button{
    margin-top: 30px;
}

.news-slider .blog-text{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 4.5em;
        line-height: 1.5em;
        color: #444;
        font-size: 14px;
        font-weight: 400;
}


/* Styling for the sidebar */
.sidebar {
    display: none;
    position: fixed;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 10px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

/* Sidebar open state */
.sidebar.open {
    right: 0;
}

/* Styling for the sidebar navigation container */
.sidebar-nav {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Styling for the list inside the sidebar */
.sidebar-menu {
    list-style: none; /* Remove bullets */
    margin: 0;
    padding: 0;
}

/* Styling for individual list items */
.sidebar-menu li {
    margin-bottom: 15px; /* Add gap between items */
}

.sidebar-menu li:not(:last-child)::after {
    content: "";
    display: block; 
    border-bottom: 1px solid #c3c3c3;
    margin-top: 10px;
    opacity: 0.7;
}

/* Styling for the links inside the list */
.sidebar-menu li a {
    display: block; /* Make links fill the entire list item */
    text-align: left; /* Align text to the left */
    padding: 10px 30px;
    font-size: 16px; /* Adjust font size */
    color: #9b9b9b; /* Set text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Optional rounded corners */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover and focus state for links */
.sidebar-menu li a:hover .sidebar-menu li,
.sidebar-menu li a:focus .sidebar-menu li{
    background-color: #f0f0f0;
    color: #c3c3c3;
}

/* Active/current menu item styling (WordPress adds a class for current items) */
.sidebar-menu li.current-menu-item a {
    color: #0073aa;
}


.navbar-header li#menu-item-toggle {
    margin-right: 25px;
    position: absolute;
    right: 50px;
    display: none;
}

.navbar-header .toggle-btn.inbound {
    margin-right: 5px;
}

/* Overlay initially hidden */
.first-visit-overlay-hidden {
    display: none !important;
}

/* Overlay full screen */
#firstVisitOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffff; /* Dark transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: #1564a6;
}

/* Centered content inside the overlay */
#firstVisitOverlay .overlay-content {
    text-align: center;
    padding: 25px;
    margin-bottom: 225px;
    width: 600px;
}
#firstVisitOverlay .header-logo{
    position: static;
    float: none;
    width: auto;
    padding: 0;
}
#firstVisitOverlay .header-logo a{
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
}

#firstVisitOverlay .header-logo .site-title{
    color: #1564a6;
    font-weight: 600;
    font-size: 34px;
    width: 350px;
}

#firstVisitOverlay h2{
    color: #15578d;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}
#firstVisitOverlay p{
    margin-bottom: 20px !important;
    font-size: 18px;
    font-weight: 500;
}

#firstVisitOverlay .header-logo img {
    width: 180px;
    height: auto;
    max-height: 300px;
    margin-bottom: 20px;
}
#firstVisitOverlay p{
    color: #0c0c0c;
}

#firstVisitOverlay .toggle-btn-wrapper {
    display: flex;
}

#firstVisitOverlay .toggle-btn {
    border-radius: 30px;
    border: none;
    background-color: #1564a6;
    color: #fff;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    box-sizing: border-box;
    width: 50%;
}

#firstVisitOverlay .toggle-btn.inbound {
    margin-right: 7.5px;
}
#firstVisitOverlay .toggle-btn.outbound {
    margin-left: 7.5px;
}

#firstVisitOverlay .toggle-btn:hover{
    background-color: #164c79;
}

#firstVisitOverlay .toggle-btn img{
    margin-right: 12px;
    object-fit: contain;
    height: 25px;
}



#firstVisitOverlay .bg-overlay-first-visit {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

#firstVisitOverlay .bg-overlay-first-visit img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 1920.999px){
    body{
        max-width: 1920px;
        margin: 0 auto;
    }
}
@media (max-width: 1920px){
    .main-slider .social-icon{
        width: 35px;
        height: 35px;
    }
    .main-slider .social-icon i{
        font-size: 19px;
    }

}
@media (max-width: 1680px){
    .main-slider .carousel-caption {
        width: 38%;
    }
}

@media (max-width: 1440px){
    .main-slider .carousel-caption {
        width: 40%;
    }
    .main-slider .carousel-caption p {
        font-size: 35px;
    }
    .main-slider .social-icon {
        width: 35px;
        height: 35px;
    }
    .main-slider .social-icon i {
        font-size: 21px;
    }
}
@media (max-width: 1180px){
    .navbar-nav li {
        margin-right: 0;
    }
}

@media (max-width: 1024px){
    .main-slider .carousel-caption {
        width: 65%;
    }
}
@media (max-width: 992px){
    .footer-logo-circle:after {
        width: 0;
    }
    .footer-logo-circle {
        transform: translate(0, -85px);
    }

    #footer-bottom .copyright-note, #footer-bottom .developer-note {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: max-content;
    }
    .footer-bottom-wrapper {
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: -110px;
    }
    #footer-bottom .copyright-note {
        bottom: 85px;
    }
    #footer-bottom .developer-note {
        margin-top: -25px;
        transform: translate(-15%, -95%);
    }
    #firstVisitOverlay .bg-overlay-first-visit {
        height: 490px;
    }
    #firstVisitOverlay .bg-overlay-first-visit img{
        object-position: left;
    }
    #firstVisitOverlay .toggle-btn{
        padding: 15px 25px;
        font-size: 17px;
    }
    .navbar-header li#menu-item-toggle {
        display: block;
    }
    .main-slider .owl-carousel .item{
        height: 65vh;
    }
    .main-slider .carousel-caption {
        width: 65%;
    }
    #menu-item-toggle .toggler-mark {
        right: 2.5px;
        top: 3.5px;
    }
    .contact-section .icon-set {
        padding: 20px 25px 10px;
        height: 120px;
    }
}

@media (max-width: 767px){
    .vc-section-heading.breaker h1 .first-word {
        display: block;
    }
    .main-slider .owl-carousel .item{
        height: 50vh;
    }
    .main-slider .carousel-caption{
        width: 95%;
    }
    .main-slider .carousel-caption p{
        font-size: 24px;
        font-weight: 600;
    }
    .sidebar {
        display: block;
    }
    .navbar-header li#menu-item-toggle {
        display: block;
    }
    #footer-bottom .developer-note {
        margin-top: -25px;
        transform: translate(-50%, -50%) !important;
    }
    #firstVisitOverlay .overlay-content {
        margin-bottom: 125px;
    }
    .main-slider .social-icon{
        width: 30px;
        height: 30px;
    }
    .main-slider .social-icon i{
        font-size: 16px;
    }
    .main-slider .carousel-caption {
        bottom: 10%;
    }
    .testimonial-slider{
        width: 100%;
    }
    #firstVisitOverlay h2 {
        font-size: 30px;
    }
    #firstVisitOverlay .header-logo .site-title {
        font-size: 24px;
        width: 250px;
    }
    #firstVisitOverlay p {
        font-size: 12px;
    }
    #firstVisitOverlay .toggle-btn{
        padding: 15px 25px;
        font-size: 17px;
    }
    .testimonial-slider .testi-box .testi-content {
        overflow: hidden;
        height: 220px;
        min-height: 50px;
    }
    .vc_custom_1728639067621 {
        margin-top: 15px !important;
    }
    .sidebar-menu li a {
        padding: 6px 30px;
        font-size: 14px;
    }
    .pack-grid-item .pack-grid-details .package-title{
        font-size: 16px;
    }
    .pack-grid-item .pack-grid-details .package-detail-list li{
        font-size: 12px;
    }
    .pack-grid-item .pack-grid-details .package-price{
        font-size: 20px;
    }
    .service-box .service-title{
        font-size: 14px;
    }
    .desti-grid-item .desti-grid-details .desti-grid-city{
        font-size: 22px;
    }
    .contact-section .icon-set{
        padding: 20px 25px 0px;
    }
    .page-title-bar h1 {
        font-size: 30px;
    }
    .pg-single-package .general-details .discounted-price span {
        font-size: 22px;
    }
}

@media (max-width: 399px){
    #firstVisitOverlay h2 {
        font-size: 20px;
    }
    #firstVisitOverlay .header-logo .site-title {
        font-size: 16px;
        width: 180px;
    }
    #firstVisitOverlay p {
        font-size: 10px;
    }
    #firstVisitOverlay .toggle-btn{
        padding: 8px 12px;
        font-size: 12px;
        min-width: 120px;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .service-box{
        width: 100%;
    }
}

@media only screen and (orientation: portrait) {
    .slider-search-strip {
      display: none;
    }
  }

  @media only screen and (orientation: landscape) {
    .main-slider .owl-carousel .item {
      height: 100vh;
    }
  }
  
  

.fadeOutHeroSlider {
    animation-name: fadeOutHeroSlider;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}

.fadeInHeroSlider {
    animation-name: fadeInHeroSlider;
    animation-duration: 2s; 
    animation-timing-function: ease-in-out;
}

@keyframes fadeOutHeroSlider {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeInHeroSlider {
    from { opacity: 0; }
    to { opacity: 1; }
}


.page-container.pg-single-package{
    margin-bottom: 30px;
    margin-top: 30px;
}

.page-container.pg-single-package .featured-packages-area {
    margin-top: 80px;
    margin-bottom: 20px;
}

.page-container.pg-single-destination{
    margin-top: 60px;
}
.page-container.pg-archive-destination{
    padding-top: 40px;
    padding-bottom: 40px;
}
.page-container.blog-wrapper{
    padding-top: 60px;
    padding-bottom: 30px;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-12.pre-post-wrapper {
    padding: 0 !important;
}
.post-wrapper .post-content {
    padding: 20px 20px 40px 50px !important;
}
.post-wrapper .post-content .post-link {
    margin-bottom: 20px !important;
}

.accommodation-item {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.accommodation-item li {
    background-color: #f8f8f8; /* Light background for list items */
    border: 1px solid #ddd; /* Add a border */
    border-radius: 4px; /* Rounded corners */
    padding: 10px; /* Padding for comfort */
    margin-bottom: 10px; /* Space between list items */
    transition: background-color 0.3s ease; /* Smooth background transition */
    height: 60px;
}

.accommodation-item li:hover {
    background-color: #e0e0e0; /* Change background on hover */
}

.page-container.page-404{
    margin-bottom: 35px;
}

/* Common tooltip styles */
.tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 12px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Tooltip for Inbound Icon */
.tooltip-inbound {
    bottom: 70%; /* Adjust this value if necessary */
    left: 25%;
    transform: translateX(-50%);
}

.tooltip-inbound::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Tooltip for Outbound Icon */
.tooltip-outbound {
    bottom: 70%;  /* Adjust this value if necessary */
    left: 68%;
    transform: translateX(-50%);
}

.tooltip-outbound::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show tooltip on hover */
.toggle-btn:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.package-tabs .tab-list li:nth-child(2) {
    display: none;
}

.vc_custom_1728980601079 {
    display: none;
}



