/*
    Author: Tanishe Roberts
    Agrolynk Financial Services Limited
*/
/*Navbar*/
.navbar {
    background-color: #fff;
    height: 80px;
    margin: 20px;
    border-radius: 16px;
    padding: 0.5rem;
}
/*Logo*/
.navbar-brand {
    font-weight: 500;
    color: #1b3838;
    font-size: 24px;
    transition: 0.3s color;
}
.navbar-brand img {
    height: 150px;
    width: auto;
    display: inline-block;
}
@media (max-width: 991px) {
    .navbar-brand img {
        height: 70px;
    }
}
@media (max-width: 576px) {
    .navbar-brand img {
        height: 70px;
    }
}
/*Login Button*/
.login-button {
    background-color: #1b3838;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}
.login-button:hover {
    background-color: #84a845;
}

/*Navbar*/
.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}
.navbar-toggler:focus, 
.btn-close:focus {
    box-shadow: none;
    outline: none;
}
.nav-link {
    color: #1b3838 ;
    font-weight: 500;
    position: relative;
}
.nav-link:hover,
.nav-link.active{
    color:#1b3838;
}

/*Mobile */
@media (min-width: 991px) {
    .nav-link::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #fad264;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }
    .nav-link:hover::before,
    .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
}   
/*Hero*/
.hero-section{
    background: url(/assets/hero.png) no-repeat top;
    background-size: cover;
    width: 100%;
}
.hero-section::before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.hero-section .container {
    height: 100vh;
    z-index: 1;
    position: relative;
}
.hero-section h1 {
    font-size: 1.5rem;
}
.hero-section h2 {
    font-size: 1.2rem;
}
