* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-weight: 400;
    margin: 0;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html {
    min-height: 100%;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

img {
    border: 0;
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: top;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

input {
    border: none;
}

:focus {
    outline: none;
}

.popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
    pointer-events: none;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.popup.popup_show {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    pointer-events: all;
}

.popup.popup_show .popup__close {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__close {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.popup__content {
    max-width: 35em;
    background-color: #fff;
    position: relative;
    z-index: 5;
    padding: 2em 3em;
    text-align: center;
    -webkit-transition: opacity 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.popup__btn {
    position: absolute;
    top: 1em;
    right: 1em;
    height: 1.3em;
    width: 1.3em;
    cursor: pointer;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
}

.popup__btn:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.icon-svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.popup__policy .icon-svg {
    fill: #000;
}

.popup__slider .popup__content {
    background-color: transparent;
    width: 100%;
    height: 100%;
    max-width: 95%;
    max-height: 90%;
}

.popup__slider .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popup__slider .swiper-slide span {
    color: #fff;
    margin-left: 2em;
    font-size: 2em;
}

.popup__slider .swiper-container {
    height: 100%;
}

.popup__slider .swiper-button-prev,
.popup__slider .swiper-button-next {
    top: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: auto;
}

.popup__slider .swiper-button-prev {
    left: 0;
    -webkit-transform: translate(0, -50%) rotate(180deg);
    -ms-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
}

.popup__slider .swiper-button-next {
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.popup__video .icon-svg {
    fill: #fff;
}

.popup__video .popup__content,
.popup__video .popup-video__wrap {
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popup__video iframe {
    width: 70%;
    height: 70%;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

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

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-property: -webkit-transform, -webkit-transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

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

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-property: -webkit-transform, -webkit-transform;
    transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
    visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -moz-box-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    -webkit-transition-property: -webkit-transform, height, -webkit-transform;
    transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("../img/1208636a3ff8ab81d679813569ca24197b396442.svg");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("../img/f4f4c306cc5d19d97906a1b230e8dde5d8dd525b.svg");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("../img/efffa812de900fe70348a1b8a796f05390ba5900.svg");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("../img/a49c9ca2c493b67e7a764d9bae37da1694307f11.svg");
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    display: inline-block;
    border-radius: 100%;
    margin: 0 7px;
    position: relative;
}

.swiper-pagination-bullet:after {
    content: '';
    border-radius: 100%;
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms transform, 200ms top;
    -webkit-transition: 200ms -webkit-transform, 200ms top, 200ms -webkit-transform;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms transform, 200ms left;
    -webkit-transition: 200ms -webkit-transform, 200ms left, 200ms -webkit-transform;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms transform, 200ms right;
    -webkit-transition: 200ms -webkit-transform, 200ms right, 200ms -webkit-transform;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("../img/2d9f3ad17bdfef8697c1f9605bff810abcb90da5.svg");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("../img/9bd90e94d75873a1ddfbd8dc59da17f0a98a6dda.svg");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

.flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-end {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-italic {
    font-style: italic;
}

.color-yellow {
    color: #ffd800;
}

.footer {
    padding: 1.05em 0;
    background-color: rgba(0, 0, 0, 0.6);
    -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#60000000', EndColorStr='#60000000')";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
}

.footer p {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
}

.policy {
    text-align: center;
}

.policy a {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.policy a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    -webkit-transition: width 500ms ease-in-out;
    transition: width 500ms ease-in-out;
}

.policy a:hover:after {
    width: 100%;
}

.advantages {
    padding-top: 5.94rem;
    z-index: 5;
    position: relative;
}

.advantages .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.advantages__title {
    width: 80%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.advantages__title--img {
    width: 12.5rem;
    margin-right: 3rem;
}

.advantages__title--txt {
    width: 70%;
}

.advantages__title--txt span {
    color: #ff4200;
}

.advantages__title--txt h5 {
    color: #222;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.advantages__title--txt p {
    color: #222;
    font-size: 1.125rem;
    line-height: 1.438rem;
    font-weight: 500;
    margin-top: 2.2rem;
}

.advantages__title--txt p span {
    font-weight: 700;
}

.advantages__wrap {
    margin-top: 4.2rem;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.advantages__item {
    width: 22.5rem;
    margin: 0 0.13rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #0c1320), to(rgba(12, 19, 32, 0.2)));
    background: -webkit-linear-gradient(top, #0c1320 70%, rgba(12, 19, 32, 0.2) 100%);
    background: linear-gradient(to bottom, #0c1320 70%, rgba(12, 19, 32, 0.2) 100%);
}

.advantages__item--txt {
    padding: 1.38rem;
    min-height: 22.92rem;
}

.advantages__item--txt span {
    color: #ff9000;
    font-weight: 700;
}

.advantages__item--txt p {
    font-size: 1.125rem;
    line-height: 1.688rem;
    color: #fff;
    font-weight: 400;
    display: inline-block;
}

.advantages__resume {
    background: url("../img/adv-bg-4.png") no-repeat;
    background-size: cover;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.38rem;
    padding: 1.38rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.advantages__resume p {
    width: 60%;
    font-size: 1.125rem;
    line-height: 1.438rem;
    color: #fff;
    font-weight: 500;
}

.advantages__resume span {
    color: #ff9000;
    font-weight: 700;
}

.advantages__item--txt-bg-1 {
    background: url("../img/adv-bg-1.png") no-repeat;
    background-size: cover;
}

.advantages__item--txt-bg-2 {
    background: url("../img/adv-bg-2.png") no-repeat;
    background-size: cover;
}

.advantages__item--txt-bg-3 {
    background: url("../img/adv-bg-3.png") no-repeat;
    background-size: cover;
}

.about-brand {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 10rem;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, #e32b42), color-stop(60%, #d01367));
    background: -webkit-linear-gradient(left, #e32b42 30%, #d01367 60%);
    background: linear-gradient(to right, #e32b42 30%, #d01367 60%);
}

.about-brand .wrapper {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about-brand__item {
    position: relative;
    width: 33%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100% /*&:after {
    content: "";
    position: absolute;
    display: block;
    top: rem(-1)
    left: 0
    right: 0
    bottom: 0
    background: url("../images/bg-arrow.png") no-repeat
    z-index: -1
  }*/;
    /*  &:after {
      content: "";
      position: absolute;
      display: block;
      width: 10rem
      height: 100%
      right: -3.5rem
      top: 0
      bottom: 0;
      box-shadow: rem(8) rem(8) rem(40) rgba(#000, 0.4);
      transform rotate(-45deg)
      background-color: #d01367
    }*/
    /*  &:after{
      content: ''
      position: absolute
      //height: 100%
      width: 6rem
      background: url("../images/arrow-pink.png") no-repeat
      top:-0.5rem
      bottom: 0
      right: -5.9rem
      //right: -4.8rem
    }*/
}

.about-brand__item:before {
    content: "";
    position: absolute;
    display: block;
    top: -0.06rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right top, from(#e32b42), to(#d4185f));
    background: -webkit-linear-gradient(left, #e32b42 0%, #d4185f 100%);
    background: linear-gradient(to right, #e32b42 0%, #d4185f 100%);
    z-index: 1;
}

.about-brand__item .chevron:before,
.about-brand__item .chevron:after {
    background-color: #d51b59;
}

.about-brand__item .chevron__line {
    background-color: #d4195e;
}

.about-brand__item_one {
    z-index: 3;
    width: 25%;
}

.about-brand__item_one .about-brand__icon {
    padding-top: 0.5rem;
}

.about-brand__item_two {
    width: 35%;
    z-index: 2;
    padding-left: 2rem;
    left: 4.5rem;
}

.about-brand__item_three {
    width: 40%;
    z-index: 1;
    padding-left: 9rem;
}

.about-brand__item_three:before {
    background: -webkit-gradient(linear, left top, right top, from(#e32b42), to(#d01367));
    background: -webkit-linear-gradient(left, #e32b42 0%, #d01367 100%);
    background: linear-gradient(to right, #e32b42 0%, #d01367 100%);
}

.about-brand__item_three:after {
    display: none;
}

.about-brand__icon {
    min-height: 4.875rem;
}

.about-brand__icon,
.about-brand__txt {
    position: relative;
    z-index: 15;
}

.about-brand__txt {
    margin-top: 0.6rem;
}

.about-brand__txt span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.chevron {
    height: 7rem;
    width: 12rem;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: -19rem;
    z-index: 5;
    top: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.chevron__line {
    position: absolute;
    width: 2rem;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -0.9rem;
    z-index: 2;
    height: 9.5rem;
    top: 0;
    border-radius: 100%;
}

.chevron:before,
.chevron:after {
    content: "";
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    -webkit-box-shadow: 0 0.69rem 0.88rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.69rem 0.88rem rgba(0, 0, 0, 0.3);
}

.chevron:before {
    left: 0;
    -webkit-transform: skew(0deg, 31deg);
    -ms-transform: skew(0deg, 31deg);
    transform: skew(0deg, 31deg);
}

.chevron:after {
    right: 0;
    -webkit-transform: skew(0deg, -31deg);
    -ms-transform: skew(0deg, -31deg);
    transform: skew(0deg, -31deg);
}

.video {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #fafafa), to(#fff));
    background: -webkit-linear-gradient(bottom, #fafafa 20%, #fff 100%);
    background: linear-gradient(to top, #fafafa 20%, #fff 100%);
    position: relative;
    padding: 33rem 0 10.87rem;
    margin-top: -29rem;
    overflow: hidden;
}

.video__bg {
    background: url("../img/bg-video.png") no-repeat top;
    background-size: cover;
    display: block;
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: 0;
}

.video__wrap {
    margin-top: 6.9rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.video__item {
    width: 44.875rem;
    height: 28.125rem;
    position: relative;
    z-index: 100;
}

.video__item:before {
    content: '';
    position: absolute;
    background: url("../img/mac.png") no-repeat center center;
    background-size: contain;
    top: -11.2rem;
    right: -9.7rem;
    bottom: -14.8rem;
    left: -8.8rem;
    z-index: -1;
}

.video__item iframe {
    width: 100%;
    height: 100%;
}

.product {
    background: url("../img/bg-product.png") no-repeat;
    background-size: cover;
    padding: 4.88rem 0 5.69rem;
}

.product-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0;
}

.product-item .swiper-container {
    width: 100%;
    height: 100%;
}

.product-item .swiper-slide {
    background-size: cover;
    background-position: center center;
    cursor: pointer;
}

.product-item .swiper-button-next,
.product-item .swiper-button-prev {
    top: 50%;
    margin-top: -1.37rem;
    width: 2.75rem;
    height: 2.75rem;
}

.product-item .swiper-button-next {
    right: 10px;
    left: auto;
}

.product-item .swiper-button-prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 10px;
    right: auto;
}

.product-item--left {
    width: 48.75rem;
    padding: 1.88rem;
    background-color: rgba(255, 255, 255, 0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#50ffffff', EndColorStr='#50ffffff')";
    -webkit-box-shadow: -0.125rem 0 0.3rem 0.019rem rgba(0, 0, 0, 0.15);
    box-shadow: -0.125rem 0 0.3rem 0.019rem rgba(0, 0, 0, 0.15);
}

.product-item__title {
    margin-bottom: 1.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.product-item__title h4 {
    color: #ff4200;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    text-transform: uppercase;
}

.product-item__title img {
    width: 6.438rem;
    margin: 0 0.7rem 0 0;
}

.product__big-img {
    position: relative;
    display: inline-block;
    width: 45rem;
    height: 27.375rem;
    overflow: hidden;
}

.product__big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__small-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.63rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product__small-img .swiper-slide {
    cursor: pointer;
    display: inline-block;
        width: 10.94rem;
        height: 7.75rem;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide-thumb-active,
.gallery-thumbs2 .swiper-slide-thumb-active,
.gallery-thumbs3 .swiper-slide-thumb-active {
    -webkit-box-shadow: inset 0 -0.312rem 0 #ff4200;
    box-shadow: inset 0 -0.312rem 0 #ff4200;
}

.chevron-svg {
    width: 2.75rem;
    height: 2.75rem;
    fill: #fff;
}

.product-item--right {
    width: 22.5rem;
    padding: 1.82rem;
    background-color: #0c1320;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-item--right .countdown {
    margin-top: 1.7rem;
}

.product-item--right-top {
    width: 100%;
}

.product-item--right-top h3 {
    color: #ff9000;
    font-size: 1.5rem;
    font-weight: 500;
}

.product-item__info {
    margin-top: 1.1rem;
}

.product-info__line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.product-info__line p {
       color: #fff;
       font-size: 15px;
       line-height: 2.2rem;
}

.product-item__info--left {
    margin-right: 10px; 
}

.product-item__info--left p {
    font-weight: 400;
}

.product-item__info--right p {
    font-weight: 500;
}

.product-form {
    width: 100%;
    margin-top: 3.04rem;
}

.order-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-group {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0.54rem;
}

.form-group i {
    position: absolute;
    left: 0.69rem;
    top: 0.44rem;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.875rem;
    height: 1rem;
}

.form-group label {
    display: none;
}

.form-group input, .form-group select {
    width: 100%;
    height: 2.125em;
    color: #444;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 2.07rem;
    position: relative;
    border: 0.063rem solid #062b38;
}

.form-group select {
    /*color: rgba(68,68,68,.6);*/
    background: url("../img/size.png") #fff no-repeat 10px center;

}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

.form-group button {
    width: 100%;
    color: #0c1320;
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 0;
    border: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    background-color: #ffd800;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    padding: 0.7rem 2rem;
    -webkit-box-shadow: 0 0.313rem 0.563rem 0.063rem rgba(0, 0, 0, 0.35);
    box-shadow: 0 0.313rem 0.563rem 0.063rem rgba(0, 0, 0, 0.35);
}

.form-group button:hover {
    -webkit-box-shadow: 0 0 0.594rem 0.031rem rgba(255, 216, 0, 0.45);
    box-shadow: 0 0 0.594rem 0.031rem rgba(255, 216, 0, 0.45);
}

.form-group:last-child {
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: #444;
}

::-moz-placeholder {
    color: #444;
}

:-moz-placeholder {
    color: #444;
}

:-ms-input-placeholder {
    color: #444;
}


input {
    outline: none;
}

.reviews__wrap {
    margin-top: 5.8rem;
    position: relative;
}

.reviews__title {
    margin-top: 5.7rem;
    text-align: center;
}

.reviews__title h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.reviews__wrap-desktop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.review__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 49%;
    margin-bottom: 2.94rem;
}

.review__item__user-photo {
    width: 6.375rem;
    height: 6.375rem;
    background-color: #040407;
    border: 0.063rem solid #2fa3ff;
}

.review__item-info {
    width: 28.375rem;
    padding: 1.88rem;
    background-color: rgba(12, 19, 32, 0.8);
    -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#800c1320', EndColorStr='#800c1320')";
    border: 0.063rem solid #2fa3ff;
}

.review__item__user-name {
    text-align: left;
}

.review__item__user-name p {
    color: #ff9000;
    font-size: 1.125rem;
    font-weight: 500;
}

.review__item__txt {
    margin-top: 1rem;
}

.review__item__txt p {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.review-slider {
    display: none;
}

.review-slider .swiper-container {
    width: 100%;
    padding-bottom: 1rem;
}

.review-slider .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
    background-color: #fff;
    display: inline-block;
    border-radius: 100%;
    margin: 0 7px;
    position: relative;
}

.review-slider .swiper-pagination-bullet-active {
    background-color: #ff9000;
}

.review-slider .reviews-pagination {
    margin: auto;
}

.review-slider .review__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.review-slider .review__item-info {
    width: 100%;
}

.review-slider .review__item__user-name {
    text-align: center;
}

.review-slider .review-button-prev {
    bottom: 0;
}

.review-slider .review-button-next {
    bottom: -0.18rem;
}

.delivery-reviews {
    position: relative;
    padding: 5.44rem 0 5.7rem;
    overflow: hidden;
}

.delivery-reviews__bg {
    background: url("../img/bg-del.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: -2rem;
    bottom: -2rem;
    left: -2rem;
    right: -2rem;
}

.delivery__title {
    text-align: center;
}

.delivery__title h2 {
    color: #0c1320;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.delivery__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: 4.9rem;
    position: relative;
}

.delivery__item {
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.13rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.82rem;
    width: 16.438rem;
    height: 10.125rem;
    background-color: rgba(12, 19, 32, 0.9);
    -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#900c1320', EndColorStr='#900c1320')";
}

.delivery__icon-1 {
    width: 1.438rem;
}

.delivery__icon-2 {
    width: 1.938rem;
}

.delivery__icon-3 {
    width: 3.188rem;
}

.delivery__icon {
    margin-right: 1rem;
}

.delivery__item-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.delivery__item-title h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.delivery__txt {
    margin-top: 1.4rem;
}

.delivery__txt p {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
}

.why-we {
    background: url("../img/bg-about.png") no-repeat;
    background-size: cover;
    padding: 5.63rem 0;
}

.why-we__info_title {
    margin-bottom: 2.3rem;
}

.why-we__info_title h2 {
    color: #ff9000;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.why-we__info_title h5 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.438rem;
    margin-top: 2.4rem;
}

.why-we__info {
    width: 40.82rem;
}

.why-we__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.1rem;
}

.why-we__item_icon {
    width: 1.625rem;
    height: 1.375rem;
    margin-right: 1rem;
}

.why-we__item_txt {
    width: 100%;
}

.why-we__item_txt p {
    font-size: 1.125rem;
    line-height: 1.688rem;
    color: #fff;
    font-weight: 500;
}

.why-we__item_txt span {
    color: #ff9000;
    font-weight: 700;
}

.why-we__info_img-top {
    width: 25.5rem;
    position: absolute;
    right: 0;
    top: 4.4rem;
    z-index: 2;
}

.why-we__info_img-bottom {
    width: 24.375rem;
    position: absolute;
    right: 4.19rem;
    top: 19rem;
    z-index: 1;
}

.bottom-info {
    background: url("../img/bg-bottom.png") no-repeat center;
    background-size: cover;
    padding: 2rem 0 10rem;
}

.bottom-info__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.bottom-info__logo {
    width: 14.063rem;
    margin-right: 3rem;
}

.bottom-info__title h1 {
    color: #ff4200;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    text-transform: uppercase;
}

.bottom-info__title h5 {
    color: #1f3751;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.bottom-info__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.bottom-info__left {
    width: 19.38rem;
    margin-top: 3.1rem;
}

.bottom-info__left .old-price p {
    color: #000;
}

.bottom-info__left .new-price p {
    color: #ff4200;
}

.bottom-info__left .countdown {
    margin-top: 1.1rem;
}

.bottom-info__left .countdown-title h3 {
    color: #010101;
}

.bottom-info__left .time-name {
    padding: 0 3.1rem 0 2.4rem;
}

.bottom-info__left .time-name li {
    color: #000;
}

.bottom-info__left .btn_orange {
    width: 100%;
}

.discount__item-title {
    text-align: center;
}

.discount__item-title p {
    color: #1f3751;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.bottom-info__right {
    position: relative;
    width: 34.69rem;
    top: 30px;
}

.discount__sale-circle {
    width: 10rem;
    height: 10rem;
    background-color: #1f3751;
    border: 0.313rem solid #ff9000;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    right: 4rem;
}

.discount__sale-circle p {
    color: #ff9000;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transform: rotate(13deg);
    -ms-transform: rotate(13deg);
    transform: rotate(13deg);
}

.bottom-info__main-img {
    width: 33.563rem;
}

.top-info {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #fff), to(#fafafa));
    background: -webkit-linear-gradient(bottom, #fff 20%, #fafafa 100%);
    background: linear-gradient(to top, #fff 20%, #fafafa 100%);
    padding: 2.03rem 0 21.7rem;
    position: relative;
    overflow: hidden;
}

.top-info .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
    background: url("../img/Logo-big.png") no-repeat;
    background-size: contain;
    background-position: center center;
}

.top-info__bg {
    background: url("../img/bg-top.png") no-repeat bottom;
    background-size: cover;
    display: block;
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -1rem;
}

.top-info__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 46.88rem;
}

.discount__sale {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.discount__sale-moon {
    width: 11.225rem;
    height: 11.225rem;
    background: url("../img/moon.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.discount__sale-moon p {
    color: #ff4200;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

.logo {
    width: 14.063rem;
    margin: auto;
}

.info__title {
    text-align: center;
    margin-top: 1.48rem;
}

.info__title h1 {
    color: #ff9000;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    text-transform: uppercase;
}

.info__title h5 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.discount-price {
    margin-top: 1.09rem;
}

.old-price {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.old-price p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.25rem;
}

.line-throught {
    position: relative;
    margin-left: 0.5rem;
}

.line-throught:before {
    content: '';
    position: absolute;
    right: 0.13rem;
    bottom: 1.02rem;
    width: 6.563rem;
    height: 0.13rem;
    background-color: #e30613;
}

.new-price {
    text-align: center;
    margin-top: 0.4rem;
}

.new-price p {
    color: #ffd800;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.discount-btn {
    margin-top: 1.5rem;
}

.info__main-img {
    width: 44.125rem;
}

.top-info__about {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-about {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #fff), color-stop(80%, #fafafa), to(#f9f9f9));
    background: -webkit-linear-gradient(bottom, #fff 40%, #fafafa 80%, #f9f9f9 100%);
    background: linear-gradient(to top, #fff 40%, #fafafa 80%, #f9f9f9 100%);
    margin-top: -14rem;
    padding-bottom: 6.1rem;
}

.top-info__about-item {
    width: 22.5rem;
    height: 22.5rem;
    padding: 1.5rem;
    margin: 0 0.13rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #0c1320), to(rgba(12, 19, 32, 0.2)));
    background: -webkit-linear-gradient(bottom, #0c1320 50%, rgba(12, 19, 32, 0.2) 100%);
    background: linear-gradient(to top, #0c1320 50%, rgba(12, 19, 32, 0.2) 100%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-info__about-icon {
    width: 6.5rem;
    height: 6.5rem;
    border: 0.125rem solid #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-info__about-txt {
    margin-top: 1.4rem;
    text-align: center;
    width: 100%;
}

.top-info__about-txt p {
    width: 100%;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.125rem;
}

.top-info__discr {
    width: 100%;
    margin-top: 5.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-info__discr-item {
    width: 22.5rem;
}

.top-info__discr-img {
    width: 22.5rem;
}

.top-info__discr-txt {
    text-align: center;
    margin-top: 0.3rem;
}

.top-info__discr-txt h5 {
    color: #ff4200;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.top-info__discr-txt p {
    color: #222;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.125rem;
    margin-top: 1.4rem;
}

.top-info__about-item--bg-1 {
    background: url("../img/top-bg-1.png") no-repeat;
    background-size: cover;
}

.top-info__about-item--bg-2 {
    background: url("../img/top-bg-2.png") no-repeat;
    background-size: cover;
}

.top-info__about-item--bg-3 {
    background: url("../img/top-bg-3.png") no-repeat;
    background-size: cover;
}

.gallery {
    background: url("../img/bg-gallery.png") no-repeat;
    background-size: cover;
    padding: 6.25rem 0 6.02rem;
    position: relative;
}

.gallery__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gallery__wrap .discount-btn {
    margin-top: 2.82rem;
}

.gallery__column-left {
    width: 22.5rem;
    margin-right: 1rem;
}

.gallery__logo {
    margin: 0 0 2.6rem;
}

.gallery-info p {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.688rem;
}

.gallery-slider {
    padding-bottom: 2.4rem;
    position: relative;
}

.gallery-slider .swiper-container {
    width: 46.875rem;
    height: 31.25rem;
    background-color: #000;
}

.gallery-slider .swiper-pagination {
    bottom: 0;
}

.gallery-slider .swiper-pagination-bullet {
    width: auto;
    height: auto;
    margin: 0 0.32rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
}

.gallery-slider .swiper-pagination-bullet-active {
    color: #ffd800;
    font-size: 3.75rem;
    font-weight: 500;
}

.gallery-slider .swiper-button-prev.swiper-button-disabled,
.gallery-slider .swiper-button-next.swiper-button-disabled {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next {
    width: 1.5rem;
    height: 1.5rem;
}

.gallery-button-prev {
    bottom: 0.1rem;
    right: 7.9rem;
    left: auto;
}

.gallery-button-prev:hover .arrow-svg {
    fill: #ffd800;
}

.gallery-button-next {
    bottom: 0;
    right: 5.25rem;
}

.gallery-button-next:hover .arrow-svg {
    fill: #ffd800;
}

.swiper-button-prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.arrow-svg {
    fill: #fff;
    width: 1.375rem;
    height: 1.375rem;
}

.characteristics {
    background: url("../img/bg-4.png") no-repeat;
    background-size: cover;
    padding: 1.88rem 0 5rem;
}

.characteristics__title {
    text-align: center;
}

.characteristics__title h2 {
    color: #fefefe;
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 0.8rem;
}

.characteristics__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1.88rem;
}

.characteristics__item__icon {
    width: 1.75rem;
    margin-right: 0.69rem;
}

.characteristics__item__info h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.2rem;
}

.characteristics__item__info p {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.3rem;
}

.characteristics__wrap {
    margin-top: 4.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product-set {
    background-color: #f9f9f9;
    padding: 5.88rem 0 3.48rem;
}

.product-set__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 2.5rem;
}

.product-set__title {
    text-align: center;
}

.product-set__title h2 {
    color: #1d1d1d;
    font-size: 2.25rem;
    font-weight: 700;
}

.product-set__item {
    width: 20%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-set__info {
    text-align: center;
    min-height: 3rem;
    margin-top: 1.5rem;
}

.product-set__info span {
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 0.688rem;
}

.product-set__set-1 {
    width: 7.375rem;
}

.product-set__set-2 {
    width: 10.25rem;
}

.product-set__set-3 {
    width: 6.375rem;
    height: 23.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.product-set__set-4 {
    width: 6.375rem;
    height: 23.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

main {
    overflow: hidden;
}

.wrapper {
    width: 100%;
    max-width: 73.13rem;
    padding: 0 0.94rem;
    margin: auto;
    height: 100%;
    position: relative;
}

.padding-right-0 {
    padding-right: 0;
}

.margin-right-0 {
    margin-right: 0;
}

.position-static {
    position: static;
}

.position-absolute {
    position: absolute;
}

.desktop-none {
    display: none;
}

.timer {
    width: 100%;
    max-width: 20rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
}

.timer h5 {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 400;
}

.countdown--white-points .time li {
    -webkit-box-shadow: 0 -0.062rem 0 #fff;
    box-shadow: 0 -0.062rem 0 #fff;
}

.countdown--white-points .time li:before,
.countdown--white-points .time li:after {
    background-color: #fff;
}

.countdown--orange-points .time li {
    -webkit-box-shadow: 0 -0.062rem 0 #ff4200;
    box-shadow: 0 -0.062rem 0 #ff4200;
}

.countdown--orange-points .time li:before,
.countdown--orange-points .time li:after {
    background-color: #ff4200;
}

.time {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.75rem;
}

.time li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    text-transform: uppercase;
    width: 4.875rem;
    height: 3.813rem;
    background-color: #1f3751;
    border-radius: 0.63rem;
    margin-right: 0.94rem;
    position: relative;
}

.time li:last-child {
    margin-right: 0;
    display: none;
}

.time li:before,
.time li:after {
    content: '';
    width: 0.125rem;
    height: 0.688rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.time li:before {
    left: -0.125rem;
}

.time li:after {
    right: -0.125rem;
}

.time .time-bg__dot {
    display: none;
    width: 0.19rem;
    border: none;
    margin: 0 0.63rem;
    font-weight: 100;
}

.time-name {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1.8rem 0 1.4rem;
}

.time-name li {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.5em;
}

.time-name li:nth-child(2) {
    margin-left: 0.6rem;
}

.time-name li:nth-child(3) {
    margin-left: 0.4rem;
}

.time-title {
    text-align: center;
    margin-top: 0.7rem;
}

.time-title h5 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
}

.countdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.countdown-title h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
}

@media (min-width: 981px) and (max-width: 1281px) {
    .wrapper {
        padding: 0 4.82rem;
    }
}

@media (min-width: 681px) and (max-width: 768px) {
    main {
        overflow: hidden;
    }

    .wrapper {
        max-width: 95%;
        padding: 0;
    }

    .discount__sale-moon {
        width: 10.225rem;
        height: 10.225rem;
        top: -3rem;
    }

    .info__title {
        margin-top: 2.5rem;
    }

    .top-info__about-item {
        width: 32%;
        padding: 0.63rem;
        height: 18.5rem;
    }

    .top-info__discr-item {
        width: 31%;
    }

    .top-info__discr-img {
        width: 100%;
    }

    .gallery__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .gallery__wrap .discount-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .gallery__column-left {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .gallery-slider .swiper-container {
        width: 40.875rem;
        height: 27.25rem;
    }

    .advantages__title {
        width: 100%;
    }

    .advantages__title--txt {
        width: 75%;
    }

    .advantages__title--img {
        width: 10.5rem;
        margin-right: 1rem;
    }

    .advantages__item {
        width: 32%;
        background: none;
    }

    .advantages__item--txt {
        padding: 1rem;
        min-height: 30.62rem;
    }

    .video {
        padding: 33rem 0 8.87rem;
        margin-top: -37rem;
    }

    .video__item {
        width: 38.875rem;
        height: 24.125rem;
    }

    .video__wrap {
        margin-top: 10.9rem;
    }

    .video__item:before {
        content: '';
        top: -10.3rem;
        right: -8rem;
        bottom: -13.2rem;
        left: -7rem;
    }

    .product-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-item--left {
        width: 100%;
        padding: 0.5rem;
    }

    .product__big-img {
        width: 100%;
        height: 27.375rem;
    }

    .product__small-img .swiper-slide {
        width: 16%;
    }

    .product-item--right {
        width: 100%;
    }

    .product-item--right-top {
        text-align: center;
    }

    .product-form {
        max-width: 22.5rem;
    }

    .why-we__info {
        width: 100%;
    }

    .why-we__info_img-top,
    .why-we__info_img-bottom {
        display: none;
    }

    .delivery__wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .delivery__item {
        width: 48%;
        margin-bottom: 1.5rem;
    }

    .reviews__wrap-desktop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .review__item {
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .bottom-info__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-info__logo {
        margin-right: 0;
    }

    .bottom-info__title {
        text-align: center;
    }

    .bottom-info__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0;
    }

    .bottom-info__right {
        margin-top: 2rem;
    }

    .discount__sale-circle {
        top: 0;
        right: 0;
    }

    .bottom-info {
        background: url("../img/bg-bottom.png") no-repeat right;
        background-size: cover;
        padding-bottom: 9rem;
    }

    .footer .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .store {
        text-align: center;
    }

    .popup__content h3 {
        font-size: 1.2rem;
    }

    .popup__content p {
        margin: 0.3rem 0;
        font-size: 0.7rem;
    }

    .popup__content {
        padding: 1em 1em;
    }

    .popup__btn {
        top: 0.7em;
        right: 0.7em;
        height: 1em;
        width: 1em;
    }
}

@media (min-width: 481px) and (max-width: 680px) {
    main {
        overflow: hidden;
    }

    .wrapper {
        max-width: 95%;
        padding: 0;
    }

    .top-info .discount-price {
        margin-left: 9rem;
    }

    .top-info .wrapper {
        background: none;
    }

    .info__title {
        margin-bottom: 2rem;
    }

    .info__title h1,
    .info__title h5 {
        font-size: 1.875rem;
        line-height: 1.875rem;
    }

    .discount__sale-moon {
        top: 12rem;
        left: 2rem;
    }

    .info__main-img {
        width: 100%;
        margin-top: 2rem;
    }

    .top-info__about,
    .top-info__discr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .top-info__about-item {
        margin-bottom: 1.5rem;
    }

    .top-info__discr-item {
        margin-bottom: 1.5rem;
    }

    .top-info__discr-img {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .gallery__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .gallery__wrap .discount-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .gallery__column-left {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .gallery-slider .swiper-container {
        width: 28.875rem;
        height: 19.15rem;
    }

    .gallery-slider .swiper-pagination-bullet-active {
        font-size: 1.875rem;
        font-weight: 500;
    }

    .gallery-button-prev {
        right: auto;
        left: 0.5rem;
    }

    .gallery-button-next {
        right: 0.5rem;
    }

    .gallery-slider .swiper-pagination {
        display: inline-block;
    }

    .gallery-slider {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .advantages {
        padding-top: 2.94rem;
    }

    .advantages__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .advantages__title h5 {
        text-align: center;
        margin-bottom: 15rem;
        font-size: 1.875rem;
    }

    .advantages__title--txt {
        width: 100%;
    }

    .advantages__title--img {
        margin-right: 0;
        position: absolute;
        top: 3rem;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .advantages__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .advantages__item {
        width: 100%;
        max-width: 22.5rem;
        margin-bottom: 1.5rem;
    }

    .advantages__item--txt {
        padding: 0.63rem;
        height: 100%;
    }

    .advantages__resume p {
        width: 100%;
    }

    .video__item {
        width: 24.4rem;
        height: 15rem;
    }

    .video__item:before {
        content: '';
        top: -1.65rem;
        right: -5.35rem;
        bottom: -3.55rem;
        left: -4.9rem;
    }

    .video__wrap {
        margin-top: 0.9rem;
    }

    .video {
        padding: 33rem 0 5.87rem;
    }

    .product-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-item--left {
        width: 100%;
        padding: 0.63rem;
    }

    .product-item__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-item__title h4 {
        text-align: center;
        margin-top: 1rem;
    }

    .product__big-img {
        width: 100%;
        height: 18.375rem;
    }

    .product-button-prev,
    .product-button-next {
        display: none;
    }

    .chevron-svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .product {
        padding-bottom: 0.63rem;
    }

    .product__small-img .swiper-wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product__small-img .swiper-slide {
        width: 32%;
        height: 5.75rem;
        margin: 0.1rem 0;
    }

    .product-item--right {
        width: 100%;
        max-width: 22.5rem;
        padding: 1.38rem 0.63rem 3.23rem;
    }

    .product-item__info {
        width: 100%;
    }

    .product-item__info--left {
        margin-right: 1rem;
        width: 6rem;
    }

    .why-we__info {
        width: 100%;
    }

    .why-we__info_title h2 {
        font-size: 1.875rem;
    }

    .why-we__info_img-top {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .why-we__info_img-bottom {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .delivery__wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 3rem;
    }

    .delivery__title h2 {
        font-size: 1.875rem;
    }

    .delivery__item {
        width: 49%;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .reviews__title h2 {
        font-size: 1.875rem;
    }

    .reviews__wrap {
        margin-top: 2.8rem;
    }

    .reviews__wrap-desktop {
        display: none;
    }

    .review-slider {
        display: block;
    }

    .review-slider .review__item-info {
        padding: 0.63rem;
    }

    .bottom-info__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-info__logo {
        margin-right: 0;
    }

    .bottom-info__title {
        text-align: center;
    }

    .bottom-info__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0;
    }

    .bottom-info__right {
        width: 100%;
        margin-top: 2rem;
    }

    .discount__sale-circle {
        width: 8.875rem;
        height: 8.875rem;
        top: 0;
        right: 0;
    }

    .bottom-info {
        background: url("../img/bg-bottom.png") no-repeat right;
        background-size: cover;
        padding-bottom: 9rem;
    }

    .bottom-info__title h1 {
        font-size: 1.875rem;
        margin-top: 1.7rem;
        line-height: 1.875rem;
    }

    .bottom-info__title h5 {
        font-size: 1.875rem;
        line-height: 1.875rem;
        margin-top: 1rem;
    }

    .footer .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .store {
        text-align: center;
    }

    .popup__content h3 {
        font-size: 1.2rem;
    }

    .popup__content p {
        margin: 0.3rem 0;
        font-size: 0.7rem;
    }

    .popup__content {
        max-width: 19em;
        padding: 1em 1em;
    }

    .popup__btn {
        top: 0.7em;
        right: 0.7em;
        height: 1em;
        width: 1em;
    }

    .popup__order .popup__content {
        width: 100%;
        max-width: 19rem;
        padding: 0;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    main {
        overflow: hidden;
    }

    .wrapper {
        max-width: 95%;
        padding: 0;
    }

    .top-info__bg {
        background: url("../img/bg-mobile.png") no-repeat;
        background-size: cover;
        background-position: 0 -7rem;
    }

    .top-info .discount-price {
        margin-left: 9rem;
    }

    .top-info .wrapper {
        background-position: center 23rem;
    }

    .info__title {
        margin-bottom: 2rem;
    }

    .info__title h1,
    .info__title h5 {
        font-size: 1.875rem;
        line-height: 1.875rem;
    }

    .discount__sale-moon {
        width: 9.125rem;
        height: 9.125rem;
        top: 15rem;
        left: 0;
    }

    .info__main-img {
        width: 100%;
        margin-top: 6rem;
    }

    .top-info__about,
    .top-info__discr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .top-info__discr {
        margin-top: 1rem;
    }

    .top-about {
        padding-bottom: 2.1rem;
    }

    .top-info__about-item {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .top-info__discr-item {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .top-info__discr-img {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .gallery {
        padding: 3.25rem 0 6.02rem;
    }

    .gallery__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .gallery__wrap .discount-btn {
        position: absolute;
        bottom: -4rem;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .gallery__column-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .gallery-slider .swiper-container {
        width: 18.875rem;
        height: 12.55rem;
    }

    .gallery-slider .swiper-pagination-bullet-active {
        font-size: 1.875rem;
        font-weight: 500;
    }

    .gallery-button-prev {
        right: auto;
        left: 0.5rem;
    }

    .gallery-button-next {
        right: 0.5rem;
    }

    .gallery-slider .swiper-pagination {
        display: inline-block;
    }

    .gallery-slider {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .advantages {
        padding-top: 2.94rem;
    }

    .advantages__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .advantages__title h5 {
        text-align: center;
        margin-bottom: 16.5rem;
        font-size: 1.875rem;
    }

    .advantages__title--txt {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .advantages__title--txt h5 {
        width: 70%;
    }

    .advantages__title--img {
        width: 12.5rem;
        margin-right: 0;
        position: absolute;
        top: 5rem;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .advantages__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .advantages__item {
        width: 100%;
        max-width: 22.5rem;
        margin-bottom: 1.5rem;
    }

    .advantages__item--txt {
        padding: 0.63rem;
        min-height: 100%;
    }

    .advantages__resume p {
        width: 100%;
    }

    .video__item {
        width: 15.213rem;
        height: 9.413rem;
    }

    .video__item:before {
        content: '';
        top: -0.95rem;
        right: -3.35rem;
        bottom: -2.15rem;
        left: -3rem;
    }

    .video__wrap {
        margin-top: -10.1rem;
    }

    .video {
        padding: 91rem 0 5.87rem;
        margin-top: -73rem;
    }

    .product-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-item--left {
        width: 100%;
        padding: 0.63rem;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
    }

    .product-item__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-item__title h4 {
        text-align: center;
        margin-top: 1rem;
    }

    .product__big-img {
        width: 100%;
        height: 12.375rem;
    }

    .product-button-prev,
    .product-button-next {
        display: none;
    }

    .product {
        padding-bottom: 0.63rem;
        background-position: -57rem -6rem;
    }

    .product__small-img .swiper-wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product__small-img .swiper-slide {
        width: 31%;
        height: 4.75rem;
        margin: 0.1rem;
    }

    .product-item--right {
        width: 100%;
        max-width: 22.5rem;
        padding: 1.38rem 0.63rem 3.23rem;
    }

    .product-item__info {
        width: 100%;
    }

    .product-item__info--left {
        margin-right: 1rem;
        width: 6rem;
    }

    .why-we__info {
        width: 100%;
    }

    .why-we__info_title h2 {
        font-size: 1.875rem;
    }

    .why-we__info_img-top {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
    }

    .why-we__info_img-bottom {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
    }

    .delivery__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 3rem;
    }

    .delivery__title h2 {
        font-size: 1.875rem;
    }

    .delivery__item {
        margin-bottom: 1.5rem;
    }

    .reviews__title h2 {
        font-size: 1.875rem;
    }

    .reviews__wrap {
        margin-top: 2.8rem;
    }

    .reviews__wrap-desktop {
        display: none;
    }

    .review-slider {
        display: block;
    }

    .review-slider .review__item-info {
        padding: 0.63rem;
    }

    .bottom-info__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-info__logo {
        margin-right: 0;
    }

    .bottom-info__title {
        text-align: center;
    }

    .bottom-info__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0;
    }

    .bottom-info__right {
        width: 100%;
        margin-top: 2rem;
    }

    .discount__sale-circle {
        width: 8.875rem;
        height: 8.875rem;
        top: 0;
        right: 0;
    }

    .bottom-info {
        background: url("../img/bg-bottom-mob.png") no-repeat bottom;
        background-size: cover;
        padding-bottom: 9rem;
    }

    .bottom-info__title h1 {
        font-size: 1.875rem;
        margin-top: 1.7rem;
        line-height: 1.875rem;
    }

    .bottom-info__title h5 {
        font-size: 1.875rem;
        line-height: 1.875rem;
        margin-top: 1rem;
    }

    .footer .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .store {
        text-align: center;
    }

    .popup__content h3 {
        font-size: 1.2rem;
    }

    .popup__content p {
        margin: 0.3rem 0;
        font-size: 0.7rem;
    }

    .popup__content {
        max-width: 19em;
        padding: 1em 1em;
    }

    .popup .chevron-svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .popup__btn {
        top: 0.7em;
        right: 0.7em;
        height: 1em;
        width: 1em;
    }

    .popup__order .popup__content {
        width: 100%;
        max-width: 19rem;
        padding: 0;
    }
}

.btn {
    color: #0c1320;
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 0;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0.65rem 1.95rem;
}

.btn_orange {
    color: #fff;
    background-color: #ff4200;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.btn_orange:hover {
    -webkit-box-shadow: 0 0 0.594rem 0.031rem rgba(255, 66, 0, 0.45);
    box-shadow: 0 0 0.594rem 0.031rem rgba(255, 66, 0, 0.45);
}

.btn_yellow {
    background-color: #ffd800;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.btn_yellow:hover {
    -webkit-box-shadow: 0 0 0.594rem 0.031rem rgba(255, 216, 0, 0.45);
    box-shadow: 0 0 0.594rem 0.031rem rgba(255, 216, 0, 0.45);
}

.js__show {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
}

.animate {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

label.error {
    display: none !important;
}

#umcb-form i {
    display: none !important;
}

#xmas {
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 998;
}


#umcb-form select {
    display: none !important;
}

.form-group {
    position: relative;
}

.form-group-icon-1 {
    background: url("../img/man-user.png") center no-repeat;
    z-index: 100;
}

.form-group-icon-2 {
    background: url("../img/call-answer.png") center no-repeat;
    z-index: 100;
}

.popup__content {
    position: relative;

}

.close {
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/dfd21728830745ae3a738018f4d01014e4ef59ed.png") no-repeat;
    width: 20px;
    height: 19px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}

.photo-1 {
    background-image: url("../img/1-1.jpg")
}

.photo-2 {
    background-image: url("../img/2-1.jpg")
}

.photo-3 {
    background-image: url("../img/3-1.jpg")
}

.photo-4 {
    background-image: url("../img/4-1.jpg")
}

.photo-5 {
    background-image: url("../img/5-1.jpg")
}

.photo-6 {
    background-image: url("../img/6-1.jpg")
}

select option {
    padding: 5px;
}

.sale-text {
    color: #fff;
    text-align: center;
    font-size: 19px;
}

.sale-text span {
    font-weight: bold;
    color: #f53e3e;
}

.country_select {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
}
.copyright { font-size: 14px;text-align: center; padding:20px 0;color: #6C6E6F;}
.copyright p { width: 100%; text-align: center; padding: 0; margin: 0; }
.copyright br { display: none; }
.copyright img { margin: 10px auto!important; max-width:100%; }
.copyright a {color: #6C6E6F; text-decoration: none;}
.copyright a:hover { color:#FF0069; text-decoration: none; }
.errField { display:none; font-size: 14px; background: #f00; color: #fff; text-align: center; padding: 10px; margin-bottom:10px; }
.errorMessage {font-size: 15px;background: rgba(255, 0, 0, 0.64);color: #fff;text-align: center;padding: 5px 10px;position: absolute;margin: 10px 0 0; z-index: 9999;}