*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif, 'Nunito';
    background-color: #f2f2f2;

}


.loader_bg{
    position: fixed;
    z-index: 999999;
    background-color: #fff;
    width: 100%;
    height: 100%;
}


.loader{
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before, .loader:after{
    content: '';
    border: 1em solid #116976;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader:before{
    animation-delay: .5s;
}

@keyframes loader{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}


/* navbar */
.top{
    height: 100px;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.top-icon i{
    color:#116976 !important;
    font-size: 18px;
    margin-top: 15px;
    margin-left: 10px;
}

.top-iconinfo i{
    color:#808080 ;
    margin-top: 15px;
    margin-left: 10px;
    font-size: 18px;
}

.top-iconinfo p{
    color:#808080 !important;
    margin-top: 15px;
    margin-left: 5px;
}


header{
    font-size: 15px;

}


/* .navbar-sticky{
    position: sticky;
    top: 0%;
    z-index: 1000;
  
} */
.navbar{    
    background-color: #fff;
    height: 100px;
    margin: 30px 130px;
    border-radius: none;
    padding: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-top: 50px;
}

.navbar-brand img{
    width: 200px;
    height: 100px;
}
.nav-link i{
    color: #00A6B4;
}
.offcanvas-title img{
    width: 200px;
    height: 100px;
}

.navbar-toggler{
    border: none;
    font-size: 20px;
}

.navbar-toggler:focus , .btn-close:focus{
    box-shadow: none;
    outline: none;
}

.nav-link{
    color: #776666;
    font-weight: 500;
    position: relative;
}

.nav-link:hover , .nav-link:active{
    color: #000;
}

.dropdown-item:hover , .dropdown-item:active {
    background: none;
    color: #116976;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.dropdown-menu{
    margin-top: 7px;
}

.bg-light{
    
    margin: 0px;
    transition: 0.5s margin;
    position:sticky;
    top: 0%;

}

/* navbar */

/* carousel */
.mySlides {
    display: none;
}
img {
    vertical-align: middle;
}

/* Slideshow container */

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  z-index: 0;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
  background-color: rgba(0,0,0,0.8);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: #116976;
}

/* Caption text */
.text {
  position: relative;
  bottom: 250px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.carousel-btn{
    background-color: #116976;
    color: #ffffff;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    margin: 2px;
}

.carousel-btn:hover{
    background-color: #2092a3;
    color: #ffffff;
    text-decoration: none;
}


.text h1{
    color: #ffffff;
    font-size: 80px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.text h4{
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}



/* Fading animation */
.fadee {
  -webkit-animation-name: fadee;
  -webkit-animation-duration: 1.5s;
  animation-name: fadee;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadee {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fadee {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}

@media only screen and (max-width: 500px) {
  .prev, .next,.text {font-size: 14px}
}
}

/* carousel */


/* booking */

.booking {
    position: relative;
    margin-top: -50px !important;
    z-index: 1;
}

.form-container {
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    flex-wrap: wrap;
    margin-top: -20px;
 
}

.form-container input, .form-container select {
    padding: 10px ;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: 16px;
    width: 200px;
    margin: 5px;
}
.form-container button {
    padding: 10px 20px;
    background-color:#116976;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.form-container button:hover {
    background-color: #157a8a;
}
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
        align-items: stretch;
    }
    .form-container div {
        width: 100%;
        margin: 5px 0;
    }
    .form-container input, .form-container select, .form-container button {
        width: 100%;
    }

    .booking {
        position: relative;
        margin-top: 50px !important;
        z-index: 1;
    }
}

/* booking */


/* about */


.about-text{
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-left: -100px;
    position: relative;
 
}


.about-btn {
    background-color: #116976;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    margin: 2px;
}

.about-btn:hover{
    background-color: #2092a3;
text-decoration: none;
color: #fff;
cursor: pointer;
}

.about-text h6{
    color: #116976;
    font-size: 20px;
    letter-spacing: 5px;

}

.about-text h1{
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif, 'Nunito';
}




/* about */

/* features */

.features{
    background-color: #116976;
    color: #ffffff;
    cursor: pointer;
}

.features-text h5{
    color: #000000;
    font-size: 20px;
    margin-left: 15px;
}

.features-text p{
    color: #8e8e8e;
    font-size: 16px;
    margin-left: 15px;
}

/* features */


/* top beahes */

.destination-text h6{
    color: #116976;
    font-size: 16px;
    letter-spacing: 5px;
}

.destination-text h1{
    color: #1e1e1e;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.destination-item{
height:100%;
overflow: hidden;
}

.destination-item img {
    transition: transform 0.5s;
    height: 100%;
    object-fit: cover;
}

.destination-item:hover img {
   transform: scale(1.5);
}

.destination-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* top beaches */


/* services */

.services-text h6{
    color: #116976;
    font-size: 16px;
    letter-spacing: 5px;
}

.services-text h1{
    color: #1e1e1e;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-item:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition:.5s ;
}

.service-item i {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #116976;
    background: #FFFFFF;
    color: #116976;
    transition: .5s;
    font-size: 30px;
}

.service-item i:hover {
    background: #116976;
    color: #FFFFFF;
   cursor: pointer;
}

/* services */


/* packages */

.package-item:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition:.5s ;
    cursor: pointer;
}

.packages-text h6{
    color: #116976;
    font-size: 16px;
    letter-spacing: 5px;
}

.packages-text h1{
    color: #1e1e1e;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.package-item i{
    color: #116976;
    margin-right: 5px;
}
/* packages */


/* booknow */

.bg-booknow {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/BOOKNOW.jpeg"), no-repeat center center;
    background-size: cover;
}
.booknow-text h6{
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 5px;
}

.booknow-text h1{
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.booknow-text li i{
    color: #ffffff;
    margin-right: 10px;
}

.booknow-form{
background: #116976;
}

.form-group{
    margin-bottom: 20px;  
}

form input, form select{
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: 16px;
    width:100%;   
}

.booknow-btn {
    background-color: #116976;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 5px;
   
}
.booknow-btn:hover{
    background-color: #2092a3;
    color: #ffffff;
}
/* booknow */


/* travel guide */
.travelguide-text h6{
    color: #116976;
    font-size: 16px;
    letter-spacing: 5px;
}

.travelguide-text h1{
    color: #1e1e1e;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}


.team-social a{
    color: #ffffff;
    margin: 0 5px;
    text-decoration: none;
    border-color: #116976;
}

.team-social a:hover{
    background-color: #116976;
    color: #ffffff;
    text-decoration: none;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.team-item:hover .team-social {
    background: rgba(0, 0, 0, 0.8);
    visibility: visible;
    transition: .3s;
    cursor: pointer;
}

.team-item:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
}
/* travel guide */

.section__container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    text-align: center;
  }
  
  
  .testimonials__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .card {
    padding: 2rem;
    display: grid;
    gap: 1rem;
    background-color:#ffffff;
    border-radius: 5px;
    cursor: pointer;
  }

  .card:hover {
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
  
  .card i {
    font-size: 2.5rem;
    color: #116976;
  }

  
  
  .card p {
    font-size: 1rem;
    font-weight: 500;
  }
  
  .card hr {
    width: 40px;
    margin: auto;
    color: #767268;
  }
  
  .card img {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 100%;
    border: 1px solid #116976;
  }
  
  .card .name {
    font-size: 0.9rem;
    font-weight: 400;
    color: #767268;
    transition: 0.3s;
  }
  
  .card .name:hover {
    color:#116976;
  }
  


  .blog-date {
    position: absolute;
    width: 70px;
    height: 60px;
    top: 15px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #116976;
}

.blog-item:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
    transition: .2s;

}

.blog-item a:hover{
    color: #116976;
    text-decoration: none;
}

.blogg a{
    color: #116976;
    text-decoration: none;
}








/* footer */

.footer-bg{
    background-color:#ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.footer-bg p{
    color:  #000000;
}

.footer-bg h3{
    color:#000000 ;
}

.footer-bg .footer-links a{
    color: #000000;
    text-decoration: none;
}

.footer-bg .footer-links a:hover{
    color: #116976;
    text-decoration: underline;
}


.footer-bg .footer-links a i{
    color: #116976;
    padding:    0px 10px;
}

.footer-btn {
    background-color: #116976;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    margin: 2px;
}

.footer-btn:hover{
    background-color: #ffffff;
    color: #116976;
    text-decoration: none;
}


.footer-btnn {
    background-color: #116976;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    margin: 2px;
}
.footer-btnn:hover{
    background-color: #2092a3;
    color: #ffffff;
    text-decoration: none;
}




.contact-links i{
    color: #116976;
    margin-right:10px;
    
}




.footer-last{
    background-color: #116976;
    color: #ffffff;
}

.footer-last a {
    color: #55e8ff;
    
    text-decoration: none;
}

.footer-last a:hover {
    
    text-decoration:underline;
}


.input-group .form-control::placeholder{
    color: #116976;
}

/* footer */




/* bottom to top button */


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #116976;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
}

.scroll-to-top:hover {
    background-color: #177786;
}

/* bottom to top button */
