.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #FFFFFF;
    margin-bottom: 20px;
}

.header__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
}

.header__block-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    height: 80px;
}

.header__block-info li {
    list-style: none;
    margin-right: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

.header__block-info li:last-child {
    margin-right: 0;
}

.header__block-logo {
    max-height: 80px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.header__block-a-logo {
    text-decoration: none;
    display: block;
}

.header__block-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #020405;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    height: 100%;
    padding: 0 8px;
    /* transition: all 0.2s ease-in-out; */
}

.header__block-a:hover {
    font-weight: 500;
    text-decoration: underline;
}

.header__block-line {
    width: 100%;
    height: 20px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: #D9D9D9 solid 2px;
    border-bottom: none;

}

.header__burger {
    display: none;
}


/* Header Mobile */

.header-mobile {
    display: none;
    background: #FFFFFF;
    margin-bottom: 20px;
}

.header__block-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 12px;
}

.header__block-info-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 12px;
    height: 80px;
}

.header__block-info-mobile li {
    list-style: none;
    margin-right: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__block-info-mobile li {
    margin-right: 0;
}

.header__block-a-logo-mobile {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.header__block-logo-mobile {
    height: 100%;
    width: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.header__burger-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.header__burger-img-mobile {
    height: 40px;
}

/* popup burger */

.popupburger {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    z-index: 1000;
}

.popupburger.open {
    left: 0;
}

.popupburger__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    min-height: 100%;


}

.popupburger__body-content {
    background: #FFF;
    max-width: 320px;
    width: 100%;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: -4px 0px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: -4px 0px 8px 0px rgba(34, 60, 80, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100%;
}

.popup__burger-content-close img {
    height: 40px;
    display: block;
}

.popup__burger-content-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    list-style: none;
    
}

.popup__burger-content-ul li {
    margin-bottom: 16px;
}

.popup__burger-content-ul li:last-child {
    margin-bottom: 0;
}

.popup__burger-content-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #020405;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    height: 100%;
}

.popup__burger-content-link:last-child {
    margin-bottom: 0;
}

.popupburger__body-container {
    /* width: 425px; */
    width: 768px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.popupburger__body-content-bg {
    position: absolute;
    height: 100%;
    width: 200%;
    background: #FFFFFF;
    top: 0;
    right: -195%;
}




/* Adaptive */

@media (max-width: 1024px) {
    .header__block-a {
        font-size: 12px;
    }

    .header__block-info li {
        margin-right: 16px;
    }
}

@media (max-width: 768px) {
    .popupburger__body-container {
        width: 425px;
    }

    .header {
        display: none;
    }

    .header-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 375px) {

    .header-mobile {
        margin-bottom: 16px;
    }

    .popupburger__body-container {
        max-width: 320px;
        
    }

}