header {
    position: fixed;
    width: 100%;
    background: #FFF;
    top: 0;
    z-index: 10;
    box-shadow: 2px 4px 5px 2px #00000026;
}

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

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

header .social-links a {
    width: 30px;
}

header .social-links a img {
    height: 15px;
}

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

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

.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: 0 10px;
    padding: 3px 10px;
    display: inline-block;
    position: relative;
    font-size: 18px;
}

.site-header .navigation a.dropdown-item {
    margin: 0;
}

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

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