:root {
    --primary: #6b980c;
    --white: #ffffff;
}

.navbar-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    position: fixed;
    z-index: 999;
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
}

.navbar-main .logo {
    max-width: 100px;
}

.navbar-main .logo a img {
    width: 100%;
}

.navbar-main #navlist {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.navbar-main #navlist li {
    margin-left: 16px;
    list-style: none;
}

.navbar-main #navlist li a {
    color: #000;
    font-weight: 500;
    padding: 10px;
    position: relative;
    font-size: 16px;
}

.navbar-main #navlist li a::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 1px;
    width: 0;
    background: var(--primary);
    transition: all 0.2s;
}

.navbar-main #navlist li a:hover::before,
.navbar-main #navlist li a.active:before {
    width: 90%;
}

.navbar-main .hamburger {
    display: flex;
    flex-direction: column;
    display: none;
    transform-origin: top left;
}

.navbar-main .hamburger[class~="active"] span {
    margin-bottom: -3px !important;
}

.navbar-main .active span:nth-child(1) {
    transform: rotate(40deg);
    /* transform-origin: top left; */
}

.navbar-main .active span:nth-child(2) {
    display: none;
}

.navbar-main .active span:nth-child(3) {
    transform: rotate(-40deg);
}

.navbar-main .hamburger span {
    width: 40px;
    height: 4px;
    margin-bottom: 8px;
    background: #000;
    transition: all 0.3s;
}

@media only screen and (max-width: 991px) {
    .navbar-main #navlist {
        position: fixed;
        top: 74px;
        background: #fbfbfffa;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        left: -110%;
        transition: all 0.3s;
        /* box-shadow: 1px 10px 9px #777; */
        padding: 30px 20px;
        height: 100vh;
        z-index: 22;
    }
    .navbar-main #navlist[class~="active"] {
        left: 0;
    }
    .navbar-main #navlist li {
        margin: 0;
        padding: 12px;
    }
    .navbar-main #navlist li a {
        color: #76af0d;
    }
    .navbar-main .hamburger {
        display: flex;
    }
}


/* footer css starts here */

.footer {
    background-color: #334d6e;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.footer::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    background-image: url(../images/home-page/left-tower.png);
    z-index: 1;
    height: 100px;
    width: 172px;
    opacity: .5;
}

.footer::before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    background-image: url(../images/home-page/right-tower.png);
    z-index: 1;
    height: 100px;
    width: 172px;
    opacity: .5;
}

.footer .footer-logo {
    max-width: 200px;
}

.footer .footer-logo img {
    width: 100%;
}

.footer .footer-brief-info {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    padding: 20px 0;
}

.footer .right-content .address {
    max-width: 500px;
    padding: 16px;
}

.footer .right-content .address h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #85c010;
}

.footer .right-content .address p {
    color: #fff;
    margin-bottom: 0;
    display: flex;
}

.footer .right-content .address p i {
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
    line-height: 1.3;
}

.footer .right-content .social-media {
    display: flex;
}

.footer .right-content .social-media a i {
    padding: 10px;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 16px 0;
    box-shadow: 3px 2px 9px #626262;
    margin-left: 16px;
    color: var(--primary);
    transition: all 0.2s;
    display: block;
}

.footer .right-content .social-media a i:hover {
    box-shadow: 2px 2px 2px #62626246;
    transform: translateY(3px);
}

.footer .bottom-footer-sec {
    display: flex;
    margin: 40px 0 0 0;
    padding: 40px 0 0 0;
    justify-content: space-between;
    border-top: 1px solid #fff7;
}

.footer .bottom-footer-sec p {
    color: #fff;
}

.footer .bottom-footer-sec .imp-pages a {
    color: #fff;
    text-decoration: underline !important;
}

.footer .bottom-footer-sec .imp-pages a:nth-child(2) {
    margin-left: 20px;
}

@media (max-width: 767px) {
    .footer .footer-logo {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .footer .footer-brief-info {
        font-size: 14px;
    }
    .footer .bottom-footer-sec {
        flex-direction: column;
        align-items: center;
    }
    .footer .footer-brief-info {
        text-align: center;
    }
    .right-content {
        text-align: center;
    }
    .footer .right-content .address {
        margin: 0 auto;
    }
    .footer .right-content .address p {
        display: block;
    }
    .footer .right-content .social-media {
        justify-content: center;
    }
    .footer .right-content .social-media a:first-child {
        margin-left: 0;
    }
}


/* .footer .social-media a:hover{
    transform: scale(2);
} */