@media screen and (max-width: 980px) {
    header {
        display: none;
    }
    .mobile-top {
        display: flex;
        position: fixed;
        z-index: 50;
        top: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
        justify-content: space-between;
        align-items: center;
        background-color: var(--dark-color);
    }
    .mobile-top-right {
        align-items: center;
    }
    .mobile-top-opener {
        width: 30px;
        height: 17px;
        margin-left: 20px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    .mobile-top-opener span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: var(--white-color);
        border-radius: 0;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    .mobile-top-opener span:nth-child(1) {
        top: 0px;
    }
    .mobile-top-opener span:nth-child(2),
    .mobile-top-opener span:nth-child(3) {
        top: 7px;
    }
    .mobile-top-opener span:nth-child(4) {
        top: 14px;
    }
    .mobile-top-opener.open span:nth-child(1) {
        top: 7px;
        width: 0%;
        left: 50%;
    }
    .mobile-top-opener.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .mobile-top-opener.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .mobile-top-opener.open span:nth-child(4) {
        top: 7px;
        width: 0%;
        left: 50%;
    }
}

@media screen and (max-width: 370px) {
    .mobile-top-logo {
        max-width: 120px;
    }
    .mobile-top-logo svg {
        max-width: 100%;
        height: auto;
    }
    .mobile-top-button button {
        font-size: 11px;
    }
}

.mobile-dd {
    display: none;
}

@media screen and (max-width: 980px) {
    .mobile-dd {
        display: block;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 80px 20px 30px;
        box-sizing: border-box;
        background-color: var(--dark-color);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        /* transform: translateY(-100%); */
        transition: all .5s ease;
    }
    .mobile-dd.open {
        z-index: 40;
        visibility: visible;
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
    .th-menu-set li {
        line-height: 1;
        margin: 0;
    }
    .th-menu-set li a {
        font-size: 14px;
    }
    .mobile-dd-info {
        margin: 30px 0;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-dd-contactsAddress,
    .mobile-dd-contactsPhone a {
        font-size: 14px;
        letter-spacing: var(--letter-spacing-min);
        color: var(--lightgrey-color);
    }
    .mobile-dd-contactsAddress {
        margin-bottom: 10px;
    }
    .mobile-dd-langs {
        white-space: nowrap;
        background: var(--grey-color);
        padding: 8px 10px;
        font-size: 12px;
    }
    .first-level-item-dd>a {
        font-size: 20px;
        text-transform: uppercase;
    }
    .second-level-dd {
        min-width: 100%;
        box-sizing: border-box;
        margin-top: 10px;
        padding: 20px 30px;
        background: var(--grey-color);
        display: none;
    }
    .second-level-dd>a {
        font-weight: 600;
    }
    .second-level-dd>a:hover,
    .second-level-dd>a:active,
    .second-level-dd>a.active {
        color: var(--red-color);
    }
    .third-level-dd {
        min-width: 100%;
        box-sizing: border-box;
        margin-top: 10px;
        padding: 0 0 0 15px;
        border-left: 1px solid var(--dark-color);
        display: none;
    }
}