@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
    url('../fonts/Montserrat-ExtraBold.woff') format('woff'),
    url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold_1.woff2') format('woff2'),
    url('../fonts/Montserrat-ExtraBold_1.woff') format('woff'),
    url('../fonts/Montserrat-ExtraBold_1.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold_1.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold_1.woff') format('woff'),
    url('../fonts/Montserrat-Bold_1.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular_1.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular_1.woff') format('woff'),
    url('../fonts/Montserrat-Regular_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


body {
    margin: 0;

}

h1, h2, h3, h4, p {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 1170px;
    margin: 0 auto;
}

.preview {
    background-image: url("../img/bg1.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.figure1 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.figure2 {
    position: absolute;
    right: 0;
    top: 0;
}


.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.nav__list {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav__list--item + .nav__list--item {
    margin-left: 50px;
}

.nav__list--item a {
    color: #fff;
}

.btn {
    display: block;
   background: linear-gradient(180deg, #F61312 0%, #FD4744 6.71%, #FD4744 32.99%, #F61312 100%);
    box-shadow: 0px 5px 5px rgba(228, 26, 23, 0.47);
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.btn:hover {
    background: linear-gradient(180deg, #FD4744 0%, #F61312 6.71%, #F61312 32.99%, #FD4744 100%);
}

.nav__list .btn {
    padding: 5px 25px;
}

.nav__toggler {
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav__toggler span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

.nav__toggler span:nth-child(2) {
    margin: 7px 0;
}

.preview__content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 75px;
}

.preview__content > div {
    flex: 0 0 50%;
    max-width: 50%;
}

.preview__title {
    font-size: 53px;
    color: #fff;
    font-weight: 800;
}

.preview__subtitle {
    margin-top: 30px;
    font-size: 18px;
    color: #fff;
}

.preview__text--sale {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-top: 35px;
}

.preview__text--sale span {
    color: #F61413;
}

.preview__timer {
    margin-top: 25px;
    color: #fff;
    max-width: 215px;
}

.timer__title {
    font-size: 18px;
    text-align: center;
}

.timer__values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.timer__value {
    font-size: 38px;
    width: 55px;
    text-align: center;
    position: relative;
}

.timer__value::before {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -10px;
    font-size: 12px;
    text-align: center;
}

.timer__value.hours::before {
    content: 'jam';
}

.timer__value.mins::before {
    content: 'menit';
}

.timer__value.sec::before {
    content: 'detik';
}

.timer__dots {
    font-size: 38px;
    margin: 0 10px;
}

.preview__btn {
    margin-top: 35px;
    max-width: 272px;
}

.preview__btn .btn {
    padding: 16px 0;
    font-size: 20px;
}

.preview__btn p {
    margin-top: 15px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.preview__btn p span {
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 150px;
	background: #F61413;
	display: inline-block;
}

.preview__image {
    position: relative;
}

.preview__image img {
    display: block;
    margin-left: auto;
}

.preview__image--sale {
    position: absolute;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #F61413;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    margin-top: -62px;
    left: -35px;
}

.preview__image--saletitle {
    font-size: 18px;
    font-weight: bold;
}

.preview__image--newprice {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0;
}

.preview__image--oldprice {
    font-weight: 300;
    font-size: 18px;
    text-decoration: line-through;
}

.section__title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #19171A;
}

.section__title span {
    color: #F71413;
}

.functions {
    margin-top: 120px;
}

.functions__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.function {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
    text-align: center;
}

.function p {
    margin-top: 15px;
}

.functions__text {
    max-width: 950px;
    margin: 50px auto 0;
    text-align: center;
    font-size: 18px;
    color: #404040;
}

.video {
    padding: 90px 0 45px;
    position: relative;
}

.section__subtitle {
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #19171A;
    margin: 28px auto 0;
    max-width: 860px;
}

.section__subtitle span {
    font-weight: 800;
    color: #F71413;
}

.video__subtitle {
    max-width: 850px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 17px;
    color: #19171A;
}

.video__block {
    width: 950px;
    height: 530px;
    margin: 30px auto 0;
}

.video__block iframe {
    width: 950px;
    height: 530px;
}

.charact {
    padding: 45px 0 90px;
    background-image: url("../img/bg5.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.charact__title span {
    display: block;
}


.charact__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 80px;
}

.charact__item--title {
    text-transform: uppercase;
    color: #19171A;
    margin-bottom: 20px;
    font-family: Arial;
    font-size: 17px;

}

.charact__item--title2 {
    margin-top: 40px;
}

.charact__item {
    flex: 0 0 265px;
    max-width: 265px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.charact__item--info {
    margin-bottom: 5px;
    color: #19171A;
}

.charact__item--img {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	top: -35px;
}

.colors {
    
    padding: 90px 0 35px;
}

.colors__title {
    color: #fff;
}

.colors__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.colors .product {
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

@media screen and (min-width: 1200px) {
    .colors .product{
        flex: 0 0 33%;
    }
}

.colors .product .product__sale {
    position: absolute;
    top: 50px;
    right: 100px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    background: #F61413;
    text-align: center;
    padding-top: 20px;
}

.colors .product .product__sale span {
    font-size: 24px;
}

.product__title {
    color: #19171A;
    margin-top: 25px;
    font-size: 23px;
    font-weight: 800px;
}

.product__title span {
    font-weight: normal;
}

.product__prices {
    display: flex;
    justify-content: center;
    margin-top: 3px;
}

.product__prices .product__price--old {
    color: #19171A;
    text-decoration: line-through;
    font-size: 24px;
    font-weight: 300;
    align-self: flex-end;
    margin-right: 25px;
}

.product__prices .product__price--new {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.product__prices .product__price--new  span {
    color: #F61413;
}
.product__prices .product__price--new  span .price {
    font-size: 36px;
    font-weight: 800;
}

.colors .product .btn {
    max-width: 215px;
    width: 215px;
    padding: 16px 0;
    margin: 20px auto 0;
}

.product__text {
    font-size: 13px;
    line-height: 17px;
    text-align: center;
    color: #19171A;
    margin-top: 15px;
}

.product__text span {
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 150px;
	background: #F61413;
	display: inline-block;
    color: #fff;
}

.gallery {
    padding: 90px 0 45px;
    position: relative;
    overflow: hidden;
}

.gallery__wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery__item {
    margin-top: 30px;
    padding: 15px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.compl {
    padding: 45px 0 80px;
}

.compl__wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.compl__item {
    flex: 0 0 25%;
    max-width: 25%;
    height: 530px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compl__item p {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: auto;
}

.delivery {
    padding: 70px 0 0;
    background: #000000;
}

.delivery__wrapper {
    display: flex;
}

.delivery__title {
    margin-top: 25px;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    padding-left: 150px;
}

.delivery__image {
    margin-left: auto;
}

.delivery__image img {
    display: block;
}

.delivery__list {
    padding-left: 150px;
}

.delivery__list li {
    display: flex;
    margin-top: 25px;
    align-items: center;
    color: #FFFFFF;
}

.delivery__list li img {
    margin-right: 20px;
}

.reviews {
    padding: 90px 0 100px;
}

.review {
	/* display: flex; */
	background: #FFFFFF;
	border: 1px solid #19171A;
	padding: 13px 23px;
	max-width: 310px;
    text-align: center;
}

.reviews__title {
    color: #F61413;
}


.box_review {
	display: flex;
	justify-content: space-evenly;
	margin-top: 45px;
	align-items: stretch;
}

.review__text h3 {
	font-size: 18px;
	color: #19171A;
	margin-bottom: 11px;
	margin-top: 5px;
}

.review__text .line {
    background: #F61413;
    width: 81px;
    height: 3px;
    margin: 0 auto;
}

.review__text p {
    margin-top: 20px;
    color: #19171A;
    font-weight: 300;
    font-size: 16px;
}

.last {
    padding-top: 90px;
}

.nav__toggler {
    display: none;
}

footer {
    padding: 20px;
    text-align: center;
    color: #333;
    font-size: 14px;
}

footer a {
    display: block;
    margin-top: 10px;
}

.overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: none;
}

.modal {
    position: fixed;
    width: 500px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none;
}

.modal h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.modal input {
    width: 100%;
    padding: 17px 25px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #333;
}

.modal input + input {
    margin-top: 15px;
}

.modal button {
    width: 100%;
    border-radius: 5px;
    margin-top: 20px;
    outline: none;
    border: none;
    padding: 25px 0;
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


.sect2 {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.box_phone {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box_phone img {
    margin: 0 7px;
}

.sect3 {
    padding: 85px 0 80px;
    background-image: url("../img/bg3.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.box_sect3 {
	margin-top: 83px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.box_sect3_item {
    max-width: 249px;
    width: 100%;
    height: 76px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(246, 20, 19, 0.3);
    position: relative;
}

.box_sect3_item img {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    top: -35px;
}

.box_sect3_item p {
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #19171A;
    padding-top: 20px;
}

.sect3_subtitle {
    margin-top: 45px;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 50px;
}

.sect3_subtitle span {
    font-weight: bold;
}

.form1 {
    width: 272px;
    margin-top: 16px;
}

.form1 p {
    font-style: normal;
    font-weight: bold;
    font-size: 34px;
    line-height: 43px;
    color: #FFFFFF;
    margin-bottom: 21px;

}

.form1 input {
    width: 100%;
    height: 44px;
    margin-bottom: 13px;
    background: #FFFFFF;
    box-shadow: 0px 5px 5px rgba(228, 26, 23, 0.47);
    border-radius: 4px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    border: 0;
    line-height: 17px;
    color: #19171A;
    padding: 13px 17px;
}

.form1 button {
    width: 100%;
    display: block;
    height: 66px;
    margin-top: 15px;
    border: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    color: #FFFFFF;
}

.flag_left {
    position: absolute;
    left: 0;
    top: 63px;
    z-index: -1;
}

.flag_right {
    position: absolute;
    right: 0;
    top: 63px;
    z-index: -1;
}

.flag_left2 {
     position: absolute;
    left: 0;
    bottom: 120px;
    z-index: -1;
}

.box_flag p {
    font-style: normal;
    font-weight: normal;
    font-size: 19px;
    line-height: 22px;
    color: #FFFFFF;
    margin-left: 12px;
    text-align: left;
}

.block_timer {
    display: flex;
}

.box_flag {
	display: flex;
	align-items: center;
	margin-left: 50px;
	margin-top: 30px;
}

@media screen and (max-width: 1750px) {
.figure1 {
    position: absolute;
    left: -70px;
}
.figure2 {
    position: absolute;
    right: -70px;
}
}

@media screen and (max-width: 1450px) {
.figure1 {
	position: absolute;
	left: 0;
	width: 150px;
}
.figure2 {
    position: absolute;
    right: 0;
    width: 150px;
}

.figure3 {
    position: absolute;
    left: -230px;
}
.figure4 {
    position: absolute;
    right: -230px;
}

.flag_left {
	position: absolute;
	left: 0;
	top: 63px;
	z-index: -1;
	width: 1070px;
}

.flag_right {
    position: absolute;
    right: 0;
    top: 63px;
    z-index: -1;
	width: 1070px;
}

.flag_left2 {
     position: absolute;
    left: 0;
	width: 800px;
    bottom: 80px;
    z-index: -1;
}
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 950px;
    }

    .preview__text--sale {
        font-size: 22px;
    }

    .nav__list--item + .nav__list--item {
        margin-left: 25px;
    }

    .charact__item {
        max-width: 230px;
        flex: 0 0 230px;
    }

    .charact__item--info {
        font-size: 14px;
        margin-top: 6px;
    }

    .gallery__item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 15px;
    }

    .video__block {
        width: 600px;
        height: 335px;
    }
    .video__block iframe {
    width: 600px;
    height: 335px;
}

.preview__text--sale span {
    color: #F61413;
    display: block;
}

.figure1,.figure2,.figure3,.figure4 {
    display: none;
}



.preview__title {
    font-size: 47px;
}
.box_sect3_item {
    max-width: 209px;
}

.charact__item--title {
    font-size: 15px;
}

.charact__item {
    padding: 30px 15px;
}
}

@media screen and (max-width: 993px) {
    .container {
        max-width: 720px;
    }

    .nav__toggler {
        display: flex;
    }

    .nav__list {
        display: none;
        position: fixed;
        top: 80px;
        right: 20px;
        text-align: end;
        padding: 27px;
        background: #00316B;
        z-index: 10;
        border: 1px solid #fff;
    }

    .nav__list--item + .nav__list--item {
        margin-left: 0;
        margin-top: 10px;
    }

    .nav__list .btn {
        width: 100%;
    }

    .preview__title {
        font-size: 38px;
    }

    .preview__subtitle {
        margin-top: 20px;
    }

    .preview__text--sale {
    margin-top: 20px;
    font-size: 18px;
}

    .functions__text {
        font-size: 16px;
    }

    .charact__wrapper {
        justify-content: center;
    }

    .charact__item {
    flex: 0 0 40%;
    max-width: 40%;
    margin: 24px;
}

    .video__block {
        width: 540px;
        height: 300px;
    }
    .video__block iframe {
    width: 540px;
    height: 300px;
}

    .charact__wrapper {
        margin-top: 20px;
    }

    .product__title {
        text-align: center;
        font-size: 24px;
    }

    .product__prices .product__price--new {
        font-size: 24px;
    }

    .product__prices .product__price--old {
        font-size: 20px;
    }

    .colors .product .product__sale {
        right: 0;
    }

    .compl__item {
        flex: 0 0 50%;
        max-width: 50%;
        height: 560px;
        padding: 15px;
        text-align: center;
    }

    .delivery {
        padding: 70px 0 50px;
        position: relative;
    }

    .delivery__image {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .delivery__title {
        padding-left: 0;
        font-size: 20px;
    }

    .delivery__list {
        padding-left: 0;
    }

    .delivery__text {
        max-width: 45%;
        flex: 0 0 45%;
    }

    .delivery__list li {
        font-size: 14px;
    }
    
    .box_sect3 {
    margin-top: 83px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.box_sect3_item {
    max-width: 209px;
    margin-bottom: 60px;
}

.sect3_subtitle {
    margin-top: 0;
    padding: 0;
}

.delivery__image img {
    display: block;
    max-width: 260px;
}

.review {
    margin: 0 10px;
}

.last {
    padding-top: 0;
}

.box_flag {
    display: flex;
    align-items: center;
    margin-left: 25px;
    margin-top: 30px;
    flex-direction: column;
}
.box_flag p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin-left: 0;
}

}

@media screen and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
    }

  

    .preview__content {
        margin-top: 40px;
    }

    .preview__content > div {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .preview__text--sale {
        margin-top: 350px;
    }

    .preview__timer {
        margin: 30px auto 0;
    }

    .preview__btn {
        margin: 35px auto 0;
    }

    .preview__image {
        position: absolute;
        top: 285px;
        transform: translateX(-50%);
        left: 50%;
    }

    .preview__image img {
        width: 280px;
        margin: 0 auto;
    }

    .preview__image--sale {
        width: 90px;
        height: 90px;
        right: 20px;
        left: auto;
    }

    .preview__image--newprice {
        font-size: 18px;
    }

    .preview__image--oldprice {
        font-size: 14px;
    }

    .section__title {
        font-size: 24px;
    }

    .functions {
        margin-top: 75px;
    }

    .function {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .video {
        padding: 40px 0;
    }

    .video__block {
        width: 280px;
        height: 170px;
    }
    .video__block iframe {
    width: 280px;
    height: 170px;
}

    .charact__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .colors .product {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }

    /* .colors .product:nth-child(2) {
        margin-top: 40px;
    } */

    .colors .product .product__sale {
        right: 55px;
    }

    .gallery__item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-top: 0;
    }

    .delivery__image {
        display: none;
    }

    .delivery__text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .review {
        flex-wrap: wrap;
    }

    .review__image {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .review__text {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    .review__text .line {
        margin: 20px auto;
    }

    .review__text p {
        font-size: 14px;
    }
    
    .box_phone img {
    margin: 0 7px;
    max-width: 160px;
}

.sect3 {
    padding: 45px 0 40px;
}

.sect3_subtitle {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}

.box_sect3 {
    margin-top: 57px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.charact {
    padding: 45px 0 40px;
    
    position: relative;
    overflow: hidden;
}

.colors {
    padding: 50px 0 0;
}

.gallery {
    padding: 50px 0 45px;
    position: relative;
    overflow: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.sect2 {
    padding: 40px 0;
    text-align: center;
}

.section__subtitle {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #19171A;
    margin: 28px auto 0;
    max-width: 860px;
}

.video__subtitle {
    max-width: 850px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 14px;
    color: #19171A;
}

.box_review {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    align-items: center;
    flex-direction: column;
}

.reviews {
    padding: 50px 0 40px;
}

.review {
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.last .preview__image {
    position: absolute;
    top: 225px;
    transform: translateX(-50%);
    left: 50%;
}

.form1 {
    width: 272px;
    margin-top: 16px;
    margin: 16px auto 0;
}

.product__title {
    text-align: center;
    font-size: 20px;
}

.product__prices .product__price--new {
    font-size: 17px;
}

.product__prices .product__price--new  span .price {
    font-size: 28px;
    font-weight: 800;
}

.figure2 {
    width: 60px;
    display: block;
}

.figure1 {
    width: 110px;
    display: block;
}

.box_flag {
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-top: 30px;
    flex-direction: row;
}

.box_flag img {
    width: 76px;
}

.box_flag p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin-left: 10px;
    text-align: left;
}

.block_timer {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.modal {
    position: fixed;
    max-width: 500px;
    width: 90%;
}
}

@media screen and (max-width: 539px) {
    .container {
        max-width: 340px;
    }

    .preview__image {
        width: 280px;
    }

    .preview__title {
        font-size: 30px;
    }

    .preview__text--sale {
        margin-top: 325px;
    }

    .gallery__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .compl__item {
        height: 275px;
    }

    .compl__item p {
        font-size: 14px;
    }

    .colors .product .product__sale {
        right: 0;
    }

    .review {
        padding: 30px 10px;
    }

    .review__text h3 {
        font-size: 18px;
    }

    .review__text .line {
        margin: 10px auto 0;
    }

    .delivery__title {
        font-size: 18px;
    }

    footer {
        font-size: 12px;
    }

    .box_phone{
        flex-wrap: wrap;
    }
    
    .box_phone img {
        margin: 7px;
        max-width: 130px;
    }
}


.video-inner {
    position: relative;
}

.video-inner {
    position: relative;
    z-index: 20;
    cursor: pointer;
    max-width: 700px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.video-image img {
    display: block;
    width: 100%;
}

.video-inner:before {
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 35px);

    content: "";

    width: 70px;
    height: 70px;

    background:  url("../img/play-icon.png") center no-repeat;

    transform: scale(0.8);

    transition: 320ms;
    pointer-events: none;
    z-index: 20;
}

.video-inner:hover:before {
    transform: scale(1);
}

.video-inner.inactive:before {
    display: none;
}

.video-inner.inactive iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 200;
}

label.error {
    display: none !important;
}

form input {
    margin-top: 10px;
}