.mob-menu {
    display: none;
}

.header {
    width: 100%;
    height: 100px;
    background: rgb(24, 24, 24);
}

.header__container {
    width: 100%;
    max-width: 1285px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__center {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 610px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__right {
    width: 100%;
    max-width: 90px;
}

.header-bg {
    width: 100%;
    height: 100vh;
    background-image: url("../images/4-min.png");
    background-image: url("../images/5-min.png");
    background-image: url("../images/3-min.png");
    background-blend-mode: overlay;
    background-repeat: round;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} /* Rectangle 92 */
.header-log {
    width: 100%;
    max-width: 198px;
}

.header-log img {
    width: 198px;
}

.header-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 610px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-list__link {
  /* About product */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: -webkit-text-decoration 0.5s linear;
    transition: -webkit-text-decoration 0.5s linear;
    transition: text-decoration 0.5s linear;
    transition: text-decoration 0.5s linear, -webkit-text-decoration 0.5s linear;
}

.header-list__link:hover {
    text-decoration: underline;
}

.en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.en:hover:after {
    width: 100%;
    height: 1px;
    background-color: #f5f4f4;
    content: "";
    left: 0;
    bottom: -2px;
    position: absolute;
}

.en__logo {
    margin: 0 8px 0 0;
}

.en__logo svg {
    -webkit-transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    fill: rgb(255, 255, 255);
}

.en__title {
    -webkit-transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  /* EN */
    font-family: "Sora";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
  /* identical to box height */
    color: #ffffff;
    position: relative;
}

.en__title::before, .en__title::after {
    -webkit-transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    border-radius: 5px;
    position: absolute;
    content: "";
    width: 10px;
    background-color: rgb(243, 243, 243);
    border: 1px solid rgb(243, 243, 243);
    top: 50%;
    height: 0px;
}

.en__title::before {
    left: 33px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.en__title::after {
    left: 41px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}