@charset "UTF-8";

 

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:active,
:focus {
    outline: 0
}

a:active,
a:focus {
    outline: 0
}

aside,
footer,
header,
nav,
section {
    display: block
}

body,
html {
    height: 100%;
    min-width: 320px
}

body {
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button,
input,
textarea {
    font-family: 'Open Sans', sans-serif;
}

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: inherit;
    font-size: inherit
}

body {
    color: #000;
    font-size: 18px
}

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 {
    width: 100%;
    max-width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 0
}

.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: 0 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 .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    width: 11px;
    height: 7px;
    background: url(../images/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 0 5px 0
}

.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0
}

.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=email],
input[type=tel],
input[type=text],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.input {
    border-radius: 0 !important;
    width: 100%;
    display: block;
    padding: 0 20px
}

textarea.input {
    resize: none;
    padding: 0 0
}

.checkbox {
    position: relative
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden
}

.checkbox__input:checked+.checkbox__text:before {
    background: #fff url(../images/check.svg) center no-repeat
}

.checkbox__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: #fff;
    letter-spacing: -.3px;
    line-height: calc(20 / 16);
    cursor: pointer
}

.checkbox__text:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0 14px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac
}

.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: #fff;
    letter-spacing: -.3px;
    line-height: calc(20 / 16)
}

.options__text:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0 14px 0 0;
    -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 .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .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(../images/bg_rating.svg) 0 0 no-repeat;
    z-index: 1;
    background-size: 85px 100%
}

.rating__activeline {
    position: absolute;
    width: 0;
    height: 14px;
    top: 0;
    left: 0;
    background: url(../images/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, .45)
}

.quantity__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    position: relative;
    cursor: pointer
}

.quantity__button::after,
.quantity__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    margin: 0 0 0 -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
}

.row:after {
    display: block;
    content: "";
    clear: both
}

.rub:after {
    content: "₽"
}

ol.counter {
    list-style-type: none;
    counter-reset: item
}

ol.counter li {
    position: relative;
    padding: 0 0 0 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 embed,
.video iframe,
.video object,
.video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.videobg embed,
.videobg iframe,
.videobg object,
.videobg video {
    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(../images/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(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
    display: none !important
}

.slick-slider {
    position: relative
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -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: 0 !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, .5);
    border-radius: 3px 0 0 3px;
    position: relative;
    left: 0;
    top: 0;
    width: 100%
}

.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 30px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: visibility .8s ease 0s;
    -o-transition: visibility .8s ease 0s;
    transition: visibility .8s ease 0s;
    visibility: hidden
}

.popup::before {
    content: "";
    background-color: rgba(0, 0, 0, .9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .8s ease 0s;
    -o-transition: opacity .8s ease 0s;
    transition: opacity .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 .3s ease .2s;
    -o-transition: all .3s ease .2s;
    transition: all .3s ease .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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center
}

.popup__body {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: #fff;
    padding: 50px;
    width: 100%;
    max-width: 800px
}

.popup__close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 30;
    background: url(../images/close.svg) 0 0 no-repeat
}

.footer {
    padding: 20px 0 50px
}

.footer__content {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #000
}

.footer__text {
    width: 100%;
    max-width: 350px;
    margin: 0 auto
}

.footer__text a {
    font-weight: 600;
    color: inherit
}

.banner {
    padding-bottom: 125px
}

.banner__body {
    padding-top: 90px
}

.head-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
    padding: 10px 0
}

.head-banner__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 169px;
    flex: 0 0 169px
}

.head-banner__logo img {
    width: 100%;
    max-width: 100%
}

.head-banner__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.head-banner__order {
    background: #1987C7;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px
}

.menu__link { 
    font-size: 16px;
    line-height: 1.1;
    color: #1F2A40
}

.body-banner {
    position: relative
}

.body-banner__info {
    background: rgba(25, 35, 58, 0.95);
    width: 100%;
    max-width: 575px;
    padding: 50px 22px;
    text-align: center;
}

.body-banner__title {
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff
}

.body-banner__subtitle {
    margin-top: 8px;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    color: #fff
}

.body-banner__text {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    margin-top: 30px
}

.body-banner__image {
    width: 100%;
    max-width: 360px
}

.body-banner__image img {
    width: 100%;
    max-width: 100%
}

.body-banner__info {
    position: relative;
}

.priceplace {
    background-image: url('../images/price_place.png');
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 197px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px 40px 14px 20px;
    width: 100%;
    position: absolute;
    right: -197px;
    top: 0;
}

.priceplace .newprice {
    font-family: Roboto;
    line-height: 1;
    font-size: 35px;
    font-weight: 700;
    color: #FFF; 
    text-align: center;

}

.priceplace .oldprice {
    font-family: Roboto;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 300;
    color: #FFF;
    text-align: center;
    text-decoration: line-through;

}

.body-banner__price {
    display: flex;
    flex-direction: column;
    position: absolute;
        bottom: -55px;
        right: 210px;
    width: 180px;
    height: 180px;
    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;
    text-align: center;
    background: #0074c2;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #fff
}

.body-banner__price img {
    margin-top: -70px;
    margin-bottom: 10px;
}

.body-banner__price b {
    font-weight: 800;
}

.body-banner__price span {
    font-weight: 400;
    font-size: 20px;
    text-decoration: line-through
}

.body-banner__form {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 448px;
    margin-top: 30px
}

.form-body-banner {
    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: 10px
}

.form-body-banner__input {
    width: 100%;
    max-width: 100%;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 45px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px
}

.form-body-banner__input::-webkit-input-placeholder {
    color: #999
}

.form-body-banner__input::-moz-placeholder {
    color: #999
}

.form-body-banner__input:-ms-input-placeholder {
    color: #999
}

.form-body-banner__input::-ms-input-placeholder {
    color: #999
}

.form-body-banner__input::placeholder {
    color: #999
}

.form-body-banner__btn {
    background: #1987C7;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    height: 65px;
    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;
    margin-top: 5px
}

.prizered {
    background-color: #F32727;
    height: 210px;
    margin-bottom: 30px;
}

.redpromo { 
    display: flex;
    align-items: center;
    max-width: 1235px;
    justify-content: center;
    position: relative;
    top: -40px;

}

.redpromo img {
    margin-right: 30px;
    width: 290px;
    height: 290px;
}

.redpromo_title {
    color: #FFF; 
    font-size: 28px; 
    font-weight: 800; 
    text-transform: uppercase;
    margin-bottom: 15px;
}

.redpromo_regular {
    color: #FFF; 
    font-size: 16px; 
    line-height: 1.3;
    font-weight: 400; 
}

._title span {
    color: #1987C7;
}

._title {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    
    color: #252E43
}

.innovation {
    padding: 60px 0
}

.innovation__container {
    max-width: 1210px
}

.innovation__content {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 40px;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px
}

.innovation__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 50px * 3)/ 4);
    flex: 0 0 calc((100% - 50px * 3)/ 4);
    max-width: 240px;
}

.innovation__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 69px;
    flex: 0 0 69px
}

.innovation__icon img {
    max-height: 100%;
    height: 100%
}

.innovation__name {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #000
}

.innovation__text {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #252E43;
    margin-top: 35px
}

.innovation__text strong {
    color: #1987C7;
    font-weight: 800;
}

._no-webp .about {
    background: url(../images/about-bg.jpg) center/cover no-repeat
}

.about {
    padding: 60px 0
}

.about__container {
    max-width: 1150px
}

.about__title {
    color: #fff
}

.about__content {
    margin-top: 30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    color: #fff
}

.about__button {
    padding: 15px 10px;
    background: #0074c2;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin: 30px auto 0;
    width: 100%;
    max-width: 400px
}

.videoblock {
    padding: 60px 0;
    background-image: url('../images/bg_mountains.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.videoblock__container {
    max-width: 1160px
}

.videoblock__content {
    margin-top: 30px
}

.videoblock__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #000
}

.videoblock__video {
    width: 100%;
    max-width: 930px;
    margin: 30px auto 0
}

.feature {
    padding: 60px 0;
    background: #000;
    position: relative;
    overflow: hidden
}

.feature__title {
    color: #fff
}

.feature__content {
    margin-top: 40px
}

.feature__blocks {
    margin-top: 55px;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto
}

.feature__order {
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    height: 50px;
    max-width: 270px;
    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;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto
}

.nav-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px
}

.nav-feature__slider {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.nav-feature__item {
    padding: 10px 0;
    color: #a4a4a4;
    font-size: 16px;
    font-weight: 700;
    line-height: .7;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border-bottom: 1px solid transparent
}

.nav-feature__item._active {
    color: #fff;
    border-color: #fff
}

.nav-feature__item:not(:last-child) {
    margin-right: 35px
}

.nav-feature__arrow {
    cursor: pointer
}

.block-feature__title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: .7;
    text-align: center;
    text-transform: uppercase
}

.block-feature__content {
    margin-top: 50px
}

.block-feature__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.block-feature__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px
}

.block-feature__item:not(:last-child) {
    margin-bottom: 25px
}

.block-feature__name {
    color: #989898;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.block-feature__wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-bottom: 1px dotted #989898;
    height: 17px
}

.block-feature__value {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    text-align: right;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.color {
    padding: 50px 0
}

.color__title {
    font-size: 40px
}

.color__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 220px;
    -moz-column-gap: 220px;
    column-gap: 220px;
    margin-top: 30px
}

.color__column {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 650px;
    flex: 0 0 650px;
    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
}

.slider_wrapper {
    position: relative;
}

.arrow-left {
    left: -60px;
}

.arrow-right {
    right: -60px;
}

.arrow-slider {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.man_slider, .woman_slider {
    max-width: 420px; 
}

.color__head {
    width: 100%;
    max-width: 650px;
    position: relative
}

.color__image {
    width: 100%;
    max-width: 100%
}

.color__image img {
    width: 100%;
    max-width: 100%
}

.color__body {
    margin-top: 25px
}

.color__body img {
    display: block;
    margin: 0 auto 25px;
}

.color__name {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    color: #252E43;
    margin-bottom: 10px;

}

 

.color__text {
    color: #252E43;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 5px;
    text-align: center
}

.color__button {
    width: 100%;
    max-width: 190px;
    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;
    background: #0074c2;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    height: 50px;
    margin: 20px auto 0
}

.price-color {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.price-color::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -18px;
    width: 18px;
    height: 18px;
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    display: inline-block;
    background: #000
}

.price-color::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -18px;
    width: 18px;
    height: 18px;
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%);
    display: inline-block;
    background: #000
}

.price-color__main {
    background: #f32727;
    padding: 10px 15px 20px;
    -webkit-clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
    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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 160px;
    height: 132px
}

.price-color__old {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    position: relative
}

.price-color__old::after {
    content: "";
    width: calc(100% + 4px);
    height: 1px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(9.59deg);
    -ms-transform: translate(-50%, -50%) rotate(9.59deg);
    transform: translate(-50%, -50%) rotate(9.59deg)
}

.price-color__value {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2
}

.sizes {
        background-image: url(../images/bg_mountains.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 45px 10px;
}

 

.point_num {
    color: #FFF;
    font-size: 24px;
    font-family: Montserrat;
    font-weight: 700;
    background-color: #252E43;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    
}

.points_header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.point_title {
    text-transform: uppercase;
    color: #252E43;
    font-weight: 700;
    font-family: Open Sans;
    font-size: 24px;
    
}

.point_text {
    max-width: 335px;
    width: 100%;
    color: #252E43;
    line-height: 1.2;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}


.points_item:not(:last-child) {
    margin-bottom: 45px;
}

.main_row:not(:last-child) {
    border-bottom: 1px solid #C5C5C5;
} 

.row_col:not(:last-child) {
    border-right: 1px solid #C5C5C5;
}

.row_col {
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.woman_table {
    margin-top: 35px;
    display: flex;
    align-items: center; 
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    max-width: 620px;
}

.man_table {
    margin-top: 35px;
    display: flex;
    align-items: center;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    max-width: 480px;
}

.sizes_info {
    display: flex;
    align-items: center;
}

.sizes_points {
    margin-left: 80px;
}

.row_col {
    color: #252E43;

    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
}

.main_row:nth-child(1) div {  
    height: 55px;
    padding: 5px 0;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.letter {
    color: #252E43;
    font-weight: 700;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
}

.woman_table .main_tablewrap {
    position: relative;
    max-width: 555px;
    width: 100%;
    background: #FFF;
}

.man_table .main_tablewrap {
    position: relative;
    max-width: 410px;
    width: 100%;
    background: #FFF;
}

.man_table .row_col:not(:first-child) {
    width: 110px;
}

.woman_table .blue_title {
    
    height: 300px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1987C7;
}

.man_table .blue_title {

    height: 215px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1987C7;
}

.blue_title p { 
   color: #fff;
   text-align: center;
   font-family: Montserrat;
   font-size: 24px;
   font-style: normal;
   font-weight: 700;
   transform: rotate(-90deg);
   -webkit-transform: rotate(-90deg);
   -moz-transform: rotate(-90deg);
   -ms-transform: rotate(-90deg);
   -o-transform: rotate(-90deg);
}





.main_row {
    display: flex;
    justify-content: space-between;
    
}

.gallery__title {
    padding: 15px 15px; 
    width: 100%;
    max-width: 100%;
    background: #fff;
    color: #000;
    font-size: 40px
}

.gallery__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.gallery__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4)
}

.gallery__image {
    width: 100%;
    padding-bottom: 83%;
    position: relative
}

.gallery__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.delivery {
    padding: 60px 0
}

.delivery__container {
    max-width: 1170px
}

.delivery__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto
}

.delivery__title {
    font-size: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: right
}

.delivery__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 344px;
    flex: 0 0 344px
}

.delivery__image img {
    width: 100%;
    max-width: 100%
}

.delivery__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin-top: 40px;
    row-gap: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.delivery__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 40px * 4)/ 5);
    flex: 0 0 calc((100% - 40px * 4)/ 5)
}

.delivery__step {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #f32727
}

.delivery__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    margin-top: 11px;
    max-width: 240px
}

.review {
    padding: 60px 0;
    background: #d7e6f0
}

.review__title {
    font-size: 40px
}

.review__content {
    margin-top: 30px;
    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
}

.review__item {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 25px 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.review__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px
}

.review__name {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #000
}

.review__star {
    margin-top: 7px;
    width: 100%;
    max-width: 104px
}

.review__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px
}

.review__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
}

.review__head {
    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-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.review__date {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #787878
}

.review__recomendation {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #2fa849;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px
}

.review__recomendation::before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17px;
    flex: 0 0 17px;
    height: 17px;
    width: 17px;
    display: inline-block;
    background: url(../images/accept.svg) center/100% auto no-repeat
}

.review__description {
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000
}

.review__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px
}

.review__other {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    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
}

.review__comments {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #0074c2;
    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
}

.review__comments::after {
    content: "";
    width: 17px;
    height: 17px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17px;
    flex: 0 0 17px;
    background: url(../images/more.svg) center/100% auto no-repeat
}

.review__counts {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    color: #787878
}

.rating-review {
    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
}

.rating-review__like {
    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
}

.rating-review__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18px;
    flex: 0 0 18px;
    height: 18px;
    width: 18px
}

.rating-review__icon img {
    width: 100%;
    max-width: 100%
}

.rating-review__count {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #787878
}

.rating-review__dislike {
    margin-bottom: -5px
}

.mobile-review__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #000
}

.mobile-review__stars {
    margin-top: 4px;
    width: 100%;
    max-width: 75px
}

.mobile-review__stars img,
.mobile-review__stars svg {
    width: 100%;
    max-width: 100%
}

.page {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

@media (min-width:767.98px) {
    .feature {
        min-height: 685px
    }

    .review__mobile {
        display: none
    }
}

@media (min-width:991.98px) {

    .quantity__button:hover::after,
    .quantity__button:hover::before {
        background-color: rgba(0, 0, 0, .5)
    }

    .banner {
        background: url(../images/banner-bg.jpg) center bottom/cover no-repeat;
        max-width: 1920px;
        margin: auto;
    }

    .body-banner__image {
        display: none
    }
}

@media (min-width:992px) {
    .select__option:hover {
        background: #d9d9d9
    }

    .checkbox a:hover {
        text-decoration: none
    }
}

@media (min-width:1362px) {
    ._no-webp .feature {
        background: url(../images/feature-image.png) 100px 100%/auto no-repeat, #000
    }

    .nav-feature__slider .swiper-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width:1362px) {
    .banner {
        padding-bottom: 80px
    }

    .banner__body {
        padding-top: 50px
    }

    .head-banner {
        -webkit-column-gap: 35px;
        -moz-column-gap: 35px;
        column-gap: 35px
    }

    .head-banner__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 129px;
        flex: 0 0 129px
    }

    .head-banner__order {
        font-size: 16px;
        padding: 8px 15px
    }

    .menu__list {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }

    .menu__link {
        font-size: 12px
    }

    .body-banner__title {
        font-size: 42px
    }

    .body-banner__subtitle {
        font-size: 24px
    }

    .body-banner__text {
        font-size: 20px
    }

    .body-banner__price {
        right: 20px;
        top: 80px
    }

    .gallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
        flex: 0 0 calc(100% / 2)
    }
}

@media (max-width:1350px) {
    ._title {
        font-size: calc(24px + 24 * ((100vw - 320px)/ 1030))
    }

    .color__title {
        font-size: calc(28px + 20 * ((100vw - 320px)/ 1030))
    }

    .gallery__title {
        font-size: calc(28px + 20 * ((100vw - 320px)/ 1030))
    }

    .delivery__title {
        font-size: calc(28px + 20 * ((100vw - 320px)/ 1030))
    }

    .review__title {
        font-size: calc(28px + 20 * ((100vw - 320px)/ 1030))
    }
}

@media (max-width:991.98px) {
    .color__column {
        flex: 0 0 0;
    }
    .select__title {
        font-size: 18px
    }

    .select__options {
        font-size: 18px
    }

    .footer {
        padding: 20px 0 30px
    }

    .footer__content {
        font-size: 14px
    }

    .banner {

        background-color: #1D1D1D;
        background-image: url('../images/bg_mob.jpg');
    }

    .head-banner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .head-banner__menu {
        display: none
    }

    .body-banner__info {
        
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }

    .body-banner__other {
        position: relative;
        margin-top: 30px;
        margin-left: -15px;
        margin-right: -15px
    }

    

    .body-banner__form {
        margin-top: 0
    }

    .innovation {
        padding: 40px 0
    }

  

    .about {
        padding: 40px 0
    }

    .about__content {
        margin-top: 20px;
        font-size: 18px
    }

    .videoblock {
        padding: 40px 0
    }

    .videoblock__content {
        margin-top: 20px
    }

    .videoblock__video {
        margin: 20px auto 0
    }

    .feature {
        padding: 40px 0
    }

    .feature__content {
        margin-top: 25px
    }

    .color__content {
        -webkit-column-gap: 90px;
        -moz-column-gap: 90px;
        column-gap: 90px;
        margin-top: 20px
    }

    .delivery {
        padding: 40px 0
    }

    .delivery__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 30px
    }

    .delivery__title {
        text-align: center
    }

    .delivery__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        max-width: 344px
    }

    .delivery__content {
        margin-top: 25px
    }

    .delivery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * 1)/ 2);
        flex: 0 0 calc((100% - 40px * 1)/ 2);
        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;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .review {
        padding: 40px 0
    }

    .review__content {
        margin-top: 25px
    }

    .review__item {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
        padding: 20px 20px
    }
    .redpromo {
        flex-direction: column;
        top: -15px;
    }
    .redpromo_title {
        line-height: 1.6;
        text-align: center;
        font-size: 16px;
        margin-top: 10px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .redpromo img {
        height: 163px;
        width: 163px;
        margin-right: 0;
    }
    .redpromo_regular {
        text-align: center;
    }
    .prizered {
        height: 400px;
    }
    .redpromo_regular br {
        display: none;
    }
    .body-banner__title {
        font-size: 18px;
    }
    .body-banner__info {
        padding: 38px 15px;
    }
    .body-banner__text {
        font-size: 16px!important;
    }
    .body-banner__subtitle {
        max-width: 250px;
        line-height: 1.4;
    }
    .body-banner__text {
        margin-bottom: 20px;
    }
    .form-body-banner__btn {
        font-size: 24px!important;
    }
    .body-banner__info {
        margin-top: 495px;
        z-index: 10;
    }
    .banner {
        padding-bottom: 55px;
    }
    .body-banner__price {
            right: 113px;
            top: 365px;
            z-index: 11;
    }
    .priceplace {
           right: 5px;
           top: -105px;
           max-width: 145px;
           padding: 14px 0px 14px 20px; 
           z-index: 10;
    }
    .priceplace .newprice {
        font-size: 20px;
    }
    .priceplace .oldprice {
        font-size: 14px;
    }
    .body-banner__price::before {
        content: '';
        width: 100%;
        background-color: rgba(25, 35, 58, 0.95); 
        height:30px;
        bottom: 0;
        position: absolute;
        z-index: 12;
    }
    .innovation {
        padding: 0 0 30px!important
    }
    .innovation__content {
        justify-content: center;
    }
    ._title {
        font-size: 32px;
    }
    .innovation__text {
        font-size: 16px;
    }
    .videoblock,
    .sizes {
        background-image: url(../images/bg_mountains_mob.jpg);
    }
    .man_slider,
    .woman_slider {
        max-width: 297px;
        margin-top: 130px;
        z-index: 10;
    }
    .arrow-slider {
        width: 30px;
        height: 30px;
    }
    .arrow-left {
        left: -40px;
    }
    .arrow-right {
        right: -40px;
    }

    .slider_wrapper .priceplace {
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        right: 80px;
        top: 35px; 
        height: 100px;
        background-size: contain;
    }
    .slider_wrapper .priceplace .oldprice,
    .slider_wrapper .priceplace .newprice {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        position: absolute;
    }
    .slider_wrapper .priceplace .oldprice {
            position: relative;
            top: 0px;
            left: -30px;

    }
    .slider_wrapper .priceplace .newprice {
        position: absolute;
        left: 55px;
    }
    .woman_table,
    .man_table {
        overflow-x: scroll;
        max-width: 375px; 
    }
    .row_col {
        min-width: 90px;
    }
    .woman_table .main_tablewrap,
    .man_table .main_tablewrap {
        width: unset;
        max-width: unset;
    }
    .blue_title {
            background-color: #C80F2E!important;
    }
    .gallery__item {
            flex: 0 0 50%!important;
            -ms-flex: 0 0 100%!important;
    }
    .delivery__image {
        max-width: 271px;
    }
    .delivery__title,
    .review__title {
        font-weight: 700;
    }
}

@media (max-width:767.98px) {
    .banner__body {
        padding-top: 30px
    }

    .innovation__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 50px * 1)/ 2);
        flex: 0 0 calc((100% - 50px * 1)/ 2)
    }

   

    .feature__blocks {
        margin-top: 35px
    }

    .block-feature__content {
        margin-top: 30px
    }

    .block-feature__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 10px
    }

    .block-feature__name {
        text-align: center
    }

    .block-feature__wrapper {
        display: none
    }

    .block-feature__value {
        text-align: center;
        line-height: 1.3
    }

    .color__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px
    }

    .review__info {
        display: none
    }

    .review__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        row-gap: 2px
    }
}

@media (max-width:479.98px) {
    .footer {
        padding: 10px 0
    }

    .footer__content {
        font-size: 12px
    }

    .banner__body {
        padding-top: 20px
    }

    .head-banner {
        padding: 15px 0
    }

    .head-banner__order {
        font-size: 16px
    }

    .body-banner__subtitle {
        font-size: 18px
    }

    .body-banner__text {
        font-size: 18px;
        margin-top: 20px
    }

    .body-banner__other {
        margin-top: 0px;
        margin-bottom: 25px;
    }

    .form-body-banner__input {
        padding: 0 30px
    }

    .form-body-banner__btn {
        font-size: 20px
    }

    .innovation {
        padding: 30px 0 40px
    }

    .innovation__content {
        margin-top: 25px;
        row-gap: 20px
    }

    .innovation__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        row-gap: 15px
    }

    .innovation__icon img {
        -webkit-transform: scale(.85);
        -ms-transform: scale(.85);
        transform: scale(.85)
    }

    .innovation__name {
        font-size: 16px
    }

    .about__content {
        font-size: 16px
    }

    .about__button {
        font-size: 20px;
        margin: 25px auto 0
    }

    .videoblock__text {
        font-size: 16px
    }

    .feature__content {
        margin-top: 15px
    }

    .feature__blocks {
        margin-top: 25px
    }

    .color {
        padding: 30px 0 35px
    }

    .color__content {
        row-gap: 10px;
        margin-top: 12px
    }

    .color__head {
        max-width: 225px
    }

    .color__body {
        margin-top: 15px
    }

    .price-color {
        bottom: 5px
    }

    .gallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }

    .delivery__head {
        row-gap: 10px
    }

    .delivery__content {
        margin-top: 15px
    }

    .delivery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }

    .delivery__text {
        margin-top: 5px
    }

    .review__item {
        padding: 20px 15px
    }

    .review__date {
        font-size: 14px
    }

    .review__recomendation {
        font-size: 14px
    }

    .review__recomendation::before {
        width: 12px;
        height: 12px
    }

    .review__description {
        font-size: 16px
    }

    .review__footer {
        margin-top: 10px
    }

    .review__other {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .review__comments {
        font-size: 14px;
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px
    }

    .review__counts {
        font-size: 12px
    }
}

@media (any-hover:hover) {
    .footer__text a:hover {
        text-decoration: underline
    }
}

._webp .about {
    background: url(../images/about-bg.webp) center/cover no-repeat
}

@media (min-width:991.98px) {
    ._webp .banner {
        background: url(../images/banner-bg.jpg) center bottom/cover no-repeat;
        background-color: #dee2ee;
    }
}

@media (min-width: 1920px) {
    ._webp .banner {
        background-color: #dee2ee;
        background-image: url(../images/banner-bg.jpg);
        background-size: contain;
    }
}

@media (min-width:1362px) {
    ._webp .feature {
        background: url(../images/feature-image.webp) 100px 100%/auto no-repeat, #000
    }
}