/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@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');

:root {
    /* --primary: #86B817;
    --secondary: #FE8800; */
    --primary: #040943;
    --secondary: #d4af37;
    --light: #F5F5F5;
    --dark: #14141F;

    --h1-font: 'h1font';
    --h2-font: 'h2font';
    --medium-font: "Inter", sans-serif;
    --para-font: "Poppins", sans-serif;
}


@font-face {
    font-family: 'h1font';
    src: url('../lib/font/distrela/Distrela-Demo.ttf') format('truetype');
}


@font-face {
    font-family: 'h2font';
    src: url('../lib/font/birds_of_paradise/Birds\ of\ Paradise\ ╕\ PERSONAL\ USE\ ONLY.ttf') format('truetype');
}
  

a{
    text-decoration: none;
}

img{
    border-radius: 10px;
}

h1{
    font-family: var(--h1-font);
}

h2{
    font-family: var(--h2-font);
}


h3,h4,h5{
    font-family: var(--medium-font);
    font-weight: 600;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-primary{
    background-color: var(--primary) !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



.text-primary{
    color: var(--secondary) !important;
}


/*** Button ***/
.btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-primary{
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover{
    background-color: #020739 !important;
    border-color: transparent !important;
    color: var(--secondary) !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


.btns{
    border-top-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 0px;
    color: white !important;
    box-shadow: none !important;
    transition: .5s all ease-in-out;
}

.btns:hover{
    background-color: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
    color: white !important;
    border-top-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Inter", sans-serif !important;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

@media(max-width:991px){
    .navbar-light{
        background-color: var(--primary) !important;
        color: white !important;
    }
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: white !important;
}

.logo{
    object-fit: cover;
    background-size: cover;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        /* background: #FFFFFF; */
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        /* color: var(--dark) !important; */
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

.navbar-toggler{
    box-shadow: none !important;
    border-radius: 0px !important;
    color: white !important;
}

/* .bg-color{
    background-color: var(--primary);
} */

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        /* padding: 25px !important; */
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--primary);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

.sticky-top.navbar-light{
    background-color: var(--primary);
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, 0.508), rgba(20, 20, 31, 0.536)), url(../img/ct2.jpg);
    /* background-position: center center; */
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.hero-header h1{
    font-family: var(--h1-font) !important;
    font-size: 60px;
    /* letter-spacing: 1px; */
}

@media (max-width:768px) {
    .hero-header h1{
        font-size: 50px !important;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/

.hero-headers {
    background: linear-gradient(rgba(20, 20, 31, 0.508), rgba(20, 20, 31, 0.536)), url(../img/tl2.jpg);
    /* background-position: center center; */
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/


.bg-clr{
    position: relative;
}

.bg-clr::before{
    content: '';
    background-color: #f3f3f3;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (min-width: 992px) {
    .bg-clr::before {
        width: 67%;
    }
}


.bg-clrs{
    position: relative;
}

.bg-clrs::before{
    content: '';
    background-color: #f3f3f3;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (min-width: 992px) {
    .bg-clrs::before {
        width: 67%;
    }
}

@media (min-width: 992px) {
    .bg-clrs::before {
        right: 0;
    }
}

.services-section img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

.services-section h6{
    font-family: var(--medium-font);
    font-weight: 700;
    font-size: 15px;
}


.service_carousel .position-absolute {
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top: 0px;
    bottom: 0px;
}

.service_carousel img {
    display: flex;
    height: 500px !important;
    min-height: 500px;
}

.service_carousel img{
    background-size: cover;
    object-fit: cover;
}


.service_carousel .position-absolute h4 {
    color: white;
    background: linear-gradient(-90deg, transparent, var(--primary));
    padding: 5px 10px;
    font-size: 17px !important;
}


.vila-img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}




/*** Index Carousel ***/


.index-carousel .owl-nav{
    position: absolute;
    right: 10%;
    top: 80%;
}

@media(max-width:991px){
    .index-carousel .owl-nav{
        display: none;
    }
}   

.owl-theme .owl-nav{
    font-size: 30px;
    display: flex;
    gap: 5px;
    color: white !important;

}

/* .owl-nav .owl-prev span{
    background-color: var(--primary);
    
} */

/* .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 6px 7px;
    background: var(--primary);
    border: 1px solid var(--primary);
    display: inline-block;
    cursor: pointer;
    border-radius: 2px;
    transition: .5s all ease-in-out;
    display: flex;
    align-items: center;
} */
 
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
    color: #e7e7e7;
    text-decoration: none;
}


.index-carousel img{
    height: 450px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}





/*** Index cards ***/

.cards{
    /* box-shadow: 0 0 45px rgba(0, 0, 0, .08); */
    border-radius: 10px;
}

.cards img{
    height: 300px !important;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}



/*** Index Service ***/


.index-service-section h1{
    font-size: 65px;
}

@media (max-width:768px){
    .index-service-section h1{
        font-size: 50px;
    }
}


.indexser_carousel .position-absolute {
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top:0px;
    bottom: 0px !important;
}

.indexser_carousel img {
    display: flex;
    height: 500px;
    width: 100%;
    background-size: cover;
    object-fit: cover;
    min-height: 500px;
}


.indexser_carousel .position-absolute h4 {
    color: white;
    background: linear-gradient(-90deg, transparent, var(--primary));
    padding: 5px 10px;
    font-size: 18px !important;
}







/*** CTA Section ***/

.cta-section{
    background-image: url(../img/ct1.jpg);
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-color: #0409438e;
    background-blend-mode: multiply;
}

.cta-section h1{
    font-size: 65px;
}

@media (max-width:768px){
    .cta-section h1{
        font-size: 50px;
    }
}


.tick{
    font-size: 18px;
    color: var(--secondary);
}


/*** Destination ***/
.destination img {
    transition: .5s;
    border-radius: 10px !important;
}

.destination a:hover img {
    transform: scale(1.1);
    border-radius: 10px !important;
}

.destination img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

.loc-icon{
    font-size: 23px;
    color: var(--secondary);
}

.destination .dest-card{
    transition: .5s all ease-in-out;
}

.destination .dest-card:hover{
    box-shadow: 0px 0px 15px #e6e6e6;
    border-radius: 10px;
}



.portfolio img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

.video-tag video{
    height: 500px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}


/*** Contact ***/

input, textarea{
    box-shadow: none !important;
}



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    /* border-top: 1px solid rgba(256, 256, 256, .1); */
}

.footer .copyright .lefts a{
    color: var(--secondary) !important;
}

.footer .footer-menus ul li{
   /* border-right: 1px solid rgb(255, 255, 255) !important;  */
   /* margin-right: 15px !important;
   padding-right: 15px !important; */
}

@media(max-width:768px){
    .footer .footer-menus ul li{
        /* text-align: center !important; */
        /* margin-right: 0px !important;
        padding-right: 0px !important; */
    }
}

.footer .footer-menus ul li a {
   /* margin-right: 15px !important;
   padding-right: 15px !important; */
    /* border-right: 1px solid rgb(255, 255, 255) !important; */
    transition: .5s;
    color: white !important;
    transition: .5s all ease-in-out;
}

.footer .footer-menus ul li a:hover{
    color: var(--secondary) !important;
}

.footer .social a{
    color: white;
    text-align: center;
}

.footer .social a:hover{
    color: var(--primary) !important;
}

.footer .footer-menus ul li a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none !important;
}

.footer .footer-menus ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none !important;
}




/**** Whatsapp ****/

.whatss a{
    transition: .5s ;
    
}
  
.whatss span{
    font-size: 0px;
     word-spacing: -40px;
    transition: .5s ;
   
}
  
.whatss:hover span{
   font-size: 13px;
   word-spacing:  0px;
    transition: .5s all;
    /* margin-right: 50px; */
}



.whats{
    /* animation: moveDown 5s linear infinite !important; */
    animation: floatUp 5s ease-in-out infinite; /* slightly faster */
    will-change: transform;
}



@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px); /* move up */
  }
  100% {
    transform: translateY(0);     /* return to start */
  }
}

/* @keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-50px); 
  }
  50% {
    transform: translateY(0);     
  }
  75% {
    transform: translateY(10px);  
  }
  100% {
    transform: translateY(0);     
  }
} */


/* @keyframes moveDown {
    0% {
      top: 100%; 
    }
    50%{
        top: 90%;
    }
    100% {
      top: 80%; 
    }
} */