@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body{
    /* overflow: hidden; */
    /* padding-top: 90px; */
    overflow-x: hidden;
    color: #505962;
    /* background-color: #ebe9f1 !important; */
    background-color: #ffffff !important;
}


.top-bar {
    font-size: 20px;
    position: fixed; /* Change from relative to fixed */
    top: 0; /* Ensure it stays at the top of the page */
    width: 100%; /* Make it span the entire width of the page */
    z-index: 101; /* Ensure it sits above other elements, including the navbar */
}

.sticky-top {
    top: 30px; /* Adjust this value to match the height of your top bar */
    transition: .5s;
}
/* navbar stles */

nav{
    
    border-bottom: 1px solid rgb(231, 223, 223);
    margin-bottom: 5px;
    z-index: 105;
}

.navbar .sticky-top {
    top: -100px;
    transition: .5s;
}





.navbar{
    background: #f8f9fa;
    padding: 0;
    height: 90px;
    z-index: 100;
    
}
.bg-custom{
    background: #f8f9fa !important;
}


.navbar-brand img{
    height: 60px;
    padding-left: 50px;
}

.navbar-nav{
    padding-right: 50px;
}

.navbar-nav li{
    padding: 0 10px;
    background-color: #f8f9fa;
    line-height: 4;
}

.navbar-nav li a{
    color: #012f6a !important;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 18px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;


}

.navbar-nav .active{
    color: rgb(238, 89, 34) !important;
    
}



.nav-link:hover{
    color: rgb(238, 89, 34) !important;
    font-weight: bold;
}

.nav-link.active{
    color: rgb(238, 89, 34) !important;
    font-weight: bold;
}
.nav-link
{
    position: relative;
}

.nav-link::before
{
    content: ' ';
    position: absolute;
    background-color: rgb(238, 89, 34);
    height: 4px;
    bottom: 30%;
    width: 0%;
    transition: all .5s ease-in-out;
}

.nav-link:hover::before
{
    content: ' ';
    position: absolute;
    /* background-color: rgb(238, 89, 34); */
    background-color: #012f6a;
    height: 4px;
    bottom: 30%;
    width: 90%;
}


@media screen and (max-width:720px) {
    .nav-link:hover::before{
        width: 50%;
    }
}




/* Footer styles */

footer{
    background-color: #f8f9fa !important;
    border-top: 1px solid rgb(237, 230, 230);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.pt-5{
    padding-top: 10px !important;
}

.footer-logobox{
    
    display: flex;
    justify-content: flex-end;
}

footer h5{
    
    color: rgb(238, 89, 34);
}

.footer-logo{
    height: 60px;
}

.foot-locations ul{
    padding-left: 5px !important;
}

.foot-locations {
    padding-left: 55px !important;
}

footer a,footer p{
    color: #012f6a;
}

.foot-img{
    width: 30px;
}



.foot-links p{
    margin-bottom: 4px !important;
}

.foot-locations li {
    list-style: none;
}

.foot-locations li a{
    text-decoration: none !important;
}

.foot-locations li a:hover{
    color: rgb(238, 89, 34);
}



.wa-size{
    font-size: 24px;
}

@media screen and (max-width:720px){
    .foot-enquiry{
        padding-top: 20px;
    }
    .footer-logo img{
        width: 60%;
    }
    .foot-enquiry,.foot-locations{
        border-bottom: 1px solid rgb(221, 215, 215);
    }
    .foot-locations{
        padding-top: 10px;
        padding-left: 5px !important;
    }
    .foot-locations ul{
        padding-left: 0px;
    }

    .foot-links{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}



.fa-whatsapp{
    font-size: 40px;
    color:#FFF;
    margin-top: 8px;
    margin-left: 2px;
}
.float{
    position: fixed;
    z-index: 104;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
 
}