.header-section {
    height: auto;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.7);
    /*background: rgba(0,0,0,0.7);*/
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-description {
    margin: 0;
    text-align: center;
    color: #fff;
}

.header-link {
    text-transform: uppercase;
    margin-left: 16px;
    margin-right: 16px;
    position: relative;
}

.header-link> a {
    color: #fff;
}

.header-link__underline {
    display: flex;
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--main-color);
    animation: .3s underline ease-in-out forwards;
    animation-delay: .2s;
}

@keyframes underline {
    100% {
        width: 100%;
    }
}

.uk-sticky-below {
    /*background: rgba(52,152,219,0.9);*/
    background: rgba(0,0,0,0.9);
    transition: .5s;
    box-shadow: 0px 5px 10px rgba(86,86,86,0.3);
}

.uk-offcanvas-bar {
    background: rgba(0,0,0,0.9);
}

.logo {
    display: flex;
    position: relative;
    z-index: 9999;
    animation-delay: .03s;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 67px;
    height: 67px;
    border-radius: 50%;
}

.menu-btn__line {
    display: flex;
    color: #fff;
}

.menu-btn__line:nth-child(2) {
    margin-top: 8px;
    margin-bottom: 8px;
}

.uk-offcanvas-bar {
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
}

.menu-links {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.menu-link {
    display: flex;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-right: 24px;
    cursor: pointer;
}

.menu-link:last-child {
    margin-right: 0;
}

.menu-plug {
    display: flex;
    width: 100px;
}

.mobile-menu-link {
    color: #fff;
    display: flex;
    text-transform: uppercase;
    margin-top: 24px;
    font-size: 20px;
}

.menu-chevron {
    display: flex;
    color: #d9d9d9;
    margin-right: 8px;
    animation-delay: .15s;
}

.mobile-menu-logo {
    display: flex;
    margin-top: auto;
    margin-left: auto;
    /*width: 100px;*/
}

@media screen and (max-width: 768px) {
    .header-section {
        height: auto;
        padding-top: 10px;
        background: rgba(0,0,0,0.7);
    }

    .uk-sticky-below {
        background: rgba(0,0,0,0.8);
        transition: .5s;
    }

    .double-logo {
        opacity: 0;
    }
}
