.header_top {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_top_left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header_top_left img {
    width: 90px;
}

.header_top_left>h3 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    line-height: 13px;
    color: var(--black);
}

.header_top_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header_top_right>a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 22px;
    line-height: 23px;
}

.header_top_right>a:nth-of-type(2) {
    font-size: 12px;
    text-transform: uppercase;
}


/* nav */
.nav {
    background-color: rgba(2, 140, 59, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.nav>a {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
}

@media(max-width:992px) {
    .nav {
        flex-direction: column;
        gap: 30px;
    }


    .header_top {
        padding: 25px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .header_top_left {
        gap: 20px;
    }

    .header_top_left img {
        width: 90px;
    }

    .header_top_left>h3 {
        font-family: 'Inter';
        font-weight: 600;
        font-size: 14px;
        line-height: 13px;
        color: var(--black);
    }

    .header_top_right {
        align-items: center;
    }

    .header_top_right>a {
        color: var(--black);
        text-decoration: none;
        font-weight: 500;
        font-size: 22px;
        line-height: 23px;
    }

    .header_top_right>a:nth-of-type(2) {
        font-size: 12px;
        text-transform: uppercase;
    }

}