.header-section {
    height: auto;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.5);
    padding-top: 5px;
}

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

.header-link {
    text-transform: uppercase;
    margin-left: 8px;
    margin-right: 8px;
    width: auto;
    user-select: none;
    font-size: 14px;
}

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

.uk-sticky-below {
    background: #fff;
    transition: .5s;
    box-shadow: 0 5px 10px rgba(86,86,86,0.3);
}

.uk-offcanvas-bar {
    background: var(--main-color);
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
    width: 80%;
}

.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;
}

.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;
    user-select: none;
}

.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: 16px;
    width: 100%;
}

.mobile-menu-link__text {
    display: flex;
    width: 76%;
}

.menu-chevron {
    display: flex;
    color: #999;
    /*margin-right: 8px;*/
    animation-delay: .15s;
    width: 13%;
}

.desctop-sublinks {
    position: absolute;
    /*left: 0;*/
    /*background: rgba(15,62,106,0.5);*/
    background: rgba(255,255,255,0.5);
    margin-top: 5px;
    width: auto;
    padding: 0 32px;
    padding-top: 12px;
    padding-bottom: 32px;
    margin-left: -32px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.mobile-sublinks {
    transition: all .3s;
    transform-origin: top;
    height: auto;
    flex-direction: column;
    text-transform: none;
}

.desctop-menu-sublink {
    margin-top: 12px;
}

.mobile-sublinks__text {
    font-weight: 400;
    font-size: 14px;
    color: #2d2d2d;
}

.mobile-sublinks__text:hover {
    color: #2d2d2d;
    text-decoration: underline;
}



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

@media screen and (max-width: 1074px) {
    .header-link {
        font-size: 13px;
    }
}

@media screen and (max-width: 1021px) {
    .header-link {
        font-size: 12px;
    }
}

@media screen and (max-width: 992px) {
    .header-section {
        background: rgba(0,0,0,0.7);
    }

    .mobile-sublinks__text {
        font-weight: 300;
        font-size: 14px;
        color: #d9d9d9;
    }

    .mobile-sublinks__text:hover {
        color: #fff;
    }
}

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

    .uk-sticky-below {
        background: var(--main-color);
        transition: .5s;
    }

    .mobile-sublinks__text {
        margin-left: 13%;
    }
}
