/* ---------- base ---------- */

@font-face {
    font-family: 'FuturaPT-Bold';
    src: url('../fonts/FuturaPT-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT-Book';
    src: url('../fonts/FuturaPT-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT-Demi';
    src: url('../fonts/FuturaPT-Demi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT-Light';
    src: url('../fonts/FuturaPT-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT-Medium';
    src: url('../fonts/FuturaPT-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ---------- tags ---------- */

*,
*::before,
*::after {
    box-sizing: inherit;
}

@-ms-viewport {
    width: device-width;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

body {
    background: rgb(100, 9, 4);
    color: #000;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

button,
select,
input,
textarea {
    outline: none;
}

button:focus {
    outline: none;
}

figure {
    margin: 0;
}

img {
    display: block;
}

label {
    display: none;
}

/* ---------- classes ---------- */

/* ---------- base ---------- */

.container {
    max-width: 100%;
    min-width: 320px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

.nowrap {
    white-space: nowrap;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.responsive-iframe {
    position: relative;
    padding-bottom: 56.25%;
    /*16:9*/
    height: 0;
    overflow: hidden;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---------- standard ---------- */

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

.timer .time {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.timer .time-item {
    box-sizing: border-box;
    padding-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 2px;
    color: #3258a4;
}

.timer .time-item:first-child {
    margin-left: 0;
}

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

.timer .time-num span {
    background: url(../img/timer-cell-bg.png) no-repeat 50% 50%;
    width: 35px;
    height: 50px;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
    color: #d4d4d4;
}

.timer .time-text {
    margin-top: 2px;
    text-transform: uppercase;
    color: #222;
}

.order-form input {
    display: inline-block;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    font: 16px/35px 'FuturaPT-Book', sans-serif;
    color: #8d8d8d;
    background: #f5f5f5;
    border: none;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.order-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #8d8d8d;
}

.order-form input::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 1;
    color: #8d8d8d;
}

.order-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #8d8d8d;
}

.order-form input:-moz-placeholder {
    /* Firefox 18- */
    opacity: 1;
    color: #8d8d8d;
}

.order-form input:focus::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #8d8d8d;
}

.order-form input:focus::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 1;
    color: #8d8d8d;
}

.order-form input:focus:-ms-input-placeholder {
    /* IE 10+ */
    color: #8d8d8d;
}

.order-form input:focus:-moz-placeholder {
    /* Firefox 18- */
    opacity: 1;
    color: #8d8d8d;
}

.order-form select {
    display: inline-block;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    font: 16px/35px 'FuturaPT-Book', sans-serif;
    color: #8d8d8d;
    background: #f5f5f5;
    border: none;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 0px 20px;
    /*for WebKit*/
    -webkit-appearance: none;
    /* for FF */
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    /* for IE */
    -ms-appearance: none;
    appearance: none !important;
    background-image: url('../img/select-arrow.png');
    background-position: 93% 50%;
    background-repeat: no-repeat;
}

.order-form select:focus {
    border-color: #acacac;
    color: #202020;
}

.order-form select::-ms-expand {
    display: none;
}

.order-form button {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 68px 12px;
    font: 36px/1 'FuturaPT-Book', sans-serif;
    border: none;
    cursor: pointer;
    color: #000;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.3s ease-in-out;
    display: block;
    width: 100%;
}

.privacy-policy-link {
    position: relative;
    color: #000;
}

.privacy-policy-link:hover {
    text-decoration: underline;
}

.privacy-policy-modal {
    position: relative;
    color: #333;
    text-decoration: none;
    padding: 50px;
}

@media (max-width: 767px) {
    .privacy-policy-modal {
        padding: 40px 30px;
    }
}

.privacy-policy-modal-content {
    text-align: justify;
    line-height: 1.5;
    font-size: 18px;
}

.privacy-policy-modal .remodal-close {
    left: auto;
    right: 0;
    width: 40px;
    height: 40px;
}

.privacy-policy-modal .remodal-close:before {
    width: 100%;
    line-height: 40px;
    font-size: 27px;
}

.btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 68px 12px;
    font: 36px/1 'FuturaPT-Book', sans-serif;
    border: none;
    cursor: pointer;
    color: #000;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.3s ease-in-out;
}

.btn_yellow {
    background: #ffdf4a;
    border: 5px solid #ffdf4a;
    box-shadow: 0 0 10px rgba(255, 203, 0, 0.16);
    color: #000;
    text-transform: uppercase;
}

.btn_yellow-order {
    background: #ffdf4a;
    border: 3px solid #ffdf4a;
    color: #1d3039;
    padding: 0 15px;
    font: 30px/40px 'FuturaPT-Book', sans-serif;
    text-transform: uppercase;
}

.btn_yellow-order:hover {
    background: #1d3039;
    color: #ffdf4a;
}

.btn_blue-products {
    font: 18px/40px 'FuturaPT-Medium', sans-serif;
    background: transparent;
    color: #307ca0;
    border: 2px solid #307ca0;
    padding: 0 28px;
    text-transform: uppercase;
}

.btn_blue-products:hover {
    background: #307ca0;
    color: #1d3039;
}

.btn_block {
    display: block;
    width: 100%;
}

.heading-1 {
    font: 42px/1.2 'FuturaPT-Book', sans-serif;
    text-transform: uppercase;
    color: #48d4ff;
}

@media (max-width: 767px) {
    .heading-1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .heading-1 {
        font-size: 30px;
    }
}

@media (max-width: 400px) {
    .heading-1 {
        font-size: 24px;
    }
}

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

.price__old {
    position: relative;
    padding: 0 3px;
    color: #000;
}

.price__old:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff0000;
}

.price__current {
    color: #005385;
}

/***** products *****/

.products {
    display: none;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

@media (max-width: 575px) {
    .products {
        padding-bottom: 300px;
    }
}

.products__container {
    position: relative;
    z-index: 1;
}

.products__bg {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.products__bg-wrap {
    position: absolute;
    top: 400px;
    left: 50%;
    -webkit-transform: translateX(-46.5%);
    -ms-transform: translateX(-46.5%);
    transform: translateX(-46.5%);
    font-size: 40px;
    width: 37.8em;
    height: 56.75em;
    background: url(../images/products.png) no-repeat 0 0;
    background-size: contain;
}

@media (max-width: 1300px) {
    .products__bg-wrap {
        font-size: 38px;
    }
}

@media (max-width: 1199px) {
    .products__bg-wrap {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .products__bg-wrap {
        top: 0;
        font-size: 30px;
        background-position: 0 940px;
        height: 100%;
        top: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .products__bg-wrap {
        background: none;
    }
}

@media (max-width: 575px) {
    .products__bg-wrap {
        font-size: 26px;
    }
}

.products__bg-wrap > * {
    position: absolute;
}

.products__bg:after {
    content: '';
    display: block;
    position: absolute;
    height: 250px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #640904;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#640904));
    background: linear-gradient(to bottom, transparent 0%, #640904 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#640904', GradientType=0);
}

.products__bg .star-1 {
    width: 4.8em;
    top: -13.2%;
    right: 15%;
}

@media (max-width: 1300px) {
    .products__bg .star-1 {
        top: -15.3%;
    }
}

@media (max-width: 991px) {
    .products__bg .star-1 {
        top: 20px;
        right: -10px;
        opacity: 0.9;
    }
}

.products__bg .star-2 {
    width: 4.8em;
    top: 2.8%;
    left: -1%;
    -webkit-transform: rotate(28deg);
    -ms-transform: rotate(28deg);
    transform: rotate(28deg);
}

@media (max-width: 991px) {
    .products__bg .star-2 {
        top: 710px;
        left: -40px;
    }
}

.products__bg .arrow-1 {
    width: 4.05em;
    top: 18.4%;
    right: 6.9%;
    -webkit-transform: rotate(99deg);
    -ms-transform: rotate(99deg);
    transform: rotate(99deg);
}

@media (max-width: 991px) {
    .products__bg .arrow-1 {
        width: 5.05em;
        top: 12.4%;
        right: 2.9%;
    }
}

@media (max-width: 767px) {
    .products__bg .arrow-1 {
        right: -4.1%;
    }
}

.products__bg .arrow-2 {
    width: 5.55em;
    bottom: 34.8%;
    left: -2.8%;
}

@media (max-width: 767px) {
    .products__bg .arrow-2 {
        left: -7.8%;
    }
}

@media (max-width: 500px) {
    .products__bg .arrow-2 {
        left: -13.8%;
    }
}

.products__bg .arrow-3 {
    width: 6.877em;
    bottom: 26.8%;
    right: 19.1%;
}

@media (max-width: 1300px) {
    .products__bg .arrow-3 {
        bottom: 21.8%;
    }
}

@media (max-width: 991px) {
    .products__bg .arrow-3 {
        bottom: 200px;
        left: 70%;
        -webkit-transform: translateX(-90%);
        -ms-transform: translateX(-90%);
        transform: translateX(-90%);
    }
}

@media (max-width: 575px) {
    .products__bg .arrow-3 {
        bottom: 100px;
        left: 50%;
    }
}

.products__bg .present {
    width: 6.4em;
    bottom: 19%;
    right: 9%;
}

@media (max-width: 1300px) {
    .products__bg .present {
        bottom: 14%;
    }
}

@media (max-width: 991px) {
    .products__bg .present {
        bottom: 0;
    }
}

@media (max-width: 575px) {
    .products__bg .present {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-30%);
        -ms-transform: translateX(-30%);
        transform: translateX(-30%);
    }
}

.products__top {
    text-align: center;
}

.products__btns {
    margin: 37px 0 51px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .products__btns {
        display: block;
    }
}

@media (max-width: 500px) {
    .products__btns {
        margin: 25px 0 45px;
    }
}

@media (max-width: 767px) {
    .products__btn {
        width: 45%;
    }
}

@media (max-width: 575px) {
    .products__btn {
        display: block;
        width: 260px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .products__btn {
        width: 240px;
    }
}

.products__btn-woman {
    margin-right: 53px;
}

@media (max-width: 767px) {
    .products__btn-woman {
        margin-right: 20px;
    }
}

@media (max-width: 575px) {
    .products__btn-woman {
        margin-bottom: 14px;
        margin-right: auto;
    }
}

.products__btn.active {
    background: #307ca0;
    color: #1d3039;
}

.products__title {
    font: 40px/1.2 'FuturaPT-Book', sans-serif;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 767px) {
    .products__title {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .products__title {
        font-size: 28px;
    }
}

.products__title-discount {
    display: block;
    margin-top: -19px;
    font: 72px 'FuturaPT-Bold', sans-serif;
    color: #fff600;
}

@media (max-width: 500px) {
    .products__title-discount {
        font-size: 60px;
    }
}

.products__subtitle {
    margin-top: -19px;
    font: 24px/1.2 'FuturaPT-Book', sans-serif;
    color: #ffffff;
}

@media (max-width: 767px) {
    .products__subtitle {
        margin-top: -10px;
        max-width: 450px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .products__subtitle {
        max-width: 320px;
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .products__subtitle {
        max-width: 280px;
        font-size: 16px;
    }
}

.products__main-man {
    display: none;
}

.products__main-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -60px;
    margin-left: -29px;
    row-gap: 80px;
}

@media (max-width: 991px) {
    .products__main-wrap {
        margin-left: -40px;
    }
}

@media (max-width: 767px) {
    .products__main-wrap {
        margin-left: -20px;
        margin-bottom: -40px;
    }
}

@media (max-width: 575px) {
    .products__main-wrap {
        margin-left: 0;
    }
}

.products__card.card {
    margin-bottom: 60px;
    margin-left: 29px;
}

@media (max-width: 1199px) {
    .products__card.card {
        width: 290px;
    }
}

@media (max-width: 991px) {
    .products__card.card {
        width: 325px;
        margin-left: 40px;
    }
}

@media (max-width: 767px) {
    .products__card.card {
        width: 245px;
        margin-left: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .products__card.card {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 400px) {
    .products__card.card {
        width: 263px;
    }
}

/***** card *****/

.card {
    position: relative;
    width: 263px;
    height: 442px;
}

.card__base {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    margin-bottom: 40px;
}

.card__top {
    padding: 45px 15px 10px 15px;
    background: #fff;
    text-align: center;
}

.card__discount {
    position: absolute;
    top: -1px;
    left: 5px;
    width: 75px;
    height: 59px;
    padding-left: 9px;
    background: url(../img/card-discount-img.png) no-repeat 0 0;
    background-size: contain;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(90deg) translateY(-100%);
    -ms-transform: rotate(90deg) translateY(-100%);
    transform: rotate(90deg) translateY(-100%);
    color: #fff600;
    font: 20px/59px 'FuturaPT-Bold', sans-serif;
}

.card__description-title {
    display: inline-block;
    position: relative;
    font: 18px/1 'FuturaPT-Book', sans-serif;
    color: rgb(100, 9, 4);
}

.card__description-title:before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 0;
    background: rgb(100, 9, 4);
}

.card__description-paragraphs {
    display: none;
    text-align: left;
}

.card__description-paragraphs p {
    margin-bottom: 16px;
    font: 16px/1.2 'FuturaPT-Book', sans-serif;
    color: #666;
}

.card__description-paragraphs p:last-child {
    margin-bottom: 20px;
}

.card__description-paragraphs ul {
    margin-bottom: 20px;
}

.card__description-paragraphs li {
    margin-bottom: 10px;
    font: 16px/1.2 'FuturaPT-Book', sans-serif;
    color: #666;
}

.card__description-paragraphs li:last-child() {
    margin-bottom: 0;
}

.card__description-paragraphs li span {
    display: block;
    font-family: 'FuturaPT-Bold', sans-serif;
    color: #4c4c4c;
}

.card__name {
    display: table;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font: 18px/1.2 'FuturaPT-Medium', sans-serif;
    text-transform: uppercase;
    color: #232323;
}

.card__name-text {
    display: table-cell;
    vertical-align: middle;
}

.card__name-ml {
    color: #949393;
}

.card__img {
    max-width: 200px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.card__img-box {
    height: 170px;
    margin-bottom: 9px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card__price {
    margin: 10px 0;
    padding: 5px 0;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: margin 0.1s, padding 0.1s;
    transition: margin 0.1s, padding 0.1s;
}

.card__price-old {
    position: relative;
    padding: 0 3px;
    color: #949393;
}

.card__price-old:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #949393;
    font: 18px/1 'FuturaPT-Medium', sans-serif;
}

.card__price-current {
    margin-left: 7px;
    color: #ff3039;
    font: 30px/1 'FuturaPT-Demi', sans-serif;
}

.card__form {
    display: none;
    padding: 14px;
    padding-bottom: 30px;
    background: #fff;
}

.card__form .form-group.item-1 {
    margin-bottom: 10px;
}

.card__form button {
    display: none;
}

.card[data-card='open'] .card__base {
    z-index: 500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.card[data-card='open'] .card__price {
    margin: 0px 0px;
    padding: 15px 0px;
}

/* ---------- partials ---------- */

/***** wrapper *****/

/***** header *****/

.header {
    padding-bottom: 420px;
    margin-bottom: -420px;
    padding-top: 20px;
    background: url(../images/header.png) no-repeat 0 -100px;
    background-size: cover;
}

@media (max-width: 500px) {
    .header {
        padding-top: 10px;
    }
}

@media (max-width: 1400px) {
    .header {
        background-size: auto;
    }
}

@media (max-width: 767px) {
    .header {
        background-position: 0 -110px;
    }
}

@media (max-width: 575px) {
    .header {
        background-position: 0 0px;
    }
}

.header .top {
    margin-bottom: 43px;
    text-align: center;
}

.header .heading-1 {
    margin-bottom: 17px;
    padding: 6px 0 8px;
    background: rgba(29, 48, 57, 0.7);
    box-shadow: 0 0 15px #fff;
}

@media (max-width: 500px) {
    .header .heading-1 {
        margin-bottom: 10px;
    }
}

.header .subtitle {
    padding: 0px 0px 2px;
    background: rgba(29, 48, 57, 0.7);
    box-shadow: 0 0 15px #fff;
    font: 30px/1.2 'FuturaPT-Book', sans-serif;
    color: #fff;
}

@media (max-width: 767px) {
    .header .subtitle {
        font-size: 28px;
        line-height: 0.9;
        padding: 3px 0px 2px;
    }
}

@media (max-width: 575px) {
    .header .subtitle {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .header .subtitle {
        font-size: 20px;
    }
}

.header .subtitle div {
    display: inline;
}

@media (max-width: 991px) {
    .header .subtitle div {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .header .subtitle .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 350px) {
    .header .subtitle .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.header .subtitle span {
    font: 48px 'FuturaPT-Demi', sans-serif;
    color: #ffe400;
}

@media (max-width: 575px) {
    .header .subtitle span {
        font-size: 40px;
    }
}

@media (max-width: 400px) {
    .header .subtitle span {
        font-size: 36px;
    }
}

.header .bottom {
    margin-bottom: 21px;
}

.header .bottom .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header .bottom .main {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header .bottom .btn {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 53px;
    padding: 13px 32px 15px;
}

@media (max-width: 1199px) {
    .header .bottom .btn {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .header .bottom .btn {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
        width: 60%;
        margin-left: 20%;
        margin-right: 20%;
    }
}

@media (max-width: 767px) {
    .header .bottom .btn {
        width: 64%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 575px) {
    .header .bottom .btn {
        width: 340px;
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .header .bottom .btn {
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .header .bottom .btn {
        width: 100%;
        font-size: 30px;
    }
}

.header .bottom [class^='perf'] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header .bottom .perf-1 {
    margin-left: 24px;
}

@media (max-width: 1199px) {
    .header .bottom .perf-1 {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .header .bottom .perf-1 {
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .header .bottom .perf-1 {
        max-width: 240px;
        width: 100%;
        margin-right: 0px;
    }
}

@media (max-width: 500px) {
    .header .bottom .perf-1 {
        max-width: 200px;
        margin-right: -26px;
    }
}

.header .bottom .perf-2 {
    margin-top: 10px;
    margin-right: 82px;
}

@media (max-width: 1199px) {
    .header .bottom .perf-2 {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .header .bottom .perf-2 {
        position: relative;
        max-width: 240px;
        width: 100%;
        margin-top: 50px;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
        margin-right: -60px;
    }
}

@media (max-width: 500px) {
    .header .bottom .perf-2 {
        max-width: 200px;
        margin-left: -30px;
        margin-right: -80px;
    }
}

@media (max-width: 991px) {
    .header[data-status='active'] {
        background-position: 0 -220px;
    }
}

/***** roulette-section *****/

.roulette-section {
    overflow: hidden;
    margin-top: -670px;
    padding-top: 250px;
}

.roulette-section .container {
    padding-bottom: 56px;
    position: relative;
}

@media (max-width: 991px) {
    .roulette-section .container {
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .roulette-section .container {
        padding-bottom: 12vw;
    }
}

.roulette-section .container .perfs {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 500px;
    width: 100%;
}

@media (max-width: 991px) {
    .roulette-section .container .perfs {
        top: 250px;
        bottom: auto;
    }
}

@media (max-width: 575px) {
    .roulette-section .container .perfs {
        display: none;
    }
}

.roulette-section .container .perfs [class^='perf'] {
    position: absolute;
}

.roulette-section .container .perfs .perf-1 {
    bottom: -287px;
    left: -373px;
    width: 722px;
}

@media (max-width: 991px) {
    .roulette-section .container .perfs .perf-1 {
        width: 592px;
    }
}

@media (max-width: 767px) {
    .roulette-section .container .perfs .perf-1 {
        width: 432px;
    }
}

.roulette-section .container .perfs .perf-2 {
    position: absolute;
    bottom: 370px;
    left: 342px;
    width: 364px;
}

@media (max-width: 767px) {
    .roulette-section .container .perfs .perf-2 {
        width: 244px;
    }
}

.roulette-section .container .perfs .perf-3 {
    position: absolute;
    bottom: -174px;
    right: -302px;
    width: 486px;
}

@media (max-width: 991px) {
    .roulette-section .container .perfs .perf-3 {
        width: 416px;
    }
}

@media (max-width: 767px) {
    .roulette-section .container .perfs .perf-3 {
        width: 400px;
    }
}

.roulette-section .container .title {
    max-width: 880px;
    text-align: center;
    margin-left: 7px;
    margin-bottom: 31px;
    font: 32px/1.2 'FuturaPT-Medium', sans-serif;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1300px) {
    .roulette-section .container .title {
        width: 100%;
        max-width: 845px;
        text-align: center;
        margin-left: 44px;
        margin-right: auto;
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .roulette-section .container .title {
        max-width: 635px;
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .roulette-section .container .title {
        max-width: 100%;
        padding-left: 38px;
        text-align: center;
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .roulette-section .container .title {
        margin-left: 0;
        margin-right: 0;
        padding-left: 58px;
        padding-right: 20px;
    }
}

@media (max-width: 575px) {
    .roulette-section .container .title {
        font-size: 24px;
        max-width: 440px;
        padding: 0 20px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 400px) {
    .roulette-section .container .title {
        padding: 0 0;
    }
}

.roulette-section .main {
    position: relative;
    z-index: 2;
    margin-right: 252px;
    background: #fff;
}

@media (max-width: 1300px) {
    .roulette-section .main {
        margin-left: 40px;
    }
}

@media (max-width: 991px) {
    .roulette-section .main {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .roulette-section .main {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .roulette-section .main {
        margin-left: 0;
    }
}

.roulette-section .right {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
}

@media (max-width: 991px) {
    .roulette-section .right {
        text-align: center;
        position: relative;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        height: 231px;
        right: auto;
        top: auto;
        background: #fff;
        margin-bottom: 200px;
    }
}

@media (max-width: 575px) {
    .roulette-section .right {
        width: 100%;
        margin-bottom: 46vw;
        height: 47vw;
    }
}

.roulette-section .right .arrow {
    width: 462px;
    position: absolute;
    top: 95px;
    left: -141px;
    -webkit-transform: translate(100%, -100%);
    -ms-transform: translate(100%, -100%);
    transform: translate(100%, -100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 1340px) {
    .roulette-section .right .arrow {
        width: 420px;
        top: 45px;
        left: -141px;
    }
}

@media (max-width: 1199px) {
    .roulette-section .right .arrow {
        width: 375px;
        top: 24px;
        left: -131px;
    }
}

@media (max-width: 991px) {
    .roulette-section .right .arrow {
        left: 50px;
        top: 100px;
        -webkit-transform: translate(100%, -100%) rotate(10deg);
        -ms-transform: translate(100%, -100%) rotate(10deg);
        transform: translate(100%, -100%) rotate(10deg);
    }
}

@media (max-width: 767px) {
    .roulette-section .right .arrow {
        display: none;
    }
}

.roulette-section .right #roulette {
    width: 24.3em;
    height: 24.3em;
    font-size: 20px;
    position: relative;
}

@media (max-width: 1199px) {
    .roulette-section .right #roulette {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .roulette-section .right #roulette {
        font-size: 19px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .roulette-section .right #roulette {
        font-size: 3.7vw;
        position: absolute;
        top: 100%;
        -webkit-transform: translateY(-50.5%) translateX(-50%);
        -ms-transform: translateY(-50.5%) translateX(-50%);
        transform: translateY(-50.5%) translateX(-50%);
        left: 50%;
    }
}

.roulette-section .left {
    padding: 20px 20px 40px 30px;
    background: url(../img/pattern.jpg);
    background-size: contain;
}

@media (max-width: 991px) {
    .roulette-section .left {
        padding-top: 30px;
        padding-bottom: 70px;
        background: #fff;
        padding-left: 40px;
    }
}

@media (max-width: 575px) {
    .roulette-section .left {
        padding-bottom: 50px;
    }
}

@media (max-width: 500px) {
    .roulette-section .left {
        padding-top: 12px;
        padding-left: 15px;
        padding-bottom: 40px;
    }
}

.roulette-section .left .rules {
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .roulette-section .left .rules {
        margin-bottom: 40px;
    }
}

@media (max-width: 500px) {
    .roulette-section .left .rules {
        margin-bottom: 27px;
    }
}

.roulette-section .left .title {
    text-align: left;
    position: relative;
    display: inline-block;
    width: 358px;
    margin-left: -80px;
    margin-bottom: 15px;
    padding: 14px 5px 11px 48px;
    font: 28px/1.2 'FuturaPT-Book', sans-serif;
    text-transform: uppercase;
    background: rgb(150, 27, 20);
    color: #1d2f38;
}

@media (max-width: 991px) {
    .roulette-section .left .title {
        width: 370px;
        margin-left: -90px;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    .roulette-section .left .title {
        width: 330px;
        font-size: 24px;
        margin-left: -65px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .roulette-section .left .title {
        width: 315px;
    }
}

.roulette-section .left .title .svg-1 {
    width: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 14px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.roulette-section .left .title .svg-1 path {
    fill: rgb(150, 27, 20);
}

.roulette-section .left .title .svg-2 {
    width: 11px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.roulette-section .left .title .svg-2 path {
    fill: rgb(150, 27, 20);
}

.roulette-section .left ul {
    max-width: 535px;
    width: 100%;
}

@media (max-width: 1199px) {
    .roulette-section .left ul {
        max-width: 380px;
    }
}

@media (max-width: 991px) {
    .roulette-section .left ul {
        max-width: none;
    }
}

.roulette-section .left li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 24px;
    font: 24px/1.3 'FuturaPT-Book', sans-serif;
    color: #232323;
}

@media (max-width: 1199px) {
    .roulette-section .left li {
        font-size: 21px;
    }
}

@media (max-width: 500px) {
    .roulette-section .left li {
        font-size: 18px;
        padding-left: 20px;
    }
}

.roulette-section .left li:last-child {
    margin-bottom: 0;
}

.roulette-section .left li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #232323;
    border-radius: 50%;
    position: absolute;
    top: 0.5em;
    left: 3px;
}

@media (max-width: 500px) {
    .roulette-section .left li:before {
        width: 5px;
        height: 5px;
    }
}

.roulette-section .left li span {
    font-family: 'FuturaPT-Bold', sans-serif;
    color: #ff4747;
}

.roulette-section[data-status='active'] {
    margin-bottom: -330px;
    padding-bottom: 330px;
}

/* ---------- plugins ---------- */

/***** roulette *****/

.roulette {
    box-shadow: 0 0 20px #fff;
    border-radius: 50%;
    -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3s;
    transition: box-shadow 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
}

.roulette__circle {
    background: rgb(100, 9, 4);
}

.roulette__btn {
    width: 11em;
    height: 11em;
    background: rgb(219, 22, 12);
    -webkit-transition: background-color 0.5s, -webkit-transform 0.7s;
    transition: background-color 0.5s, -webkit-transform 0.7s;
    transition: transform 0.7s, background-color 0.5s;
    transition: transform 0.7s, background-color 0.5s, -webkit-transform 0.7s;
    color: #fff !important;
}

.roulette__btn:before {
    border-width: 0 0.7em 1.9em 0.7em;
    border-color: transparent transparent rgb(219, 22, 12) transparent;
    -webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
}

.roulette__btn > div {
    padding-top: 16px;
    font: 1.5em/1.24 'FuturaPT-Bold', sans-serif;
    color: #fff;
}

.roulette__line {
    background: #fff;
}

.roulette__sale {
    font: 2em/1 'FuturaPT-Light', sans-serif;
    text-transform: uppercase;
    color: #fff;
    -webkit-transform: all 0.3s;
    -ms-transform: all 0.3s;
    transform: all 0.3s;
}

.roulette__sale span {
    font: 1em/1 'FuturaPT-Light', sans-serif;
}

.roulette__sale.active {
    color: #fff600;
    font-family: 'FuturaPT-Bold', sans-serif;
    font-size: 2.3em;
}

.roulette__sale-1 {
    top: 11.6%;
    right: 28.8%;
    -webkit-transform: rotate(25.2deg);
    -ms-transform: rotate(25.2deg);
    transform: rotate(25.2deg);
}

.roulette__sale-2 {
    right: 8.9%;
    top: 32.4%;
}

.roulette__sale-3 {
    right: 9%;
    bottom: 32.2%;
    -webkit-transform: rotate(117deg);
    -ms-transform: rotate(117deg);
    transform: rotate(117deg);
}

.roulette__sale-4 {
    bottom: 13.9%;
    -webkit-transform: rotate(-201deg);
    -ms-transform: rotate(-201deg);
    transform: rotate(-201deg);
    right: 27.2%;
}

.roulette__sale-4.active {
    -webkit-transform: rotate(155deg);
    -ms-transform: rotate(155deg);
    transform: rotate(155deg);
    bottom: 11.9%;
    right: 27.7%;
}

.roulette__sale-5 {
    bottom: 13.2%;
    left: 28.3%;
    -webkit-transform: rotate(201.8deg);
    -ms-transform: rotate(201.8deg);
    transform: rotate(201.8deg);
}

.roulette__sale-6 {
    left: 9.1%;
    bottom: 32.6%;
    -webkit-transform: rotate(-113.2deg);
    -ms-transform: rotate(-113.2deg);
    transform: rotate(-113.2deg);
}

.roulette__sale-6.active {
    left: 7.7%;
    bottom: 32%;
    -webkit-transform: rotate(-112.5deg);
    -ms-transform: rotate(-112.5deg);
    transform: rotate(-112.5deg);
}

.roulette__sale-7 {
    top: 33.5%;
    left: 9.3%;
    -webkit-transform: rotate(-76deg);
    -ms-transform: rotate(-76deg);
    transform: rotate(-76deg);
}

.roulette__sale-8 {
    top: 11.7%;
    left: 27.8%;
    -webkit-transform: rotate(-26.7deg);
    -ms-transform: rotate(-26.7deg);
    transform: rotate(-26.7deg);
}

.roulette.in-process {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
    box-shadow: 0 0 70px rgba(255, 255, 255, 0.9);
}

.roulette.in-process .roulette__btn > div {
    padding-top: 6px;
    font: 1.2em 'FuturaPT-Book', sans-serif;
}

.roulette.in-complete .roulette__btn > div {
    font: 1.2em 'FuturaPT-Book', sans-serif;
}

.roulette.in-complete .roulette__btn > div span {
    font: 1.875em 'FuturaPT-Bold', sans-serif;
}

/* ---------- keyframes ---------- */

label.error {
    display: none !important;
}

input.error {
    border: 2px solid red !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}
