header {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.top-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-direction: column;
    -moz-box-direction: normal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}
.top {
    align-items: center;
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.top__left,
.top__right {
    display: flex;
    align-items: center;
}

.top__left-social ul li:not(:last-child) {
    margin-right: 8px;
}
.top__left-social {
    margin-right: 5rem;
}

.top .logo {
    width: 150px;
}

.top nav {
    border: none;
}

.top nav > ul {
    display: flex;
}
.top nav > ul li {
    position: relative;
}
.top nav > ul > li > a {
    display: flex;
    padding: 30px 15px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    color: #000;
}

.top nav > ul > li > a:hover {
    background: #fed620;
}

.top nav > ul a i {
    margin-left: 10px;
    margin-top: 3px;
}

.drop-down {
    visibility: hidden;
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    transition: 0.2s ease;
    z-index: 2;
    background: #fed620;
    padding: 10px 0;
    width: max-content;
}

.drop-down a {
    color: #000;
    padding: 10px 20px;
    display: block;
    font-weight: bold;
}

.drop-down a:hover {
    color: #fed620;
    background-color: #000;
}

.top nav > ul > li:hover .drop-down {
    top: 100%;
    visibility: visible;
    opacity: 1;
}
.hamburger {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-left: 5rem;
}

.hamburger span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 3px;
    background-color: #000;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translate(-50%);
    transform: translateY(-50%);
}

.hamburger span::after,
.hamburger span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: inherit;
    top: -8px;
    left: 0;
}

.hamburger span::after {
    top: 8px;
}

@media (max-width: 768px) {
    .top .logo {
        width: 100px;
    }

    .top__left-social,
    .hamburger {
        margin: 0;
    }
}
