* {
    margin: 0;
}
a {
    text-decoration: none;
}
header,
section {
    box-sizing: border-box;
}
div,
span {
    box-sizing: border-box;
}
input,
select,
textarea,
button {
    font: inherit;
    box-sizing: border-box;
    border: 0;
    outline: none;
    padding: 0;
    box-shadow: none;
}
html {
    min-width: 320px;
    height: -webkit-fill-available;
}
body {
    font-size: 15px;
    line-height: 20px;
    color: #232323;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden !important;
    background-image: url(./img/bg.png);
}
.page-button {
    justify-content: center;
    display: flex;
}
.container {
    max-width: 1220px;
    margin: 0 auto;
}
.header-link {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-whatsapp--icon {
    width: 30px;
}
.header-whatsapp--icon img {
    max-width: 100%;
}
.header-link--number {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding-left: 10px;
    font-size: 18px;
}

.section-title {
    padding: 0 15px;
}
.section-title__name {
    position: relative;
    font-size: 30px;
    line-height: 34px;
    padding-bottom: 10px;
    font-weight: 500;
    border-bottom: 1px dashed #D01F2D;
    margin-right: -15px;
}
.section-title__name::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    border-radius: 3px;
    background-color: #D01F2D;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.section-content {
    margin: 30px 0;
}
.slider-content {
    display: flex;
    align-items: stretch;
}
.tns-visually-hidden {
    display: none;
}
.tns-inner {
    overflow: hidden;
}
.text-red {
    color: #D01F2D;
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    padding: 50px 0;
}
.why-reason {
    box-shadow:  0 2px 5px rgba(0, 0, 0, 0.3);
    width: 23%;
    background-color: #fff;
    border-radius: 5px;
    padding: 30px 10px;
    display: flex;
}
.reason-content {
    padding-left: 20px;
}
.reason-text {
    padding-top: 5px;
}
.reason-icon {
    width: 40px;
}
.card-step__image-wrap {
    width: 30%;
    margin-top: auto;
}

/* Header */
.header {
    position: relative;
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
}
.button-menu {
    position: relative;
    width: 40px;
    height: 22px;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    background-color: transparent;
}
.button-stick {
    height: 3px;
    border-radius: 3px;
    display: block;
}
.button-stick--side {
    background-color: #000;
    width: 100%;
    transition: transform .2s ease;
}
.button-stick--main {
    background-color: #D01F2D;
    width: 75%;
    transition: opacity .2s ease;
}
.button-menu--open .button-stick--side:first-child {
    transform: translateY(9px) rotate(45deg);
}
.button-menu--open .button-stick--side:last-child {
    transform: translateY(-9px) rotate(-45deg);
}
.button-menu--open .button-stick--main {
    opacity: 0;
}
.menu {
    display: none;
    position: absolute;
    right: 0;
    top: 80px;
    z-index: 2;
}
.menu--open {
    display: block;
}
.nav {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0 5px 10px 0;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
}
.nav__item {
    list-style-type: none;
}
.nav__item-link {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    text-align: right;
    color: #232323;
    text-decoration: none;
}
.nav__item-link:hover {
    background-color: #F0F0F0;
}
/* END Header */

/* Main */
.main {
    padding: 40px 15px;
    background-image: url('./img/main_bg.png');
    background-position: center;
    background-repeat: no-repeat;
}
.main-container {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
}
.main-block {
    text-align: center;
}
.main-text {
    color: #fff;
}
.main-text__title {
    font-size: 50px;
    line-height: 55px;
    font-weight: 500;
}
.main-text__title span {
    font-size: 28px;
    line-height: 35px;
    display: inline-block;
}
.main-description {
    margin: 15px 0;
    font-size: 16px;
    line-height: 21px;
}
.gif-main {
    width: 260px;
    height: 170px;
    display: block;
    margin: 0 auto;
    background-image: url('../img/gif-main.png');
    background-position: center;
    background-size: contain;
}
.gif-second {
    width: 260px;
    height: 170px;
    display: block;
    background-image: url('../img/gif-second.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.gif-second--form {
    margin-left: -5%;
}
.button-main {
    max-width: 280px;
    background-color: #fff;
    color: #D01F2D;
    box-shadow: 0px 4px 40px rgba(223, 45, 59, 0.5);
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    padding: 23px 62px;
    margin-top: 20px;
    display: inline-block;
}
/* END Main */

/* About */
.about {
    padding: 30px 15px 15px;
}
.about-container {
    align-items: flex-start;
}
.about-block {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.about-block:first-child {
    margin-bottom: 20px;
}
.about-block__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    color: #232323;
    padding-bottom: 10px;
    padding-right: 15px;
    margin-right: -15px;
    border-bottom: 1px dashed #D01F2D;
    position: relative;
}
.about-block__title::after {
    content: '';
    display: block;
    position: absolute;
    background-color: #D01F2D;
    height: 3px;
    width: 140px;
    left: 0;
    bottom: -1px;
}
.about-block__content p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 15px;
}
/* END About */

.slider-content {
    padding: 0 15px;
}
.slider-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.slider-dots {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.slider-dots__item {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #787878;
    margin: 0 3px;
}
.slider-dots__item--active,
.tns-nav-active {
    width: 9px;
    height: 9px;
    background-color: #D01F2D;
}
.slider-button {
    background-color: transparent;
    cursor: pointer;
    border: 10px solid transparent;
}
.slider-button--prev {
    border-right: 10px solid #787878;
    margin-right: 5px;
}
.slider-button--next {
    border-left: 10px solid #787878;
    margin-left: 5px;
}
.button-buy {
    font-weight: 500;
    font-size: 18px;
    line-height: 132%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D01F2D;
    box-shadow: 0px 4px 20px rgba(56, 0, 4, 0.25);
    border-radius: 100px;
    width: 240px;
    height: 60px;
    margin-top: 30px;
    cursor: pointer;
}
.link-more {
    font-weight: 500;
    font-size: 18px;
    line-height: 132%;
    color: #D01F2D;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #D01F2D;
    box-shadow: 0px 4px 20px rgba(56, 0, 4, 0.25);
    border-radius: 100px;
    width: 240px;
    height: 40px;
    margin-top: 30px;
    cursor: pointer;
}

/* Products */
.products {
    padding-top: 40px;
}
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px dashed #777;
    border-radius: 10px;
    padding: 24px 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.product:not(:last-child) {
    margin-right: 40px;
}
.product__poster {
    margin: auto;
}
.product__img {
    max-width: 100%;
    height: auto;
}
.product__title {
    padding: 20px 0;
    margin: 16px 0;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    position: relative;
}
.product__title::after,
.product__title::before {
    content: '';
    position: absolute;
    display: block;
    height: 1px;
    background-color: #DEDEDE;
    transform: translateX(-50%);
    left: 50%;
}
.product__title::before {
    width: 65px;
    top: 0;
}
.product__title::after {
    width: 200px;
    bottom: 0;
}
.product-button {
    display: flex;
    justify-content: center;
}
.product__cost {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product__cost-old {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-decoration: line-through;
}
.product__cost-new {
    font-weight: 500;
    font-size: 25px;
    line-height: 33px;
    color: #D01F2D;
}
/* END Products */

/* Reviews */
.reviews {
    padding: 40px 0 20px;
}
.review {
    position: relative;
    border-radius: 10px;
    border: 1px dashed #D01F2D;
    margin-top: 50px;
    background-color: white;
}
.review:not(:last-child) {
    margin-right: 20px;
}
.review__poster {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed #D01F2D;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: absolute;
    left: calc(50% - 40px);
    top: -35px;
    display: none;
}
.review__poster-img {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 50%;
}
.review__content {
    padding: 30px 15px 20px 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.review__user {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    font-size: 20px;
    line-height: 22px;
}
.review__user-name {
    color: #D01F2D;
}
.review__user-city {
    color: #000;
}
.review__text {
    text-align: center;
    margin: auto;
}
.review__rating {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.review__rating-icon {
    width: 17px;
    height: 17px;
    fill: #D01F2D;
    margin: 0 2px;
}
/* END Reviews */


/* Modal */
.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
}
.modal--open {
    display: flex;
}
.modal-block {
    width: 100%;
    height: 100%;
    max-width: 900px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.modal-block__header {
    padding-top: 15px;
    text-align: center;
    position: relative;
}
.modal-block__title {
    display: none;
    padding-bottom: 15px;
    margin: 0 60px -2px 60px;
    font-weight: 500;
    font-size: 30px;
    line-height: 33px;
    border-bottom: 3px solid #D01F2D;
}
.modal[data-type='buy'].modal[data-step='0'] .modal-block__title--buy {
    display: inline-block;
}
.modal[data-type='buy'].modal[data-step='0'] .modal-block__header {
    border-bottom: 1px dashed #D01F2D;
}
.modal[data-type='buy'].modal[data-step='0'] .modal-block__content--buy {
    display: block;
}
.modal[data-type='buy'].modal[data-step='2'] .modal-block__content--complete {
    display: block;
}
.modal[data-type='buy'].modal[data-step='2'] .modal-block__title--complete {
    height: 33px;
    display: block;
}

.complete {
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}
.complete__title {
    color: #D01F2D;
    font-size: 35px;
    line-height: 45px;
    font-weight: 500;
}
.complete__sub-title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
}
.complete__description{
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin: 15px 0;
}
.modal-close {
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
    right: 25px;
    top: calc(50% - 10px);
    background-color: transparent;
}
.modal-close::before,
.modal-close::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c4c4c4;
}
.modal-close::before {
    transform: rotate(45deg);
}
.modal-close::after {
    transform: translateY(-2px) rotate(-45deg);
}
.modal-block__content {
    max-height: 100%;
    overflow-y: auto;
    padding: 30px 20px;
    display: none;
}
/* END Modal */


/* Form */
.form-row {
    margin-bottom: 15px;
}
.form-row--center {
    text-align: center;
    display: flex;
    justify-content: center;
}
.form-input,
.form-text {
    border: 1px dashed #DEDEDE;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
}
.form-text {
    resize: none;
    min-height: 115px;
}
.form-input:focus,
.form-text:focus {
    border-color: #D01F2D;
}
.form-input::placeholder,
.form-text::placeholder {
    font-size: 16px;
    line-height: 21px;
    color: #989898;
}
.form-select {
    position: relative;
}
.form-select__input {
    cursor: pointer;
    position: relative;
    border: 1px dashed #DEDEDE;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 62px;
}
.form-select__input::after,
.form-select__input::before {
    content: '';
    display: block;
}
.form-select__input::after {
    width: 1px;
    height: 22px;
    background-color: #DEDEDE;
    position: absolute;
    top: 20px;
    right: 46px;
}
.form-select__input::before {
    border: 10px solid transparent;
    border-top: 10px solid #D01F2D;
    position: absolute;
    right: 15px;
    top: 27px;
}
.not-valid .form-select__input,
.not-valid.input-phone {
    border-color: #D01F2D;
}
.not-valid .form-select__placeholder {
    color: #D01F2D;
}
.form-select__placeholder {
    padding: 0 20px;
    color: #989898;
    font-size: 16px;
    line-height: 21px;
}
.form-select__expand {
    display: none;
    background: #FFFFFF;
    border: 1px dashed #DEDEDE;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.09);
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    z-index: 3;
}
.form-select__expand .product-item:hover {
    background-color: #F9f9f9;
}
.form-select__expand--open {
    display: block;
}
.product-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0;
    margin: 0 10px;
    cursor: pointer;
}
.product-item:not(:last-child) {
    border-bottom: 1px dashed #DEDEDE;
}
.product-item__poster {
    width: 70px;
    height: 44px;
    padding-right: 18px;
    margin-right: 15px;
    position: relative;
}
.product-item__poster::after {
    content: '';
    display: block;
    width: 2px;
    height: 70%;
    background-color: #DEDEDE;
    position: absolute;
    right: 0;
    top: 15%;
}
.product-item__img {
    display: inline-block;
    height: 100%;
    width: auto;
    margin: 0 auto;
}
.product-item__title {
    flex: 1;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    padding-right: 40px;
}
/* END Form */

/* Buy now */

.buy-now {
    background-color: #D01F2D;
    position: relative;
}
.buy-now::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background-image: url('../img/buy-now_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.buy-now-container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.buy-now__call {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
    padding: 0 15px;
    color: white;
}
.buy-now__call h2 {
    margin-bottom: 12px;
}
.buy-now__call .big-text {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    display: block;
}
.buy-now__call .text-red {
    color: #D01F2D;
}
.buy-now__side {
    position: relative;
    height: 300px;
    width: 100%;
}
.step-icon {
    max-width: 100%;
}

.delivery {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px dashed #D01F2D;
    border-radius: 10px;
    width: calc(100% - 30px);
    left: 15px;
    top: -150px;
}
.delivery__header {
    padding: 20px 30px 15px 30px;
    text-align: center;
    border-bottom: 1px dashed #D01F2D;
}
.deliver__title {
    display: inline-block;
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
}
.deliver__body {
    padding: 5px 20px 30px 20px;
}
.dilvery__list-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}
.delivery__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.deliver__list-item:not(:last-child) {
    margin-bottom: 11px;
}
.deliver__list-item {
    font-size: 15px;
    line-height: 20px;
    position: relative;
    padding-left: 12px;
}
.deliver__list-item::before {
    content: '';
    display: block;
    border: 5px solid transparent;
    border-left: 5px solid #D01F2D;
    position: absolute;
    left: 0;
    top: 5px;
}
/* END Buy now */

/* FAQ */
.faq {
    padding: 0 15px;
}
.faq-main {
    margin-top: 40px;
}
.faq-main__header {
    border-bottom: 1px dashed #D01F2D;
    margin-right: -15px;
    padding-right: 15px;
}
.faq-main__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 34px;
    padding-bottom: 10px;
    position: relative;
}
.faq-main__title::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    border-radius: 3px;
    background-color: #D01F2D;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.faq-list {
    margin: 20px 0;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-item__question,
.faq-item__answer-content {
    background: #FFFFFF;
    border-radius: 10px;
}
.faq-item__answer-content {
    border: 1px dashed #D01F2D;
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.faq-item__caption {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.faq-item__question {
    border: 1px dashed#787878;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 40px 15px 15px;
    position: relative;
    cursor: pointer;
}
.faq-item__question::after,
.faq-item__question::before {
    content: '';
    display: block;
    position: absolute;
}
.faq-item__question::before {
    width: 1px;
    height: 22px;
    background-color: #787878;
    right: 40px;
    top: calc(50% - 11px);
}
.faq-item__question::after {
    border: 12px solid transparent;
    border-left: 12px solid #787878;
    right: 2px;
    top: calc(50% - 12px);
    transition: transform .2s ease-out;
}
.faq-item__question:hover {
    border: 1px dashed #D01F2D;
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height,opacity .2s ease-out;
}
.faq-item--open .faq-item__question {
    border-color: #D01F2D;
}
.faq-item--open .faq-item__question::after {
    border-left-color: #D01F2D;
    transform: rotate(90deg);
    right: 8px;
    top: calc(50% - 6px);
}
.faq-item--open .faq-item__answer {
    max-height: 1000px;
    opacity: 1;
}
.faq-aside {
    display: none;
}
/* End FAQ */
/* Footer */
.footer-info {
    color: #777;
    padding: 5px;
}
.footer-link {
    text-decoration: none;
    color: #777;
}
.footer-link--number {
    font-weight: bold;
}
.footer-adres {
    padding: 5px 0 0 0;
}
.footer {
    background-color: #232323;
    padding: 20px 15px;
}
.footer-block {
    display: flex;
}
.footer-block p {
    text-align: center;
    color: #777;
    font-size: 13px;
    line-height: 16px;
    margin: 0;
}
.footer-block p:not(:last-child) {
    margin-bottom: 12px;
}
.footer-block--main {
    align-items: center;
    justify-content: space-between;
}
.footer-block--caption {
    flex-direction: column;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #444;
}
.footer__logo-link {
    text-decoration: none;
    color: #000;
    display: block;
}
.footer__logo {
    width: 207px;
    height: 55px;
}
.button-up {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #777;
    background-color: transparent;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.button-up::after {
    content: '';
    display: block;
    border: 10px solid transparent;
    border-bottom: 10px solid #777;
    margin-top: 3px;
}
/* END Footer */

.page {
    max-width: 1000px;
    margin: 20px auto;
    background-color: white;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.page-title {
    margin-bottom: 30px;
}
.page-content p {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4em;
}
.page-image {
    width: 100%;
    display: flex;
    justify-content: center;
}
.page-image img {
    max-width: 100%;
    height: auto;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-list .product {
    width: 30%;
    margin-right: 0;
    margin-bottom: 20px;
}

.buy-now__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 50px;
}
.card-step {
    border-radius: 5px;
    background-color: #fff;
    width: 32%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.card-step__content {
    width: 50%;
}
.card-step__title {
    font-size: 24px;
    color:#D01F2D;
    margin-bottom: 12px;
}
.card-step__text {
    margin-bottom: 0;
    font-size: 16px;
}
.card-step .button-main {
    padding: 12px 24px;
    background-color: #D01F2D;
    color: #fff;
}
.card-step:first-child::before {
    content: '';
    display: block;
    width: 120px;
    height: 70px;
    background-color: #D01F2D;
    position: absolute;
    top: -20px;
    right: -45px;
    transform: rotate(45deg);
}

/* Response */
@media (max-width: 920px) {
    .buy-now__main {
        padding: 0 40px 20px 40px;
    }
    .why-container {
        padding: 50px 15px;
    }
}
@media (max-width: 768px) {
    .why-container {
        padding: 50px 15px 25px 15px;
    }
    .why-reason {
        width: 49%;
        margin-bottom: 15px;
    }
    .card-step {
        width: 100%;
        margin-bottom: 30px;
    }
    .card-step__text {
        display: flex;
        flex-direction: column;
    }
    .card-step .button-main {
        align-self: self-start;
    }  
     .link-more, .button-buy {
        max-width: 100%;
    }
}
@media (max-width: 610px) {
    .footer-block--main {
        flex-direction: column;
    }
    .footer__logo-link, .footer-info {
        margin-bottom: 12px;
    }
    .footer-info {
        text-align: center;
    }
    .product-list .product {
    width: 49%;
}
}
@media (max-width: 560px) {
    .why-container {
        padding: 40px 15px 5px 15px;
    }
    .why-reason {
        width: 100%;
    }
    .logo-link {
        overflow: hidden;
        width: 45px;
    }
    .product-list .product {
    width: 100%;
}
}
@media (min-width: 920px) {
    .current-menu-item .nav__item-link {
        border-color: #D01F2D;
        background-color: transparent;
    }
    .current-menu-item .nav__item-link::before {
        content: '';
        display: block;
        width: 30%;
        height: 2px;
        background-color: #D01F2D;
        position: absolute;
        left: 0;
        bottom: -1px;
    }
    .button-menu {
        display: none;
    }
    .menu {
        display: block;
        position: static;
    }
    .nav {
        background-color: transparent;
        padding: 0;
        flex-direction: row;
    }
    .nav__item-link {
        border-bottom: 1px solid transparent;
        font-size: 16px;
        padding: 5px 0;
        position: relative;
    }
    .nav__item:not(:last-child) {
        margin-right: 30px;
    }
    .nav__item-link:hover {
        border-color: #D01F2D;
        background-color: transparent;
    }
    .nav__item-link:hover::before {
        content: '';
        display: block;
        width: 30%;
        height: 2px;
        background-color: #D01F2D;
        position: absolute;
        left: 0;
        bottom: -1px;
    }

    .main-container {
        padding: 5% 0;
    }
    .main-block {
        max-width: 500px;
        text-align: left;
    }
    .main-text__title {
        line-height: 32px;
    }
    .gif-main {
        position: absolute;
        left: 50%;
        bottom: 2%;
    }

    .about {
        padding-top: 0;
    }
    .about-container {
        max-width: 1220px;
        margin: 0 auto;
        padding-top: 40px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    .about-container::before {
        content: '';
        display: block;
        position: absolute;
        width: 2%;
        height: 100%;
        background-color: #D01F2D;
        top: 0;
        left: 49%;
    }
    .about-block {
        width: 47%;
    }
    .about-block:nth-child(even) {
        margin-top: 13%;
    }
    .about-block:nth-child(3n) {
        margin-top: -4%;
    }
    .about-block__title {
        margin-right: 0;
    }

    .products {
        margin-top: 80px;
    }
    .section-title__name {
        margin-right: 0;
    }

    .buy-now::after{
        height: 100%;
        width: 70%;
    }
    .buy-now-container {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 40px 10px 0 10px;
    }
    .buy-now__call .big-text {
        display: inline-block;
    }
    .buy-now__side {
        height: auto;
        flex: 1;
    }
    .delivery {
        position: static;
        width: 100%;
    }
    .gif-second {
        display: none;
    }

    .faq {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1220px;
        margin: 30px auto 0 auto;
    }
    .faq-aside {
        display: none;
    }
    .faq-main {
        margin-top: 0;
        /* max-width: 600px; */
    }
    .faq-main__header {
        margin-right: 0;
    }

    .modal-block {
        max-width: 800px;
    }
    .modal-block__content {
        padding: 30px 60px;
    }
    .gif-second--form {
        display: block;
    }
    .why-container {
        padding: 50px 15px;
    }
}

@media (min-width: 1200px) {
    .why-container {
        padding: 50px 15px;
    }
    .main {
        background-size: cover;
    }
    .gif-main {
        width: 335px;
        height: 220px;
    }

    .about-block {
        width: 40%;
    }
    .about-container::before {
        width: 12%;
        left: 44%;
    }
    .about-container::after {
        content: '';
        display: block;
        position: absolute;
        width: 22%;
        height: 100%;
        background-image: url('../img/about_img.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;
        left: 38%;
    }

    .buy-now-container {
        display: flex;
        justify-content: stretch;
        max-width: 1220px;
        margin: 0 auto;
    }
    .buy-now__side {
        flex: 1;
    }
    .form {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    .form-row--full {
        width: 100%;
    }
    .form-row--half {
        width: 49%;
    }
    .form-row--full.form-row--center {
        justify-content: flex-start;
    }
    .gif-second {
        display: block;
        width: 49%;
    }
    .gif-second--form {
        position: absolute;
        right: 0;
        bottom: 10%;
    }
}
/* End response */