@font-face {
    font-family: 'NIVEA Brand Type';
    src: url('../font/NIVEA Brand Type/NIVEABrandType-Regular.eot');
    src: url('../font/NIVEA Brand Type/NIVEABrandType-Regular.eot?#iefix') format('embedded-opentype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Regular.woff2') format('woff2'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Regular.woff') format('woff'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Regular.ttf') format('truetype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Regular.svg#NIVEABrandType-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NIVEA Brand Type';
    src: url('../font/NIVEA Brand Type/NIVEABrandType-Bold.eot');
    src: url('../font/NIVEA Brand Type/NIVEABrandType-Bold.eot?#iefix') format('embedded-opentype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Bold.woff2') format('woff2'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Bold.woff') format('woff'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Bold.ttf') format('truetype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-Bold.svg#NIVEABrandType-Bold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NIVEA Brand Type';
    src: url('../font/NIVEA Brand Type/NIVEABrandType-ExtraBold.eot');
    src: url('../font/NIVEA Brand Type/NIVEABrandType-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExtraBold.woff2') format('woff2'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExtraBold.woff') format('woff'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExtraBold.ttf') format('truetype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExtraBold.svg#NIVEABrandType-ExtraBold') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NIVEA Brand Type ExCon ExBold';
    src: url('../font/NIVEA Brand Type/NIVEABrandType-ExConExBold.eot');
    src: url('../font/NIVEA Brand Type/NIVEABrandType-ExConExBold.eot?#iefix') format('embedded-opentype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExConExBold.woff2') format('woff2'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExConExBold.woff') format('woff'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExConExBold.ttf') format('truetype'),
    url('../font/NIVEA Brand Type/NIVEABrandType-ExConExBold.svg#NIVEABrandType-ExConExBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: "NIVEA Brand Type", sans-serif;
}

body {
    min-height: 100svh; /* корректнее на мобилках, чем 100vh */
    height: 100%;
    background-color: #0032a0;
}

.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.header__section {
    position: sticky;
    z-index: 1000;
    background-color: #0032a0;
    top: 0;
    height: 60px;
}

.header_logo_nivea {
    display: flex;
    justify-content: center;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    object-fit: cover;
}

.header_item {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}

.header_navigation__list {
    padding-left: 60px;
    padding-right: 60px;
    list-style: none;
    display: flex;
    gap: 45px;
}

.header__row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
}

.header_logo_section {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.header_navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_profile__lang {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.btn {
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: #3e6ced;
    cursor: pointer;
    border-radius: 35px;
    transition: all 300ms ease;
    font-size: 12px;
}

.btn_lang {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 15px;
    appearance: none;
    -webkit-appearance: none;
}


.burger {
    display: none;
    position: absolute;
    left: 60px;
    z-index: 51;
    align-items: center;
    justify-content: flex-end;
    width: 40px;
    height: 25px;
}

.burger span {
    height: 2px;
    width: 100%;
    transform: scale(1);
    background-color: #fff;
}

.burger::before, .burger::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease 0s;
}

.burger::before {
    top: 0
}

.burger::after {
    bottom: 0
}

.burger.active span {
    transform: scale(0)
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

.open {
    display: flex !important;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper-content {
    flex: 1 0 auto;
}

/* футер — просто следующий блок */
.footer {
    background: transparent; /* без фона */
    padding: 20px 0;
    margin-top: 32px; /* зазор от контента */
    border-top: 1px solid #e0e0e0; /* можно убрать */
}

.footer_navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_navigation__link {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}


@media (hover: hover) {
    .btn:hover {
        background-color: #0a2a79;
        box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    }

    .header_navigation__link:hover,
    .footer_navigation__link:hover {
        -webkit-filter: drop-shadow(0px 0px 10px white);
        filter: drop-shadow(0px 0px 10px white);
        text-decoration: underline;
        text-underline-offset: 5px;
        text-decoration-thickness: 2px;
    }

    .burger:hover {
        -webkit-filter: drop-shadow(0px 0px 10px white);
        filter: drop-shadow(0px 0px 10px white);
    }
}

@media (max-width: 840px) {
    .header_logo_section {
        left: calc(50% - 25px);
    }

    .burger {
        display: flex
    }

    .header_navigation {
        display: none;
        flex-direction: column;
        position: fixed;
        margin: 0;
        height: 100%;
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 50;
        overflow-x: auto;
        align-items: center;
        background-color: #2651cc;
        animation: burgerAnimation 0.4s;
    }

    .header_navigation__list {
        flex-direction: column;
        row-gap: 30px;
        text-align: center;
        padding: 0;
        font-size: 20px;
    }

}

@keyframes burgerAnimation {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}


