@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
    font-family: "Rubik", sans-serif;
    padding: 0px;
    margin: 0px;
    list-style: none !important;
    text-decoration: none !important;
}


:root{
    --primary: #00538a;
    --secondary: #e0b700;
}

p{
    text-align: justify;
}

/*** Navbar ***/

.bg-color{
    background-color: white !important;
}

.navbar{
    margin-top: 20px;
    z-index: 999999 !important; 
    width: 100%;
    transition: .5s ease-in-out;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-brand h2{
    color: var(--primary);
    font-size: 27px !important;
    font-family: "Overpass", sans-serif !important;
}

@media(max-width:768px){
    .navbar-brand h2{
        font-size: 20px !important;
    }
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 21px 0.5rem;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600 !important;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media(max-width:992px){
    .navbar-nav{
        background-color: white;

    }
    .navbar .navbar-nav .nav-link{
        color: black !important;
    }
}

.navbar .nav-item .dropdown-menu{
    border-radius: 0px !important;
}

.navbar .nav-item .dropdown-menu .dropdown-item{
    font-size: 15px;
    font-weight: 600 !important;
    font-family: "Overpass", sans-serif;
    text-transform: uppercase;
    transition: .5s all ease-in-out;
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover{
    color: var(--secondary);
}

.navbar .nav-item .dropdown-menu .dropdown-item.active{
    background-color: var(--secondary) !important;
    color: white !important;
}

.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
}

.menu{
    font-size: 25px;
    color: var(--primary);
}

/*** Navbar ***/




/*** Banner ***/



/* .banner img{
    height: 80vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
} */

.banner{
    background-image: url(../imgs/beach1.jpg);
    height: 80vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-color: #000000a8;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
}



.banner .contents{
    position: absolute;
    content: "";
    top: 40%;
    left: 0px;
    color: white !important;
}



/*** Banner ***/


.bg-breadcrumb {
    background: linear-gradient(#000000ce, #0000008f), url(../imgs/beach2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    object-fit: cover !important;
    background-size: cover !important;
    /* background-attachment: fixed; */
    padding: 150px 0 50px 0;
}

@media(max-width:768px){
    .bg-breadcrumb{
        padding: 50px 0 50px 0 !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: white !important;
}




.img-content{
    background-image: url(../imgs/beach3.jpg);
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-color: #000000a9;
    background-blend-mode: multiply;
    padding: 150px 50px;
}


@media(max-width:768px){
    .img-content{
        padding: 150px 20px;
    }
}

.border-primary{
    border-width: 4px !important;
    border-color: var(--secondary) !important;
}


/*** Gallery ***/


.gallery-item {
    overflow: hidden;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
}
  
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
  
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
  
.gallery-img{
    height: 450px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}


/*** Gallery ***/



/*** Contact ***/

.contact .contact-infos{
    padding: 30px 30px;
    background-color: #f5f5f5;
}

.contact .contact-infos i{
    font-size: 15px;
    color: white;
    background-color: var(--primary);
    padding: 10px;
}

.contact input{
    /* border: 0px; */
    /* border-bottom: 1px solid rgb(206, 200, 200) !important; */
    border-radius: 0px;
    box-shadow: none !important;
}
.contact input:focus{
    box-shadow: none !important;
}
.contact textarea{
    border-radius: 0px;
    box-shadow: none !important;
}
.contact textarea{
    box-shadow: none !important;
}
.btns{
     background-color: var(--primary) !important;
     border-radius: 0px !important;
     border: 1px solid var(--primary) !important;
     color: white !important;
     transition: .5s all ease-in-out !important;
     transition-delay: 0s, 0.7s;
}
.btns:hover{
    background-color: transparent !important;
    color: var(--primary) !important;
}


/*** Contact ***/



/*** Footer ***/

.footer{
    background-color: var(--primary);
}

.footer .copyright a{
    color: var(--secondary);
}


/*** Footer ***/


.whats a{
    transition: .5s ;
    
}
  
.whats span{
    font-size: 0px;
     word-spacing: -40px;
    transition: .5s ;
   
}
  
.whats:hover span{
   font-size: 13px;
   word-spacing:  0px;
    transition: .5s all;
    /* margin-right: 50px; */
}

.call-icon{
    font-size: 33px;
    color: white;
}