header .top-header {
    background-color: #EDEDED;
    padding: 5px 25px;
}

header .top-header {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

header .top-header a {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

header .site-header {
    background-color: #FFF;
    padding: 10px 25px;
}

.site-header .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header .header-logo span {
    color: #00662B;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.site-header .navigation a {
    margin: 10px 20px;
    padding: 3px 10px;
    display: inline-block;
    position: relative;
}

.site-header .navigation a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    border-bottom: 4px solid #FAA81A;
    border-radius: 15px;
}

.header-logo img {
    height: 50px;
}