@charset "UTF-8";

@font-face {
    font-family: "Inter";
    font-display: swap;
    src: url("../../fonts/Inter-Bold.woff") format("woff"), url("../../fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    font-display: swap;
    src: url("../../fonts/Inter-ExtraBold.woff") format("woff"), url("../../fonts/Inter-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "TTFirsNeue";
    font-display: swap;
    src: url("../../fonts/TTFirsNeue-Regular.woff") format("woff"), url("../../fonts/TTFirsNeue-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "TTFirsNeue";
    font-display: swap;
    src: url("../../fonts/TTFirsNeue-Bold.woff") format("woff"), url("../../fonts/TTFirsNeue-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    line-height: 1;
    font-family: "TTFirsNeue";
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: "TTFirsNeue";
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-size: inherit;
}

body {
    color: #231F20;
    font-size: 18px;
    line-height: 1.3;
    background: #fff;
}

body._pt .page {
    padding-top: 77px;
}

body._bg-logo .page {
    background: url(../img/om-logo-g.svg) center -20px/auto no-repeat, #fff;
}

body._lock {
    overflow: hidden;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

._container {
    padding: 0px 25px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

._container._limit {
    max-width: 1200px;
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0px 0px;
}

.btn._fw {
    width: 100%;
}

.select {
    position: relative;
}

.select__item {
    position: relative;
}

.select__title {
    color: #000;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    height: 30px;
    padding: 0px 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.select__value span {
    height: 1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.select__value:before {
    content: "";
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 11px;
    height: 7px;
    background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%;
}

.select__options {
    color: #000;
    display: none;
    position: absolute;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    font-size: 14px;
    padding: 10px 0px 5px 0px;
}

.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0px 0px 0px 0px;
}

.select._active {
    z-index: 5;
}

.select._active .select__value:before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select._active .select__options {
    display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input {
    border-radius: 0 !important;
    width: 100%;
    display: block;
    padding: 0px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    min-height: 58px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input._focus {
    color: #fff;
}

.input._focus::-webkit-input-placeholder {
    font-size: 0;
}

.input._focus::-moz-placeholder {
    font-size: 0;
}

.input._focus:-ms-input-placeholder {
    font-size: 0;
}

.input._focus::-ms-input-placeholder {
    font-size: 0;
}

.input._focus::placeholder {
    font-size: 0;
}

.input:focus {
    border-color: #fff;
}

.input._error {
    border-color: rgba(255, 0, 0, 0.7);
}

textarea.input {
    resize: none;
    padding: 15px 24px;
    height: 200px;
    overflow-y: auto;
}

.checkbox {
    position: relative;
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.checkbox__input:checked + .checkbox__content:before {
    background: url("../img/icons/check.svg") center/24px no-repeat, #fff;
}

.checkbox__content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox__content:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0px 12px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.checkbox a {
    color: #fff;
    text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
    border: 1px solid #ee1212;
}

.options {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.options__item {
    position: relative;
    cursor: pointer;
}

.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0;
    top: 0;
    visibility: hidden;
}

.options__input:checked + .options__text:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.options__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: calc(20 / 16);
}

.options__text:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0px 14px 0px 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac;
}

.options__text:after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #77243a;
    position: absolute;
    left: 5px;
    top: 4px;
}

.rating-block {
    display: table;
    font-size: 0;
}

.rating {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.rating.edit .star {
    cursor: pointer;
}

.rating .star {
    width: 17px;
    height: 14px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.rating__line {
    position: absolute;
    width: 85px;
    height: 14px;
    top: 0;
    left: 0;
    background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
    z-index: 1;
    background-size: 85px 100%;
}

.rating__activeline {
    position: absolute;
    width: 0px;
    height: 14px;
    top: 0;
    left: 0;
    background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
    z-index: 2;
    background-size: 85px 100%;
}

.rating__value {
    display: inline-block;
    color: #1b3139;
    font-size: 14px;
    line-height: 13px;
    vertical-align: middle;
}

.quantity {
    width: 88px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    position: relative;
    cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: 0px 0px 0px -4.5px;
    background-color: #a6a6a6;
    width: 9px;
    height: 1px;
}

.quantity__button_plus::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.quantity__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.quantity__input input {
    height: 100%;
    color: #a6a6a6;
    font-size: 12px;
    width: 100%;
    text-align: center;
}

img,
svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    max-height: 100%;
    max-width: 100%;
}

.space-text {
    pointer-events: none;
}

.space-text__deep {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(rgba(0, 56, 146, 0.6)));
    background: -o-linear-gradient(top, #FFF 0%, rgba(0, 56, 146, 0.6) 100%);
    background: linear-gradient(180deg, #FFF 0%, rgba(0, 56, 146, 0.6) 100%);
    width: 3.7vw;
    height: 37vw;
    position: absolute;
    right: 18.2vw;
    top: 13.4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.space-text__deep span {
    background: -webkit-gradient(linear, left top, right top, color-stop(63.28%, #0047B9), color-stop(87.51%, #003892));
    background: -o-linear-gradient(left, #0047B9 63.28%, #003892 87.51%);
    background: linear-gradient(90deg, #0047B9 63.28%, #003892 87.51%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    font-size: 5vw;
    white-space: nowrap;
    position: absolute;
    bottom: 0%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-120%) rotate(90deg);
    -ms-transform: translateX(-50%) translateY(-120%) rotate(90deg);
    transform: translateX(-50%) translateY(-120%) rotate(90deg);
}

._btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #0047B9;
    font-size: 18px;
    font-weight: 700;
    min-height: 64px;
    position: relative;
    background: #fff;
}

._btn[disabled] {
    opacity: 0.3;
    pointer-events: none;
}

._btn._blue {
    background: #fff;
    border: 2px solid #0047B9;
}

._btn._blue > div {
    background: #fff;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    z-index: 1;
    min-height: 60px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

._btn._blue::after {
    border-color: #0047B9;
    background: #0047B9;
}

._btn > * {
    z-index: 2;
    position: relative;
}

._btn img,
._btn svg {
    width: 32px;
    height: 32px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
}

._btn svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

._btn svg path[fill] {
    fill: #0047B9;
}

._btn svg path[stroke] {
    stroke: #0047B9;
}

._btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    border: 2px solid #fff;
    -webkit-transform: translate(4px, 4px);
    -ms-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    z-index: 0;
}

._btn._fw {
    width: 100%;
    max-width: 100%;
}

._marked {
    -webkit-padding-start: 15px;
    padding-inline-start: 15px;
    -webkit-border-start: 4px solid #0047B9;
    border-inline-start: 4px solid #0047B9;
    color: #0047B9;
    font-size: 20px;
}

ol.counter {
    list-style-type: none;
    counter-reset: item;
}

ol.counter li {
    position: relative;
    padding: 0px 0px 0px 45px;
}

ol.counter li:before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    color: #818181;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid #4274bb;
}

.ellipsis {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.es {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.table {
    display: table;
    font-size: 0;
    width: 100%;
}

.trow {
    display: table-row;
}

.cell {
    display: table-cell;
}

.cell.full {
    width: 100%;
}

._ibg {
    position: relative;
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

body.ie ._ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body.ie ._ibg img {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.video {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.moretext {
    overflow: hidden;
}

.moretext__more {
    cursor: pointer;
}

.moretext__more span {
    font-style: normal;
}

.moretext__more span:first-child {
    display: block;
}

.moretext__more span:last-child {
    display: none;
}

.moretext__more.active span {
    font-style: normal;
}

.moretext__more.active span:first-child {
    display: none;
}

.moretext__more.active span:last-child {
    display: block;
}

#map {
    background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
    overflow: hidden;
}

._swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}

._slider-arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    border: 1px solid #E5E7EB;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

._slider-arrow img,
._slider-arrow svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

._slider-arrow svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

._slider-arrow svg path[fill] {
    fill: #231F20;
}

._slider-arrow svg path[stroke] {
    stroke: #231F20;
}

.slick-slider {
    position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slick-slider .slick-track {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-slider .slick-slide {
    position: relative;
}

.tab__item {
    display: none;
}

.tab__item.active {
    display: block;
}

._tabs-block {
    display: none;
}

._tabs-block._active {
    display: block;
}

.mirror {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.nicescroll-rails {
    z-index: 1000 !important;
}

.gm-style-iw-t {
    opacity: 0;
}

.baloon {
    opacity: 1;
    right: -7px !important;
    bottom: 80px !important;
}

.baloon button {
    display: none !important;
}

.baloon:after {
    display: none !important;
}

.baloon-style {
    display: none;
}

.baloon-content.gm-style-iw {
    opacity: 1;
    border-radius: 0px !important;
    max-width: 300px !important;
    padding: 0 !important;
    left: 0 !important;
    width: 100% !important;
    overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
    overflow: hidden !important;
    max-width: none !important;
}

.baloon-content.gm-style-iw:after {
    display: none !important;
}

.baloon-close {
    top: 18px !important;
}

._custom-scroll {
    position: fixed;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 1000;
}

._custom-scroll__line {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px 0 0 3px;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 24px;
}

.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 0px 0px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: visibility 0.8s ease 0s;
    -o-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    overflow: hidden;
}

.popup::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
}

.popup.show {
    visibility: visible;
    overflow: auto;
}

.popup.show::before {
    opacity: 1;
}

.popup.show .popup__body {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup._active {
    overflow: auto;
    visibility: visible;
}

.popup._active::before {
    opacity: 1;
}

.popup._active .popup__body {
    -webkit-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__content {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    height: 100%;
}

.popup__body {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 0px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 100px 0px;
    background: #0047B9;
    overflow: auto;
    max-height: 100vh;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popup__close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 30;
    background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.submited-form .popup__content {
    background: #0047B9;
}

.header {
    padding: 24px 0px;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
}

.header._white:not(._menu-open, ._scroll) .header__logo_white {
    display: inline-block;
}

.header._white:not(._menu-open, ._scroll) .header__logo_black {
    display: none;
}

.header._white:not(._menu-open, ._scroll) .header__language {
    color: #fff;
}

.header._white:not(._menu-open, ._scroll) .header__language svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.header._white:not(._menu-open, ._scroll) .header__language svg path[fill] {
    fill: #fff;
}

.header._white:not(._menu-open, ._scroll) .header__language svg path[stroke] {
    stroke: #fff;
}

.header._white:not(._menu-open, ._scroll) .icon-menu {
    color: #fff;
}

.header._scroll {
    background: #fff;
}

.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66px;
    flex: 0 0 66px;
    width: 66px;
    position: relative;
    z-index: 3;
}

.header__logo img,
.header__logo svg {
    width: 100%;
}

.header__logo_white {
    display: none;
}

.header__logo_black {
    display: block;
}

.header__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
}

.header__language {
    color: #231F20;
    font-size: 18px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
    position: relative;
    z-index: 3;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.header__language img,
.header__language svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.header__language svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.header__language svg path[fill] {
    fill: #231F20;
}

.header__language svg path[stroke] {
    stroke: #231F20;
}

.menu__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.menu__link {
    white-space: nowrap;
    color: #231F20;
    display: block;
}

.icon-menu {
    font-size: 16px;
    color: #231F20;
    position: relative;
    z-index: 4;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.icon-menu._active .icon-menu__open {
    display: none;
}

.icon-menu._active .icon-menu__close {
    display: inline-block;
}

.icon-menu__open {
    display: inline-block;
}

.icon-menu__close {
    display: none;
}

.footer {
    background: #0047B9;
    padding-bottom: 60px;
}

.footer__main {
    margin-top: 50px;
}

.footer__bottom {
    margin-top: 100px;
}

.creeping-line__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.creeping-line__item {
    margin-right: 24px;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
}

.creeping-line__item::after {
    content: "*";
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    -webkit-transform: translate(-50%, -38%);
    -ms-transform: translate(-50%, -38%);
    transform: translate(-50%, -38%);
}

.main-footer__content {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
}

.main-footer__quote {
    color: #fff;
    font-size: 5.6vw;
    font-weight: 700;
    line-height: 1.15;
}

.main-footer__nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 285px;
    flex: 0 0 285px;
    padding-left: 70px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.main-footer__list a {
    color: inherit;
}

.socials-main-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.socials-main-footer__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.bottom-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bottom-footer__copy {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.bottom-footer__go-top {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    -webkit-column-gap: 1px;
    -moz-column-gap: 1px;
    column-gap: 1px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.bottom-footer__go-top img,
.bottom-footer__go-top svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.banner {
    background: #0047B9;
    padding: 120px 0px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-bottom: 150px;
}

.banner__space-text {
    color: #00307C;
    font-size: 23vw;
    font-weight: 700;
    line-height: 0.95;
    margin: 0px -2%;
}

.banner__bottle {
    width: 70vw;
    max-width: 1060px;
    aspect-ratio: 1060/305;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-20%) translateX(-5%) rotate(-30deg);
    -ms-transform: translateY(-20%) translateX(-5%) rotate(-30deg);
    transform: translateY(-20%) translateX(-5%) rotate(-30deg);
}

.banner__bottle img {
    width: 100%;
    max-width: 100%;
    -webkit-filter: drop-shadow(8px 15px 37px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(8px 15px 37px rgba(0, 0, 0, 0.1));
}

.banner__content {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.banner__body {
    width: 100%;
    max-width: 355px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.banner__text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.banner__button {
    margin-top: 40px;
}

.publications {
    padding: 75px 0px;
}

.publications__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 2) / 3);
    flex: 0 0 calc((100% - 25px * 2) / 3);
}

.publications__item:not(:last-child) {
    margin-right: 25px;
}

.publications__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 40px;
}

.publications__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    border: 1px solid #E5E7EB;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.publications__arrow img,
.publications__arrow svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.publications__arrow svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.publications__arrow svg path[fill] {
    fill: #231F20;
}

.publications__arrow svg path[stroke] {
    stroke: #231F20;
}

.publication {
    overflow: hidden;
    aspect-ratio: 45/56;
    position: relative;
    -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.publication img {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.advantages {
    padding: 75px 0px;
}

.advantages__slider {
    margin: -20px -15px;
    padding: 20px 15px;
}

.advantages__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 3) / 4);
    flex: 0 0 calc((100% - 25px * 3) / 4);
}

.advantages__item:not(:last-child) {
    margin-right: 25px;
}

.advantages__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 40px;
}

.advantage {
    min-height: 340px;
    border: 1px solid #E5E7EB;
    background: #fff;
    padding: 50px 25px 20px;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    row-gap: 40px;
    -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 2px 2px rgba(0, 0, 0, 0.09), 0px 4px 2px rgba(0, 0, 0, 0.05), 0px 7px 3px rgba(0, 0, 0, 0.01);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 2px 2px rgba(0, 0, 0, 0.09), 0px 4px 2px rgba(0, 0, 0, 0.05), 0px 7px 3px rgba(0, 0, 0, 0.01);
}

.advantage__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
}

.advantage__icon img,
.advantage__icon svg {
    width: 100%;
    max-width: 100%;
}

.advantage__body {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 15px;
}

.advantage__text {
    color: #6B7280;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.mine {
    margin: 75px 0px;
    position: relative;
    padding: 22vw 0px 30vw;
    background: url(../img/waves.svg) center bottom/110% auto no-repeat, #0047B9;
}

.mine__space-text {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    font-size: 20vw;
    font-weight: 700;
    line-height: 0.75;
}

.mine__space-text.mob {
    display: none;
}

.mine__body {
    width: 60%;
    max-width: 685px;
}

.mine__text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.mine__deep {
    color: #002A6E;
    text-align: center;
    font-size: 60px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 160px;
}

.safety {
    position: relative;
    padding: 75px 0px;
}

.safety__space-text {
    margin: 0px -4vw;
    color: #231F20;
    font-size: 20vw;
    font-weight: 700;
    line-height: 0.9;
    word-break: break-all;
    text-align: right;
    min-width: 100vw;
    display: block;
}

.safety__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 140px;
    -moz-column-gap: 140px;
    column-gap: 140px;
    margin-top: -200px;
}

.safety__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26vw;
    flex: 0 0 26vw;
    max-width: 326px;
    aspect-ratio: 326/1200;
    -webkit-filter: drop-shadow(0px 19.142px 42.843px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 19.142px 42.843px rgba(0, 0, 0, 0.1));
}

.safety__image img {
    width: 100%;
    max-width: 100%;
}

.safety__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 60px;
}

.safety__text {
    color: #6B7280;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.safety__text b {
    color: #231F20;
}

.safety__button {
    margin-left: 260px;
    max-width: 330px;
}

.benefits-safety {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
}

.benefits-safety__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.benefits-safety__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
}

.benefits-safety__text {
    color: #0047B9;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.balance {
    position: relative;
    margin: 16vw 0px 75px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(100.46%, #FFF)), #68ABE4;
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 100.46%), #68ABE4;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100.46%), #68ABE4;
    padding: 40px 0px 100px;
}

.balance__space-text {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-90%);
    -ms-transform: translateX(-50%) translateY(-90%);
    transform: translateX(-50%) translateY(-90%);
    color: #68ABE4;
    font-size: 20vw;
    font-weight: 700;
    line-height: 0.75;
}

.balance__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.balance__space-text-s {
    color: #fff;
    font-size: 20vw;
    font-weight: 700;
    line-height: 0.8;
    margin-left: -3vw;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.balance__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px ) / 2);
    flex: 0 0 calc((100% - 25px ) / 2);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 685px;
}

.balance__content {
    margin-top: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 500px;
    -moz-column-gap: 500px;
    column-gap: 500px;
    row-gap: 120px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    min-height: 1050px;
    position: relative;
}

.balance__mineral {
    position: absolute;
}

.balance__mineral:nth-child(1) {
    width: 342px;
}

.balance__mineral:nth-child(2) {
    width: 324px;
}

.balance__mineral:nth-child(3) {
    width: 342px;
}

.balance__mineral:nth-child(4) {
    width: 361px;
}

.balance__mineral:nth-child(5) {
    width: 348px;
}

.mineral {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.mineral._hover {
    z-index: 1;
    -webkit-clip-path: polygon(53.1% 0.12%, 85.6% 6.69%, 100% 37.04%, 98.72% 70.4%, 85.6% 92.11%, 53.1% 99.85%, 23.68% 95.3%, 0.06% 71.41%, 1.81% 30.44%, 19.94% 8.58%, 53.1% 0.12%) !important;
    clip-path: polygon(53.1% 0.12%, 85.6% 6.69%, 100% 37.04%, 98.72% 70.4%, 85.6% 92.11%, 53.1% 99.85%, 23.68% 95.3%, 0.06% 71.41%, 1.81% 30.44%, 19.94% 8.58%, 53.1% 0.12%) !important;
    aspect-ratio: 663/627 !important;
    width: 663px;
}

.mineral._hover .mineral__short-name {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mineral._hover .mineral__info {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.mineral__short-name {
    color: #0047B9;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.mineral__info {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 460px;
    padding: 20px;
}

.mineral__name {
    color: #0047B9;
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9;
    text-align: center;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}

.mineral__text {
    color: #0047B9;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 25px;
}

.mineral__mods {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    row-gap: 8px;
}

.mineral__mod {
    padding: 2px 15px;
    background: #68ABE4;
    border-radius: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
}

.mineral__mod._gray {
    background: #E5E7EB;
    color: #9CA3AF;
}

.mineral__mod img,
.mineral__mod svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18px;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
}

@-webkit-keyframes shake-timer {
    0%, 80% {
        opacity: 1;
    }

    81%, 100% {
        opacity: 1;
        -webkit-animation: shake 1s ease-in-out;
        animation: shake 1s ease-in-out;
    }
}

@keyframes shake-timer {
    0%, 80% {
        opacity: 1;
    }

    81%, 100% {
        opacity: 1;
        -webkit-animation: shake 1s ease-in-out;
        animation: shake 1s ease-in-out;
    }
}

._no-webp .health{
    background: url(../img/om-health.png) top center/100% no-repeat; }

.health {
    position: relative;
    padding: 35vw 0px 17vw;
}

.health__space-text {
    display: block;
    text-align: right;
    position: absolute;
    top: 23vw;
    right: 0;
    z-index: 1;
    color: #fff;
    font-size: 20vw;
    font-weight: 700;
    line-height: 1.15;
}

.health__wrapper {
    height: 16vw;
    background: #0047B9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 3px solid #fff;
}

.health__content {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    -ms-grid-columns: 220px 1fr 80px;
    grid-template-columns: 220px 1fr 80px;
}

.health__title {
    color: #fff;
}

.health__text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.health__link {
    width: 80px;
    height: 80px;
    padding: 0px;
    border-radius: 50%;
}

.health__link img,
.health__link svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
}

.health__link::after {
    border-radius: inherit;
    z-index: 0;
}

.child {
    padding: 50px 0px 150px;
}

.child__bottle {
    width: 103vw;
    -webkit-transform: translateX(4%);
    -ms-transform: translateX(4%);
    transform: translateX(4%);
}

.child__bottle img,
.child__bottle svg {
    width: 100%;
    max-width: 100%;
}

.child__content {
    margin-top: 40px;
}

.child__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
}

.child__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
    width: 330px;
    -webkit-animation: "rotate" 10s infinite linear;
    animation: "rotate" 10s infinite linear;
}

.child__image img,
.child__image svg {
    width: 100%;
    max-width: 100%;
}

.child__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 605px;
}

.child__text {
    margin-top: 25px;
    color: #231F20;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.about-banner {
    background: url(../img/om-logo.svg) center/auto no-repeat, #68ABE4;
    min-height: 100svh;
    padding: 100px 0px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-banner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.about-banner__bottle {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    aspect-ratio: 220/810;
    -webkit-filter: drop-shadow(9px 8px 27px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(9px 8px 27px rgba(0, 0, 0, 0.1));
}

.about-banner__bottle img {
    width: 100%;
    max-width: 100%;
}

.about-banner__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about-banner__title {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.15;
}

.about-banner__title span {
    color: #0047B9;
}

.about-banner__button {
    margin-top: 60px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 360px;
}

.about-banner__button::after {
    z-index: 1;
}

.about-philosophy {
    padding: 100px 0px;
}

.about-philosophy__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.about-philosophy__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
    flex: 0 0 calc((100% - 25px * 1) / 2);
}

.about-philosophy__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
    flex: 0 0 calc((100% - 25px * 1) / 2);
    color: #9CA3AF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.about-philosophy__body b {
    color: #231F20;
}

.toggether {
    background: #0047B9;
    padding: 100px 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    /* Заголовок */
    /* Блок воды */
}

.toggether__title {
    text-align: center;
    color: #fff;
    font-size: 21vw;
    font-weight: 700;
    line-height: 0.9;
    opacity: 1;
    margin-bottom: 20vw;
}

.water-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 77px;
    position: relative;
    margin: 0px -25px;
    height: 130vh;
    min-height: 1400px;
}

.water-type__bg-text {
    color: #00307C;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    font-size: 21vw;
    font-weight: 700;
    line-height: 0.95;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.water-type__bg-text._big {
    font-size: 36vw;
}

.water-type__bg-text._hide {
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}

.water-type__slider {
    height: 105vh;
    position: relative;
}

.water-type__slider::after {
    content: "";
    aspect-ratio: 93/22;
    width: 150px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/icons/swipe.gif) center/100% auto no-repeat;
}

.water-type__slider::-webkit-scrollbar {
    display: none;
}

.water-type__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    width: 400px;
    scroll-snap-align: center;
    text-align: center;
    opacity: 0.9;
    position: relative;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    max-height: calc(100vh - 77px);
}

.water-type__item.swiper-slide-active {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.water-type__item:not(.swiper-slide-active) {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.water-type__item:not(.swiper-slide-active) .water-type__volume {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.water-type__image {
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    position: relative;
    z-index: 1;
}

.water-type__image img {
    width: 100%;
    max-width: 100%;
}

.water-type__volume {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    padding: 0px 12px 12px;
    border-bottom: 1px solid #fff;
    left: 80%;
    top: 8%;
    position: absolute;
    z-index: 1;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    white-space: nowrap;
}

.water-type__volume::after {
    content: "";
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: calc(100% + 7px);
    right: calc(100% - 3px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.water-type__volume::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: calc(100% + 10px);
    right: calc(100% + 7px);
}

.water-type__where {
    display: none;
}

.about-benefits {
    padding: 100px 0px;
}

.about-benefits__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about-benefits__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about-benefits__wrapper {
    width: 100%;
    max-width: 49%;
}

.about-benefits__content {
    margin-top: 30px;
}

.about-benefits__image {
    position: relative;
    height: 400px;
    width: 100%;
}

.about-benefits__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-benefits__body {
    margin-top: 40px;
}

.about-benefits__text {
    color: #9CA3AF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.about-benefits__text b {
    color: #231F20;
}

.about-benefits__button {
    margin-top: 24px;
    width: 260px;
}

.where-order {
    padding: 100px 0px 200px;
}

.where-order__wrapper {
    border: 1px solid #E5E7EB;
    background: #fff;
    -webkit-box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.where-order__body {
    padding: 20px 0px 20px 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
    flex: 0 0 calc((100% - 25px * 1) / 2);
    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;
}

.where-order__text {
    color: #9CA3AF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 25px;
}

.where-order__text b {
    color: #231F20;
}

.where-order__button {
    margin-top: 40px;
    width: auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.where-order__button > div {
    padding-left: 40px;
    padding-right: 25px;
}

.where-order__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
    flex: 0 0 calc((100% - 25px * 1) / 2);
    min-height: 440px;
    position: relative;
}

.where-order__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.help {
    padding: 80px 0px 100px;
}

.help__head {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.help__subtitle {
    margin-top: 15px;
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.help__subtitle b {
    color: #231F20;
}

.help__nav {
    margin-top: 25px;
}

.help__content {
    margin-top: 60px;
}

.help__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
}

.nav-help {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.nav-help__item {
    min-height: 40px;
    border: 1px solid #0047B9;
    color: #0047B9;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-help__item._active {
    background: #0047B9;
    color: #fff;
}

.help-help {
    background: #F9F9F9;
    padding: 25px 40px;
}

.help-help__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    cursor: pointer;
}

.help-help__top._active .help-help__arrow {
    rotate: 180deg;
}

.help-help__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 18px;
    color: #231F20;
    font-weight: 700;
}

.help-help__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.help-help__body {
    display: none;
    margin-top: 25px;
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.help-help__body ul {
    padding-left: 20px;
}

.help-help__body ul li {
    list-style: disc;
}

.help-help__body b {
    color: #231F20;
}

.active-banner {
    padding: 24px 0px 100px;
}

.active-banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
}

.active-banner__bottle {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 370px;
    flex: 0 0 370px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-filter: drop-shadow(0px 7.168px 16.726px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 7.168px 16.726px rgba(0, 0, 0, 0.15));
}

.active-banner__bottle img {
    width: 100%;
    max-width: 223px;
}

.active-banner__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.active-banner__title {
    color: #231F20;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
}

.active-banner__title span {
    color: #0047B9;
}

.active-banner__button {
    margin-top: 60px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    background: #0047B9 !important;
    border: none !important;
    color: #fff;
}

.active-banner__button div {
    background: #0047B9 !important;
    padding-left: 40px;
    padding-right: 40px;
}

.active-banner__button svg path[fill] {
    fill: #fff !important;
}

.active-banner__button svg path[stroke] {
    stroke: #fff !important;
}

.active-banner__button::after {
    background: none !important;
}

._no-webp .mini-about-active{
    background: url(../img/mini-about-active-bg.jpg) center bottom/cover no-repeat; }

.mini-about-active {
    padding: 80px 0px 300px;
    min-height: 1024px;
    height: 100svh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 75px;
}

.mini-about-active::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
}

.mini-about-active__container {
    position: relative;
    z-index: 1;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 25px;
}

.mini-about-active__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mini-about-active__row:nth-child(2) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.mini-about-active__body {
    width: 100%;
    max-width: 330px;
}

.mini-about-active__text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.support-active {
    padding: 100px 0px;
}

.support-active__title {
    max-width: 570px;
}

.support-active__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 150px;
}

.support-active__row {
    overflow: visible !important;
}

.support-active__row:nth-child(even) .support-active__body {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.support-active__row:first-child .support-active__action-line {
    margin: 0vw 0px 12vw;
    -webkit-transform: rotate(-6.9deg) translateX(-50%);
    -ms-transform: rotate(-6.9deg) translateX(-50%);
    transform: rotate(-6.9deg) translateX(-50%);
}

.support-active__row:nth-child(2) .support-active__action-line {
    margin: 4vw 0px 0vw;
    -webkit-transform: rotate(6deg) translateX(-50%);
    -ms-transform: rotate(6deg) translateX(-50%);
    transform: rotate(6deg) translateX(-50%);
}

.support-active__row:nth-child(2) .action-line__slider {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.support-active__row:nth-child(2) .action-line__slider:not(:last-child) {
    margin-right: 15px;
}

.support-active__row:nth-child(2) .action-line__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
    width: 88px;
}

.support-active__row:nth-child(2) .support-active__body {
    margin-top: 0;
}

.support-active__row:nth-child(3) {
    margin-top: -100px;
}

.support-active__row:nth-child(3) .support-active__action-line {
    margin: 0vw 0px 8vw;
    -webkit-transform: rotate(-3deg) translateX(-50%);
    -ms-transform: rotate(-3deg) translateX(-50%);
    transform: rotate(-3deg) translateX(-50%);
}

.support-active__row:nth-child(3) .action-line__slider {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.support-active__row:nth-child(3) .action-line__slider:not(:last-child) {
    margin-right: 20px;
}

.support-active__row:nth-child(3) .action-line__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 116px;
    flex: 0 0 116px;
    width: 116px;
}

.support-active__row:nth-child(3) .support-active__body {
    margin-top: 0;
}

.support-active__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.support-active__wrapper {
    width: 75%;
    max-width: 565px;
    font-size: 18px;
    color: #6B7280;
    font-weight: 400;
    line-height: 1.5;
}

.support-active__wrapper b {
    color: #231F20;
}

.action-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #0047B9;
    width: 150vw;
    left: 50%;
    position: relative;
    -webkit-box-shadow: 0px 7.168px 16.726px rgba(0, 0, 0, 0.15), 0px 31.062px 31.062px rgba(0, 0, 0, 0.13), 0px 69.293px 43.01px rgba(0, 0, 0, 0.08), 0px 124.25px 50.178px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 7.168px 16.726px rgba(0, 0, 0, 0.15), 0px 31.062px 31.062px rgba(0, 0, 0, 0.13), 0px 69.293px 43.01px rgba(0, 0, 0, 0.08), 0px 124.25px 50.178px rgba(0, 0, 0, 0.02);
}

.action-line__slider {
    min-height: 140px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1px;
    -moz-column-gap: 1px;
    column-gap: 1px;
}

.action-line__slider:not(:last-child) {
    margin-right: 1px;
}

.action-line__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    width: 120px;
}

.action-line__item img,
.action-line__item svg {
    width: 100%;
    max-width: 100%;
}

.sports-areas {
    margin: 100px 0px;
}

.sports-areas__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.sports-areas__map {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
    flex: 0 0 calc((100% - 40px * 1) / 2);
}

.sports-areas__map #map {
    width: 100%;
    aspect-ratio: 1;
}

.sports-areas__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px;
}

.sports-areas__body h4 {
    font-size: 24px;
}

.sports-areas__text {
    margin-top: 32px;
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.sports-areas__text b {
    color: #231F20;
}

.sports-areas__include-map-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 40px -25px 0px;
}

.marquee-sports-areas {
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-family: "Inter";
    font-style: italic;
    background: #0047B9;
}

.numbers {
    padding: 100px 0px;
}

.numbers__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 100px;
}

.numbers__title {
    color: #231F20;
}

.numbers__body {
    margin-top: 50px;
}

.stats-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 100px;
}

.stats-numbers__num {
    width: 100%;
    max-width: 100%;
}

.stats-numbers__num img {
    width: 100%;
}

.stats-numbers__content {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.stats-numbers__body {
    text-align: right;
}

.features-numbers__slider {
    margin: -20px -25px;
    padding: 20px 25px;
}

.features-numbers__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 2) / 3);
    flex: 0 0 calc((100% - 25px * 2) / 3);
    border: 1px solid #E5E7EB;
    background: #fff;
    padding: 60px 20px;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    row-gap: 40px;
    -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 2px 2px rgba(0, 0, 0, 0.09), 0px 4px 2px rgba(0, 0, 0, 0.05), 0px 7px 3px rgba(0, 0, 0, 0.01);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 2px 2px rgba(0, 0, 0, 0.09), 0px 4px 2px rgba(0, 0, 0, 0.05), 0px 7px 3px rgba(0, 0, 0, 0.01);
}

.features-numbers__item:not(:last-child) {
    margin-right: 25px;
}

.features-numbers__icon {
    width: 100px;
    height: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.features-numbers__body {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 280px;
}

.features-numbers__body b {
    color: #231F20;
}

.features-numbers__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 40px;
}

.fest {
    padding: 100px 0px 200px;
}

.fest__space {
    background: #0047B9;
    padding: 60px 0px;
}

.fest__space-text {
    font-size: 23vw;
    color: #F26463;
    text-align: center;
    font-weight: 700;
    margin: 0px -2.5%;
    white-space: nowrap;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0.9;
}

.fest__space-text span {
    font-size: 13vw;
}

.fest__body {
    background: #E2F7FA;
    padding: 40px 0px;
    text-align: center;
}

.fest__text {
    color: #0047B9;
    font-size: 40px;
    font-weight: 400;
}

.fest__text span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fest__text span::before {
    content: ">";
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-weight: 700;
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
}

.fest__text span::after {
    content: "<";
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-weight: 700;
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
}

.marquee-fest {
    color: #fff;
    font-size: 20px;
    font-style: italic;
    font-family: "Inter";
    padding: 12px 0px;
    background: #F26463;
}

.logo-marquee-fest {
    background: #F26463;
    padding: 40px 0px;
}

.logo-marquee-fest__slider {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.logo-marquee-fest__slider:not(:last-child) {
    margin-right: 15px;
}

.logo-marquee-fest__item {
    width: 130px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
}

.logo-marquee-fest__item img,
.logo-marquee-fest__item svg {
    width: 100%;
    max-width: 100%;
}

.press-kit {
    padding: 80px 0px 100px;
}

.press-kit__head {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
}

.press-kit__text {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.press-kit__content {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 30px;
}

.press-kit__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 60px * 2) / 3);
    flex: 0 0 calc((100% - 60px * 2) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.press-kit__image {
    width: 100%;
    aspect-ratio: 1;
    background: url(../img/icons/image-picture.svg) center/100px no-repeat, #E5E7EB;
    position: relative;
    overflow: hidden;
}

.press-kit__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.press-kit__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
    margin-top: 24px;
}

.press-kit__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.press-kit__name {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.press-kit__download {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
}

.press-kit__download svg path {
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.press-kit__download svg path[fill] {
    fill: #231F20;
}

.press-kit__download svg path[stroke] {
    stroke: #231F20;
}

.press-kit__description {
    color: #6B7280;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

._no-webp .partners-banner{
    background: url(../img/partners-banner-bg.jpg) center/cover no-repeat; }

.partners-banner {
    min-height: 100svh;
    padding: 150px 0px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.partners-banner__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 60px;
    width: 100%;
    max-width: 685px;
}

.partners-banner__title {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.15;
}

.partners-banner__title span {
    color: #0047B9;
}

.partners-banner__button {
    padding: 0px 40px;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.partners-brands {
    background: #FAFAFA;
    padding: 24px 0px;
}

.partners-brands__slider {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
}

.partners-brands__slider:not(:last-child) {
    margin-right: 100px;
}

.partners-brands__item img,
.partners-brands__item svg {
    max-width: unset;
}

.partners-numbers {
    padding: 150px 0px 75px;
}

.partners-numbers__wrapper {
    background: #fff;
    border: 1px solid #E5E7EB;
    -webkit-box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 105px;
    -moz-column-gap: 105px;
    column-gap: 105px;
    padding: 60px 25px;
}

.partners-numbers__column {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 230px;
}

.partners-numbers__count {
    color: #0047B9;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.15;
}

.look-for {
    padding: 75px 0px;
}

.look-for__title {
    max-width: 685px;
    text-align: center;
    margin: 0px auto;
}

.look-for__content {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 25px;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.look-for__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 2) / 3);
    flex: 0 0 calc((100% - 25px * 2) / 3);
    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: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 40px;
    text-align: center;
    padding: 40px 25px;
    border: 1px solid #E5E7EB;
    -webkit-box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.look-for__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
}

.look-for__text {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.look-for__text b {
    color: #231F20;
}

.offer {
    padding: 75px 0px 100px;
}

.offer__title {
    text-align: center;
}

.offer__content {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
}

.offer__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
    flex: 0 0 calc((100% - 25px * 1) / 2);
}

.item-offer {
    border: 1px solid #E5E7EB;
    background: #fff;
    -webkit-box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 78px 22px 0px rgba(0, 0, 0, 0), 0px 50px 20px 0px rgba(0, 0, 0, 0), 0px 28px 17px 0px rgba(0, 0, 0, 0.02), 0px 12px 12px 0px rgba(0, 0, 0, 0.03), 0px 3px 7px 0px rgba(0, 0, 0, 0.03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.item-offer__image {
    aspect-ratio: 565/225;
    position: relative;
}

.item-offer__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.item-offer__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
    padding: 25px;
}

.item-offer__text {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.partner-join {
    padding: 80px 0px 120px;
    background: #0047B9;
}

.partner-join__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.partner-join__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
    color: #fff;
}

.partner-join__form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
}

.partner-join__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partner-join__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 24px * 1) / 2);
    flex: 0 0 calc((100% - 24px * 1) / 2);
}

.partner-join__item._full {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.partner-join__button {
    width: 100%;
    max-width: 100%;
}

.partner-join__submited {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.submited-partner-join {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
}

.submited-partner-join__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    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: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 20px 24px;
}

.submited-partner-join__icon {
    width: 270px;
}

.submited-partner-join__icon img,
.submited-partner-join__icon svg {
    width: 100%;
    max-width: 100%;
}

.submited-partner-join__title {
    margin-top: 25px;
    color: #fff;
}

.submited-partner-join__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 15px;
}

.submited-partner-join__button {
    cursor: pointer;
}

.blogs {
    padding: 80px 0px 100px;
}

.blogs__head {
    max-width: 685px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
    margin: 0px auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.blogs__text {
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

.blogs__content {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 40px;
}

.blogs__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
    flex: 0 0 calc((100% - 25px * 1) / 2);
}

.blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
}

.blog__image {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    height: 330px;
    background: url(../img/icons/image-picture.svg) center/100px no-repeat, #E5E7EB;
}

.blog__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.blog__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
}

.blog__name {
    color: #231F20;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.blog__date {
    color: #6B7280;
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
}

.blog-page {
    padding-bottom: 100px;
}

.blog-page__had {
    height: 580px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-page__had img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-page__body {
    padding-top: 40px;
    color: #6B7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.blog-page__body h1 {
    line-height: 1.1;
}

.blog-page__body b,
.blog-page__body strong,
.blog-page__body h1,
.blog-page__body h2,
.blog-page__body h3,
.blog-page__body h4,
.blog-page__body h5,
.blog-page__body h6 {
    color: #231F20;
}

.blog-page__body h4 {
    font-size: 24px;
}

.blog-page__body img {
    width: 100%;
    max-width: 100%;
}

.blog-page__body > *:not(:last-child) {
    margin-bottom: 24px;
}

.blog-page__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
}

.head-blog-page {
    border-bottom: 1px solid #E5E5E5;
    padding: 30px 0px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.head-blog-page__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
}

.head-blog-page__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4px;
}

.head-blog-page__name {
    color: #6B7280;
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
}

.head-blog-page__body {
    color: #6B7280;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.user__avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
}

.user__avatar img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.socials-blog-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.socials-blog-page__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

.socials-blog-page__item img,
.socials-blog-page__item svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.other-publications {
    background: #F9F9F9;
    padding: 80px 0px 100px;
}

.other-publications__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.other-publications__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.other-publications__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.other-publications__content {
    margin-top: 60px;
}

.other-publications__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
}

.other-publications__item:not(:last-child) {
    margin-right: 24px;
}

.other-publications__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 40px;
}

.page {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

@media (min-width: 479.98px) {
    .mine__deep {
        display: none;
    }

    .help__title br {
        display: none;
    }

    .mini-about-active__row:nth-child(2) .mini-about-active__body {
        max-width: 440px;
    }
}

@media (max-height: 870px) and (min-width: 479.98px) {
    .water-type__image {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@media (max-height: 700px) and (min-width: 479.98px) {
    .water-type__image {
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@media (min-width: 721.98px) {
    .safety__image {
        -webkit-transform: rotate(-30deg) translateX(15%) translateY(5%) scale(0.9);
        -ms-transform: rotate(-30deg) translateX(15%) translateY(5%) scale(0.9);
        transform: rotate(-30deg) translateX(15%) translateY(5%) scale(0.9);
    }

    .benefits-safety__item:nth-child(1) {
        padding-left: 80px;
    }

    .benefits-safety__item:nth-child(2) {
        padding-left: 140px;
    }

    .benefits-safety__item:nth-child(3) {
        padding-left: 200px;
    }

    .water-type__bg-text wbr:not(._mmd3, ._min-md3) {
        display: none;
    }

    .sports-areas__include-map-wrapper {
        display: none;
    }

    .blog-page__footer {
        display: none;
    }

    .other-publications__footer {
        display: none;
    }
}

@media (min-width: 991.98px) {
    .quantity__button:hover::before,
    .quantity__button:hover::after {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .header._white:not(._menu-open, ._scroll) .menu__link {
        color: #fff;
    }

    .header__icon {
        display: none;
    }

    .menu__link._active {
        font-weight: 700;
    }

    .balance__mineral:nth-child(1) {
        left: 7%;
        top: 4%;
    }

    .balance__mineral:nth-child(2) {
        right: 13%;
        top: 0%;
    }

    .balance__mineral:nth-child(3) {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 31%;
    }

    .balance__mineral:nth-child(4) {
        bottom: 2%;
        left: 10%;
    }

    .balance__mineral:nth-child(5) {
        right: 9%;
        bottom: 0%;
    }

    .mineral._hover .mineral__info {
        -webkit-transition: -webkit-transform 0.3s 0.2s;
        transition: -webkit-transform 0.3s 0.2s;
        -o-transition: transform 0.3s 0.2s;
        transition: transform 0.3s 0.2s;
        transition: transform 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
    }

    .mineral__short-name {
        -webkit-transition: all 0.3s 0s;
        -o-transition: all 0.3s 0s;
        transition: all 0.3s 0s;
    }

    .mineral__name {
        margin: 0px -40px;
    }

    .health__space-text {
        display: none;
    }

    .water-type__item {
        margin: 0px 100px;
    }

    .about-benefits__row:nth-child(2) {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: -200px 0px -70px;
    }

    .about-benefits__row:nth-child(2) .about-benefits__wrapper {
        max-width: 39%;
    }

    .about-benefits__body .about-benefits__title {
        display: none;
    }

    .features-numbers__arrows {
        display: none;
    }
}

@media (min-width: 991.98px) and (any-hover: hover) {
    .header._white:not(._menu-open, ._scroll) .menu__link:hover {
        color: #fff;
        text-decoration: underline;
    }
}

@media (min-width: 992px) {
    .select__option:hover {
        background: #d9d9d9;
    }

    .checkbox a:hover {
        text-decoration: none;
    }
}

@media (min-width: 1212px) {
    .main-footer__nav {
        margin-right: calc((100vw - 1200px) / 2);
    }

    .sports-areas__body {
        padding: 30px calc((100vw - 1150px) / 2) 30px 100px;
    }

    .other-publications__slider {
        margin: -20px calc((100vw - 1150px) / 2 * -1);
        padding: 20px calc((100vw - 1150px) / 2);
    }
}

@media (min-width: 1920px) {
    .water-type__bg-text {
        font-size: 405px;
    }

    .water-type__bg-text._big {
        font-size: 700px;
    }
}

@media (max-width: 1212px) {
    .main-footer__content {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }

    .main-footer__nav {
        padding-left: 50px;
    }

    .banner {
        margin-bottom: 60px;
    }

    .banner__bottle {
        bottom: 100px;
        -webkit-transform: translateY(0%) translateX(-5%) rotate(-30deg);
        -ms-transform: translateY(0%) translateX(-5%) rotate(-30deg);
        transform: translateY(0%) translateX(-5%) rotate(-30deg);
    }

    .banner__content {
        margin-top: 150px;
    }

    .publications {
        padding: 60px 0px;
    }

    .advantages {
        padding: 60px 0px;
    }

    .advantages__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 25px * 2) / 3);
        flex: 0 0 calc((100% - 25px * 2) / 3);
    }

    .mine {
        margin: 60px 0px;
    }

    .safety {
        padding: 60px 0px;
    }

    .safety__wrapper {
        margin-top: -100px;
        -webkit-column-gap: 100px;
        -moz-column-gap: 100px;
        column-gap: 100px;
    }

    .balance {
        margin: 60px 0px;
    }

    .about-banner__wrapper {
        -webkit-column-gap: 70px;
        -moz-column-gap: 70px;
        column-gap: 70px;
    }

    .about-banner__title {
        font-size: 62px;
    }

    .water-type {
        min-height: 1000px;
    }

    .active-banner__content {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }

    .active-banner__title {
        font-size: 62px;
    }

    .support-active__content {
        row-gap: 100px;
    }

    .sports-areas__wrapper {
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    .sports-areas__map {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
        flex: 0 0 calc(100% / 2);
    }

    .sports-areas__map #map {
        aspect-ratio: unset;
        height: 100%;
        min-height: 520px;
    }

    .sports-areas__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
        flex: 0 0 calc(100% / 2);
    }

    .partners-banner__title {
        font-size: 62px;
    }

    .other-publications__slider {
        margin: -20px -25px;
        padding: 20px 25px;
    }
}

@media (max-width: 991.98px) {
    .select__title {
        font-size: 18px;
    }

    .select__options {
        font-size: 18px;
    }

    .header__logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-right: auto;
    }

    .header__menu {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .header__language {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .header__icon {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .menu__body {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
        padding: 77px 25px 20px;
        -webkit-transition: all 0.3s 0s;
        -o-transition: all 0.3s 0s;
        transition: all 0.3s 0s;
        z-index: 3;
    }

    .menu__body:not(._active) {
        pointer-events: none;
        visibility: hidden;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    .menu__body::after {
        content: "";
        width: 100%;
        height: 77px;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        display: inline-block;
    }

    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .menu__item:not(:last-child) {
        border-bottom: 1px solid #E5E7EB;
    }

    .menu__link {
        padding: 15px 0px;
    }

    .footer__main {
        margin-top: 30px;
    }

    .footer__bottom {
        margin-top: 60px;
    }

    .main-footer__content {
        margin-top: 80px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .main-footer__nav {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
        padding-left: 30px;
    }

    .banner {
        margin-bottom: 50px;
    }

    .banner {
        padding: 120px 0px 60px;
    }

    .banner__bottle {
        -webkit-transform: translateY(0%) translateX(-25%) rotate(-30deg);
        -ms-transform: translateY(0%) translateX(-25%) rotate(-30deg);
        transform: translateY(0%) translateX(-25%) rotate(-30deg);
        bottom: 70px;
        width: 74vw;
    }

    .banner__content {
        margin-top: 80px;
    }

    .publications {
        padding: 50px 0px;
    }

    .publications__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 430px;
        flex: 0 0 430px;
    }

    .advantages {
        padding: 50px 0px;
    }

    .advantages__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 290px;
        flex: 0 0 290px;
    }

    .mine {
        margin: 50px 0px;
    }

    .safety {
        padding: 50px 0px;
    }

    .safety__wrapper {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
        margin-top: 30px;
    }

    .safety__body {
        row-gap: 40px;
    }

    .safety__button {
        margin-left: 170px;
    }

    .benefits-safety {
        row-gap: 25px;
    }

    .balance {
        margin: 50px 0px;
    }

    .balance__content {
        min-height: 0px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 80px;
        margin-top: 60px;
    }

    .balance__mineral {
        position: relative;
    }

    .mineral {
        -webkit-transition: all 0s 0s;
        -o-transition: all 0s 0s;
        transition: all 0s 0s;
    }

    ._no-webp .health{
        background: url(../img/om-health-mob.png) top center/100% no-repeat; }

    .health {
        padding: 115.2vw 0px 23vw;
    }

    .health__wrapper {
        height: auto;
        min-height: 100vw;
        padding: 20px 0px;
    }

    .health__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 24px;
    }

    .health__link {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .child {
        padding: 50px 0px 120px;
    }

    .child__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .about-banner {
        padding: 120px 0px 60px;
    }

    .about-banner__wrapper {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }

    .about-banner__bottle {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
        flex: 0 0 160px;
    }

    .about-banner__title {
        font-size: 48px;
    }

    .about-philosophy {
        padding: 60px 0px;
    }

    .water-type {
        min-height: unset;
    }

    .water-type__bg-text._big {
        font-size: 65vw;
    }

    .about-benefits__container {
        row-gap: 120px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .about-benefits__wrapper {
        max-width: 565px;
        text-align: center;
    }

    .about-benefits__title {
        display: none;
    }

    .about-benefits__body .about-benefits__title {
        display: block;
    }

    .about-benefits__text {
        margin-top: 25px;
    }

    .about-benefits__button {
        width: 100%;
    }

    .where-order__body {
        padding: 20px 0px 20px 20px;
    }

    .where-order__text {
        margin-top: 15px;
    }

    .where-order__button > div {
        padding-left: 20px;
        padding-right: 20px;
    }

    .where-order__button {
        margin-top: 25px;
        width: 100%;
    }

    .where-order__button img,
    .where-order__button svg {
        display: none;
    }

    .where-order__image {
        min-height: 340px;
    }

    .active-banner__bottle {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
        flex: 0 0 220px;
    }

    .active-banner__title {
        font-size: 48px;
    }

    .active-banner__button {
        margin-top: 25px;
    }

    .mini-about-active {
        min-height: 840px;
    }

    .support-active__body {
        margin-top: 120px;
    }

    .features-numbers__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 265px;
        flex: 0 0 265px;
        row-gap: 25px;
        padding: 40px 15px;
    }

    .press-kit__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px * 1) / 2);
        flex: 0 0 calc((100% - 60px * 1) / 2);
    }

    .partners-banner {
        padding: 120px 0px 60px;
    }

    .partners-banner__title {
        font-size: 48px;
    }

    .partners-numbers__wrapper {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .look-for__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 25px * 1) / 2);
        flex: 0 0 calc((100% - 25px * 1) / 2);
    }

    .partner-join__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 40px;
    }

    .partner-join__title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        text-align: center;
    }

    .head-blog-page__name {
        font-size: 14px;
    }

    .other-publications__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 430px;
        flex: 0 0 430px;
    }
}

@media (max-width: 991.98px) and (max-width: 479.98px) {
    .menu__body::after {
        height: 63px;
    }

    .menu__body {
        padding: 64px 15px 20px;
    }
}

@media (max-width: 721.98px) {
    .main-footer__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 40px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .main-footer__nav {
        border: none;
        padding-left: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .main-footer__list {
        -webkit-column-gap: 100px;
        -moz-column-gap: 100px;
        column-gap: 100px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
        position: relative;
    }

    .main-footer__list::after {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: inline-block;
    }

    .banner__bottle {
        position: static;
        -webkit-transform: translateX(-38%);
        -ms-transform: translateX(-38%);
        transform: translateX(-38%);
        width: 165vw;
        margin-left: -25px;
        margin-top: 30px;
    }

    .banner__content {
        margin-top: 30px;
    }

    .banner__button {
        display: none;
    }

    .safety__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }

    .safety__image {
        margin-top: 15vw;
        height: 200vw;
        width: auto;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-transform: rotate(-60deg) translateY(20%);
        -ms-transform: rotate(-60deg) translateY(20%);
        transform: rotate(-60deg) translateY(20%);
        margin: -65vw 0px -50vw;
    }

    .safety__text {
        display: none;
    }

    .safety__button {
        margin: 0px auto;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        width: 100%;
    }

    .balance__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 60px;
    }

    .balance__mineral:nth-child(1) {
        width: 277px;
    }

    .balance__mineral:nth-child(2) {
        width: 300px;
    }

    .balance__mineral:nth-child(3) {
        width: 300px;
    }

    .balance__mineral:nth-child(4) {
        width: 310px;
    }

    .balance__mineral:nth-child(5) {
        width: 318px;
    }

    .mineral__short-name {
        font-size: 36px;
    }

    .mineral__name {
        font-size: 36px;
    }

    .mineral__text {
        margin-top: 15px;
    }

    .mineral__mods {
        margin-top: 15px;
    }

    .about-banner {
        min-height: 0px;
        padding: 120px 0px 520px;
        background: url(../img/om-logo.svg) 31% -30px/auto no-repeat, #68ABE4;
    }

    .about-banner__wrapper {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .about-banner__bottle {
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(43%);
        -ms-transform: translateX(-50%) translateY(43%);
        transform: translateX(-50%) translateY(43%);
        width: 240px;
    }

    .about-banner__body {
        padding: 0px;
    }

    .about-banner__button {
        display: none;
    }

    .about-philosophy__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 25px;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .about-philosophy__title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .about-philosophy__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .water-type__bg-text wbr._min-md3 {
        display: none;
    }

    .water-type__bg-text {
        font-size: 44vw;
    }

    .where-order__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .where-order__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding: 25px;
    }

    .nav-help {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        max-width: 100vw;
        padding: 0px 20px 10px;
        margin-bottom: -10px;
        overflow-x: auto;
    }

    .help-help {
        padding: 25px;
    }

    .active-banner__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 40px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .active-banner__button {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .sports-areas {
        padding: 0px 25px;
    }

    .sports-areas__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .sports-areas__map {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .sports-areas__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding: 0px;
        text-align: center;
    }

    .press-kit__content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        row-gap: 40px;
    }

    .press-kit__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 440px;
    }

    .partners-banner {
        padding: 120px 0px 50px;
    }

    .partners-numbers__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 60px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .offer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .blogs__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .head-blog-page__socials {
        display: none;
    }

    .other-publications__head .other-publications__arrows {
        display: none;
    }
}

@media (max-width: 479.98px) {
    body._pt .page {
        padding-top: 63px;
    }

    body._bg-logo .page {
        background: url(../img/om-logo-g.svg) 31% -30px/auto no-repeat, #fff;
    }

    body {
        font-size: 16px;
    }

    ._container {
        padding: 0px 15px;
    }

    .input {
        padding: 0px 15px;
        min-height: 56px;
        font-size: 16px;
    }

    .checkbox__content {
        font-size: 16px;
    }

    .space-text__deep {
        height: 420px;
        background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(rgba(0, 56, 146, 0.2)));
        background: -o-linear-gradient(top, #FFF 0%, rgba(0, 56, 146, 0.2) 100%);
        background: linear-gradient(180deg, #FFF 0%, rgba(0, 56, 146, 0.2) 100%);
    }

    .space-text__deep span {
        display: none;
    }

    ._btn {
        font-size: 16px;
        min-height: 56px;
    }

    ._btn._blue > div {
        min-height: 52px;
    }

    ._marked {
        font-size: 18px;
    }

    h1 {
        font-size: 24px;
    }

    .popup__body {
        padding: 60px 0px 100px;
    }

    .header {
        padding: 20px 0px;
    }

    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 56px;
        flex: 0 0 56px;
        width: 56px;
    }

    .footer {
        padding-bottom: 25px;
    }

    .main-footer__quote {
        font-size: 6.2vw;
    }

    .main-footer__list {
        font-size: 16px;
    }

    .socials-main-footer {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .bottom-footer__go-top {
        display: none;
    }

    .banner__space-text {
        font-size: 38vw;
    }

    .banner__bottle {
        margin-left: -15px;
    }

    .banner__text {
        font-size: 16px;
    }

    .publications__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .publications__item:not(:last-child) {
        margin-right: 15px;
    }

    .mine {
        padding: 32vw 0px 22vw;
        background: url(../img/waves.svg) 80% 100%/1290px auto no-repeat, #0047B9 !important;
    }

    .mine__body {
        width: 80%;
    }

    .mine__text {
        font-size: 16px;
    }

    .balance {
        padding: 30px 0px 100px;
    }

    .balance__text {
        font-size: 16px;
    }

    .mineral._hover {
        width: 100%;
        margin: -20px 0px;
    }

    .health__text {
        font-size: 16px;
    }

    .health__link {
        margin-top: -10px;
    }

    .child {
        padding: 50px 0px 100px;
    }

    .child__bottle {
        position: static;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 165vw;
    }

    .child__container {
        row-gap: 40px;
    }

    .child__image {
        width: 172px;
        height: 172px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 172px;
        flex: 0 0 172px;
    }

    .child__text {
        font-size: 16px;
        margin-top: 15px;
    }

    .about-banner__title {
        font-size: 32px;
    }

    .about-philosophy__wrapper {
        row-gap: 20px;
    }

    .about-philosophy__body {
        font-size: 16px;
    }

    .toggether__title {
        min-height: 50svh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .water-type {
        min-height: 0px;
        padding-top: 0;
        height: auto;
    }

    .water-type__bg-text._big {
        font-size: 60vw;
    }

    .water-type__slider {
        height: 760px;
    }

    .water-type__slider {
        padding: 0px 15px;
        margin: 0px -15px;
    }

    .water-type__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        max-height: 100%;
    }

    .water-type__image {
        -webkit-transform: scale(0.4);
        -ms-transform: scale(0.4);
        transform: scale(0.4);
    }

    .water-type__volume {
        font-size: 16px;
        font-weight: 400;
        padding: 0px 0px 9px;
        border-bottom: 2px dashed #fff;
        left: 50%;
        top: 20%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .water-type__volume::after {
        background: none;
        border-left: 2px dashed #fff;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 0px;
        height: 40px;
        top: 100%;
        left: 50%;
    }

    .water-type__volume::before {
        bottom: -40px;
        top: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .about-benefits {
        padding: 60px 0px;
    }

    .about-benefits__text {
        font-size: 16px;
        margin-top: 15px;
    }

    .where-order {
        padding: 60px 0px 120px;
    }

    .where-order__body {
        padding: 15px;
    }

    .where-order__text {
        font-size: 16px;
    }

    .help {
        padding: 30px 0px 100px;
    }

    .help__title {
        font-size: 32px;
    }

    .help__subtitle {
        font-size: 16px;
        display: none;
    }

    .help__nav {
        margin-top: 15px;
    }

    .help__content {
        margin-top: 40px;
    }

    .help__list {
        row-gap: 15px;
    }

    .nav-help__item {
        font-size: 16px;
    }

    .help-help {
        padding: 15px;
    }

    .help-help__title {
        font-size: 16px;
    }

    .help-help__arrow {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
        flex: 0 0 16px;
        height: 16px;
        width: 16px;
    }

    .help-help__body {
        margin-top: 8px;
    }

    .help-help__body {
        font-size: 16px;
    }

    .active-banner__title {
        font-size: 36px;
    }

    .active-banner__button {
        display: none;
    }

    .mini-about-active {
        padding: 60px 0px;
        margin-top: 50px;
    }

    .mini-about-active__container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .mini-about-active__body {
        max-width: calc((100% - 15px * 1) / 2);
    }

    .mini-about-active__text {
        font-size: 16px;
    }

    .mine__space-text {
        display: none;

        &.mob {
            display: inline-block;
            width: 100%;

            img {
                width: 100%;
                margin-top: -2px;
            }
        }
    }

    .support-active {
        padding: 60px 0px;
    }

    .support-active__content {
        row-gap: 140px;
    }

    .support-active__row:first-child .support-active__action-line {
        -webkit-transform: rotate(-15deg) translateX(-50%);
        -ms-transform: rotate(-15deg) translateX(-50%);
        transform: rotate(-15deg) translateX(-50%);
    }

    .support-active__row:first-child .support-active__body {
        margin-top: 160px;
    }

    .support-active__row:nth-child(2) .support-active__action-line {
        -webkit-transform: rotate(15deg) translateX(-50%);
        -ms-transform: rotate(15deg) translateX(-50%);
        transform: rotate(15deg) translateX(-50%);
    }

    .support-active__row:nth-child(2) .action-line__slider {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }

    .support-active__row:nth-child(2) .action-line__slider:not(:last-child) {
        margin-right: 10px;
    }

    .support-active__row:nth-child(2) .action-line__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
        flex: 0 0 52px;
        width: 52px;
    }

    .support-active__row:nth-child(3) {
        margin-top: -150px;
    }

    .support-active__row:nth-child(3) .support-active__action-line {
        -webkit-transform: rotate(-15deg) translateX(-50%);
        -ms-transform: rotate(-15deg) translateX(-50%);
        transform: rotate(-15deg) translateX(-50%);
    }

    .support-active__row:nth-child(3) .action-line__slider {
        -webkit-column-gap: 14px;
        -moz-column-gap: 14px;
        column-gap: 14px;
    }

    .support-active__row:nth-child(3) .action-line__slider:not(:last-child) {
        margin-right: 12px;
    }

    .support-active__row:nth-child(3) .action-line__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 68px;
        flex: 0 0 68px;
        width: 68px;
    }

    .support-active__row:nth-child(3) .support-active__body {
        margin-top: 150px;
    }

    .support-active__wrapper {
        font-size: 16px;
    }

    .action-line__slider {
        min-height: 80px;
    }

    .action-line__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 73px;
        flex: 0 0 73px;
        width: 73px;
    }

    .sports-areas {
        padding: 0px 15px;
        margin: 60px 0px 50px;
    }

    .sports-areas__text {
        margin-top: 15px;
    }

    .sports-areas__text {
        font-size: 16px;
    }

    .sports-areas__include-map-wrapper {
        margin: 40px -15px 0px;
    }

    .marquee-sports-areas {
        font-size: 16px;
        min-height: 38px;
    }

    .numbers {
        padding: 60px 0px;
    }

    .numbers__container {
        row-gap: 60px;
    }

    .numbers__body {
        margin-top: 40px;
    }

    .stats-numbers {
        row-gap: 60px;
    }

    .features-numbers__slider {
        padding: 20px 15px;
        margin: -20px -15px;
    }

    .features-numbers__body {
        font-size: 16px;
    }

    .fest {
        padding: 50px 0px 100px;
    }

    .fest__space {
        padding: 20px 0px;
    }

    .fest__body {
        padding: 25px 0px;
    }

    .fest__text {
        font-size: 24px;
    }

    .marquee-fest {
        padding: 8px 0px;
        font-size: 18px;
    }

    .logo-marquee-fest {
        padding: 24px 0px;
    }

    .logo-marquee-fest__slider {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
    }

    .logo-marquee-fest__slider:not(:last-child) {
        margin-right: 8px;
    }

    .logo-marquee-fest__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 104px;
        flex: 0 0 104px;
        width: 104px;
    }

    .press-kit {
        padding: 30px 0px 100px;
    }

    .press-kit__title {
        font-size: 36px;
    }

    .press-kit__text {
        font-size: 16px;
    }

    ._no-webp .partners-banner{
        background: url(../img/partners-banner-bg-mob.jpg) center/cover no-repeat; }

    .partners-banner__body {
        row-gap: 40px;
        text-align: center;
    }

    .partners-banner__title {
        font-size: 36px;
    }

    .partners-banner__button {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        padding: 0px 20px;
        width: 100%;
        margin: 0px 10px;
    }

    .partners-brands {
        padding: 12px 0px;
    }

    .partners-brands__slider {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .partners-brands__slider:not(:last-child) {
        margin-right: 30px;
    }

    .partners-brands__item img,
    .partners-brands__item svg {
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
    }

    .partners-numbers {
        padding: 60px 0px 50px;
    }

    .partners-numbers__column {
        font-size: 16px;
    }

    .look-for {
        padding: 60px 0px 50px;
    }

    .look-for__title {
        font-size: 24px;
    }

    .look-for__content {
        margin-top: 40px;
    }

    .look-for__item {
        padding: 60px 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .look-for__text {
        font-size: 16px;
    }

    .offer {
        padding: 50px 0px 100px;
    }

    .offer__content {
        margin-top: 40px;
    }

    .item-offer__body {
        row-gap: 8px;
    }

    .item-offer__name {
        font-size: 16px;
    }

    .item-offer__text {
        font-size: 16px;
    }

    .partner-join {
        padding: 60px 0px 120px;
    }

    .partner-join__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .submited-partner-join__icon {
        width: 220px;
    }

    .submited-partner-join__text {
        font-size: 16px;
    }

    .blogs {
        padding: 30px 0px 100px;
    }

    .blogs__title {
        font-size: 36px;
    }

    .blogs__text {
        font-size: 16px;
    }

    .blog__image {
        height: auto;
        aspect-ratio: 1;
    }

    .blog-page {
        padding-bottom: 60px;
    }

    .blog-page__body {
        font-size: 16px;
    }

    .blog-page__body h1 {
        font-size: 36px;
    }

    .blog-page__body h4 {
        font-size: 16px;
    }

    .blog-page__body img {
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .head-blog-page__info {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }

    .head-blog-page__column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 1) / 2);
        flex: 0 0 calc((100% - 15px * 1) / 2);
    }

    .other-publications {
        padding: 60px 0px 80px;
    }

    .other-publications__title {
        font-size: 36px;
    }

    .other-publications__content {
        margin-top: 40px;
    }

    .other-publications__slider {
        margin: -20px -15px;
        padding: 20px 15px;
    }

    .other-publications__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media (min-width: 721.98px) and (max-width: 991.98px) {
    .benefits-safety__item:nth-child(1) {
        padding-left: 50px;
    }

    .benefits-safety__item:nth-child(2) {
        padding-left: 90px;
    }

    .benefits-safety__item:nth-child(3) {
        padding-left: 130px;
    }
}

@media (min-width: 991.98px) and (max-width: 1212px) {
    .balance__mineral:nth-child(1) {
        left: 2%;
    }

    .balance__mineral:nth-child(2) {
        right: 6%;
    }

    .balance__mineral:nth-child(4) {
        left: 6%;
    }

    .balance__mineral:nth-child(5) {
        right: 3%;
    }
}

@media (any-hover: hover) {
    ._btn._blue:hover {
        background: #0047B9;
        color: #fff;
    }

    ._btn._blue:hover > div {
        background: #0047B9;
    }

    ._btn._blue:hover svg path[fill] {
        fill: #fff;
    }

    ._btn._blue:hover svg path[stroke] {
        stroke: #fff;
    }

    ._btn._blue:hover::after {
        background: #0047B9;
    }

    ._btn:hover::after {
        background: #fff;
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    ._slider-arrow:hover {
        border-color: #0047B9;
        background: #0047B9;
    }

    ._slider-arrow:hover svg path[fill] {
        fill: #fff;
    }

    ._slider-arrow:hover svg path[stroke] {
        stroke: #fff;
    }

    .header._white:not(._menu-open, ._scroll) .header__language:hover {
        color: #fff;
        text-decoration: underline;
    }

    .header._white:not(._menu-open, ._scroll) .header__language:hover svg path[fill] {
        fill: #fff;
    }

    .header._white:not(._menu-open, ._scroll) .header__language:hover svg path[stroke] {
        stroke: #fff;
    }

    .header__language:hover {
        color: #0047B9;
    }

    .header__language:hover svg path[fill] {
        fill: #0047B9;
    }

    .header__language:hover svg path[stroke] {
        stroke: #0047B9;
    }

    .menu__link:not(._active):hover {
        color: #0047B9;
    }

    .main-footer__list a:hover {
        text-decoration: underline;
    }

    .bottom-footer__go-top:hover {
        text-decoration: underline;
    }

    .publications__arrow:hover {
        border-color: #0047B9;
        background: #fff;
    }

    .publications__arrow:hover svg path[fill] {
        fill: #fff;
    }

    .publications__arrow:hover svg path[stroke] {
        stroke: #fff;
    }

    .publication:hover {
        -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.35);
    }

    .publication:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    .active-banner__button:hover::after {
        background: #0047B9 !important;
    }

    .press-kit__download:hover svg path[fill] {
        fill: #0047B9;
    }

    .press-kit__download:hover svg path[stroke] {
        stroke: #0047B9;
    }

    .blog__image:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    .blog__name:hover {
        color: #0047B9;
    }

    .socials-blog-page__item:hover {
        border-color: #231F20;
    }
}

._webp .health.ru{ background: url(../img/om-health.webp) top center/100% no-repeat; }
._webp .health.ro{ background: url(../../apaom-ro/img/om-health.webp) top center/100% no-repeat; }

._webp .mini-about-active{ background: url(../img/mini-about-active-bg.webp) center bottom/cover no-repeat; }

._webp .partners-banner{ background: url(../img/partners-banner-bg.webp) center/cover no-repeat; }

@media (max-width: 991.98px){

    ._webp .health.ru{ background: url(../img/om-health-mob.webp) top center/100% no-repeat !important; }
    ._webp .health.ro{ background: url(../../apaom-ro/img/om-health-mob.webp) top center/100% no-repeat!important; }
}

@media (max-width: 479.98px){

    ._webp .partners-banner{ background: url(../img/partners-banner-bg-mob.webp) center/cover no-repeat; }
}

.attachment__caption {
    display: none!important;
}

figcaption {
    display: none!important;
}

figure.attachment img {
    height: auto!important;
}
