@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}


#header{
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header .header-scrolled{
    top: 0;
}

#header .logo{
    margin: 0;
    padding: 0;
    line-height: 1px;
}

#header .logo img{
    max-height: 65px;
}


.navbar{
    padding: 0;
}

.navbar ul{
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li{
    position: relative;
}

.navbar ul li{
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a, .navbar a:focus{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #228B22;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
}

.navbar a i, .navbar a:focus i{
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover a{
    color: #32CD32;
    border-color: #32CD32;
}

.pickup-btn{
    margin-left: 25px;
    background: #228B22;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.pickup-btn:hover{
    background: #32CD32;
    color: #fff;
}

.mobile-nav-toggle{
    color: #228B22;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.fa-times{
    color: #fff;
}

.navbar-mobile{
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #228B22;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul{
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li{
    padding: 0;
}

.navbar-mobile a{
    padding: 10px 20px;
    font-size: 15px;
    color: #228B22;
    border: none;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover a{
    color: #32CD32;
}

.navbar-mobile .getstarted{
    margin: 15px;
}



section{
    padding: 40px 0;
    overflow: hidden;
}

.section-bg{
    background: rgb(245, 244, 244);
}

.section-title{
    margin-top: 70px;
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #228B22;
}

.section-title h2:before{
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 20px);
}

.section-title h2::after{
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #32CD32;
    bottom: 0;
    left: calc(50% - 20px);
}

.text{
    margin-top: 30px;
}

.text span{
    font-size: 25px;
    font-weight: 500;
}

.sub{
    margin-left: 45px;
    background: #cbf7cb;
    width: 100%;
    height: 100%;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 10px;
}




















.back-to-top {
    position: fixed;
    visibility: visible;
    opacity: 1;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #228B22;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #32CD32;
    color: #fff;
}





@media (max-width: 991px){
    .navbar ul {
        display: none;
    }

    .navbar-mobile ul, .mobile-nav-toggle{
        display: block;
    }

    .sub{
        margin-left: 20px;
    }
}

@media (max-width: 768px){
    .pickup-btn{
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}
