*{
    font-family:'Raleway', sans-serif;
}
.whatsappanimation{
    position:fixed;
    top:48%;
    right:20px;
    z-index:999999;
    transition:0.7s all linear;
    animation: whatsappanim 1s linear infinite;
}
.whatsappanimation:hover{
    animation:none;
    transform: rotate(720deg);
}
.navbar-brand img{
    height: 100px;
}
.headerbooknow{
    position:absolute;
    right:20px;
    top:45px;
    font-weight:600
}
.text-justify{
    text-align: justify;
}
.icons{
    text-align:center;
}
.icon {
    display:inline-block;
    background:black;
    padding:10px;
    border-radius:50%;
}
.iconrounded
{
    height:30px;
    width:30px;
    text-align:center;
    line-height:30px!important;
    font-size:20px!important;
    background:white;
    border-radius:50%;
}
.bgImage{
    background-position: center;
    background-size:100% 100%;
    background-repeat:no-repeat;
}
.bgOverlayblack{
    background:rgba(0,30,0,30%);
    //background:rgba(0,40,0,0.2);
    width:100%;
    position:relative;
    z-index:1;
}
.dropdown-menu-end.headerdrowndown{
    top:70%;
    right:20px;
    border-radius:0px;
}
.bgOverlayblackhoverfull:hover{
    background:rgba(0,100,0,1);
    transition: 1s all;
}
.bgBlack{
    background:black!important;
}
.headertext, .headertextsimple{
    height:200px;
    font-size:40px;
    width:50%;
    position:absolute;
    top:50%;
    left:50%;
    z-index:0;
    transform:translate(-50%,-50%);
}
.headertextsimple{
    height:auto;
    top:25%;
}
.headnav .nav-item .nav-link{
    font-weight:900;
}
.loader{
    position:fixed;
    z-index:9999;
    background:rgb(20 53 0 / 90%);
    height:100%;
    width:100%;
    display:none;
}
.loader img
{
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    position:absolute;
    height:200px;
    filter: grayscale(100%) sepia(100%) hue-rotate(74deg);
}
@media (min-width: 767px)
{
    .space-100{
        margin-top:100px;
    }
    .headnav .nav-item{
        margin-right:20px;
    }
    .headnav{
        margin-right:160px;
    }
    .headnav .nav-item a{
        position:relative;
    }
    .headnav .nav-item:hover a::before,
    .headnav .nav-item.active a::before
    {
        content:"";
        border-top:1px white solid;
        height:1px;
        width:100%;
        position:absolute;
        top:5px;
        left:0px;
    }
    .headnav .nav-item:hover a::after,
    .headnav .nav-item.active a::after
    {
        content:"";
        border-bottom:1px white solid;
        height:1px;
        width:100%;
        position:absolute;
        bottom:0px;
        left:0px;
    }    
}
@media (max-width: 767px)
{
    .headerbooknow{
        top:28px;
    }
    .navbar-brand img{
        height: 70px;
    }
    .headertextsimple{
        top:30%;
    }
    .mbl-h-500{
        height:500px;
    }
    .space-100{
        margin-top:50px;
    }
    .headnav .nav-item{
        padding-left:10px;
    }
    .headnav .nav-item{
        background: rgba(0,30,0,1);
    } 
    .headnav .nav-item:hover{
        background:rgba(0,0,0,0.4);
        color:white;
    }
    .headertext{
        width:90%;
    }
}

@keyframes whatsappanim{
    0%{
      top:48%;  
    }
    50%{
        top:52%;
    }
    100%{
        top:48%;
    }
}