/*#region RESET*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Rubik, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a:focus {
    outline: none !important;
}

ol, ul, menu {
    list-style: none;
}

img {
    max-width: 100%;
}

table {
    border-collapse: collapse;
}

textarea {
    white-space: revert;
}

.btn:focus {
    outline: none;
}

html, body {
    overflow-x: hidden;
}

/*#endregion RESET*/
/*#region HEADER WITH NAV*/
header {
    background: -o-radial-gradient(0% 0%, 66.64% 42.88%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), -o-radial-gradient(100% 99.04%, 159.16% 69.17%, #AFDCFC 0%, #54B0F0 100%);
    background: radial-gradient(66.64% 42.88% at 0% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(159.16% 69.17% at 100% 99.04%, #AFDCFC 0%, #54B0F0 100%);
    width: 100%;
}

.btn {
    cursor: pointer;
    background-color: transparent;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.top-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px;
}

.header__nav--white {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    z-index: 10;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.header__nav--white .nav-links {
    display: none;
    position: initial;
    color: #333333;
}

.header__nav--white.slideIn {
    -webkit-animation: toggleMobileMenuIn 0.3s 1;
    animation: toggleMobileMenuIn 0.3s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.header__nav--white.slideOut {
    -webkit-animation: toggleMobileMenuOut 0.3s 1;
    animation: toggleMobileMenuOut 0.3s 1;
}

.top-menu__logo-link {
    width: 192px;
    height: 25px;
    display: block;
    background-image: url("../images/vector/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.header__nav--white .top-menu__logo-link {
    background-image: url("../images/vector/logo_blue.svg");
}

.top-menu__burger {
    width: 21px;
    height: 25px;
    background-image: url("../images/vector/burger.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 7px;
}

.header__nav--white .top-menu__burger {
    background-image: url("../images/vector/burger_blue.svg");
}

.title {
    margin-right: 38px;
    margin-left: 38px;
    margin-top: 47px;
}

.title__text {
    z-index: 1;
    position: relative;
    font-weight: 500;
    font-size: 28px;
    line-height: 44px;
}

.title__text::after {
    z-index: -1;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: -9px;
    width: 300px;
    height: 43px;
    background-size: 300px 43px;
    background-image: url("../images/vector/yellow-line.svg");
    background-repeat: no-repeat;
}

.title__btn {
    width: 100%;
    height: 46px;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    margin-top: 49px;
    color: #333333;
    margin-bottom: 71px;
}

.title__btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.title__btn:active {
    background-color: rgba(255, 255, 255, 0.8);
}

.nav-links {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-radial-gradient(0% 0%, 66.64% 42.88%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), -o-radial-gradient(100% 99.04%, 159.16% 69.17%, #AFDCFC 0%, #54B0F0 100%);
    background: radial-gradient(66.64% 42.88% at 0% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(159.16% 69.17% at 100% 99.04%, #AFDCFC 0%, #54B0F0 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.nav-links.slideIn {
    -webkit-animation: toggleMobileMenuIn 0.3s 1;
    animation: toggleMobileMenuIn 0.3s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.nav-links.slideOut {
    -webkit-animation: toggleMobileMenuOut 0.3s 1;
    animation: toggleMobileMenuOut 0.3s 1;
}

.nav-links__top-menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px;
}

.nav-links__logo-link {
    display: block;
}

.nav-links__logo {
    display: block;
}

.nav-links__call-btn {
    border: 1px solid rgba(255, 255, 255, 0.57);
    margin: 0 10px 25px;
    width: calc(100% - 20px);
    color: #ffffff;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.nav-links__call-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-links__call-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

.nav-links__links-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-links__links-list > * + * {
    margin-top: 27px;
}

.nav-links__link {
    font-size: 22px;
    line-height: 32px;
    color: #ffffff;
}

.nav-links__cross {
    margin-right: 7px;
}

/*#endregion HEADER WITH NAV*/
/*#region MAIN*/
main {
    background-color: #fafafa;
    color: #333333;
    padding: 0 10px;
}

.h2 {
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #333333;
}

.p-big {
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
}

.about-best {
    padding-top: 90px;
}

.about-best__description {
    margin-top: 19px;
}

.about-best__sofa-img > img {
    width: 100%;
    margin-top: 47px;
}

.about-numbers {
    background: #ffffff;
    -webkit-box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    padding-left: 28px;
    padding-top: 50px;
    padding-bottom: 84px;
}

.about-numbers__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-numbers__title img {
    margin-right: 11px;
}

.about-numbers__auditorium {
    margin-bottom: 73px;
}

.about-numbers__contacts-count {
    font-weight: 500;
    font-size: 48px;
    line-height: 57px;
    color: #484848;
}

.about-numbers__contacts-text {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #6FB93D;
    margin-top: 6px;
}

.about-numbers__auditorium > .about-numbers__title {
    margin-bottom: 19px;
}

.about-numbers__price-segment {
    margin-bottom: 100px;
}

.about-numbers__segments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
}

.about-numbers__segments > * + * {
    margin-top: 12px;
}

.about-numbers__segment {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #484848;
}

.about-numbers__catalog {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 42px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
    margin-right: 26px;
}

.about-nubmers__catalog-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-nubmers__catalog-item--desktop {
    display: none;
}

.about-nubmers__catalog-num {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    margin-top: 24px;
}

.about-nubmers__catalog-text {
    font-size: 16px;
    line-height: 21px;
    text-align: center;
}

.socials {
    position: relative;
    margin-left: -10px;
    margin-right: -10px;
    height: 500px;
    overflow: hidden;
}

.socials__link {
    position: absolute;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials__img-wrapper {
    width: 100%;
}

.socials__icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.socials__ozon {
    width: 230px;
    height: 235px;
    top: 26%;
    left: 4.7%;
    background: rgba(0, 105, 255, 0.65);
    -webkit-box-shadow: 0 5px 10px rgba(0, 110, 212, 0.25), 35px 50px 60px rgba(0, 110, 213, 0.26), inset -2px -2px 4px rgba(0, 0, 0, 0.12), inset 2px 2px 4px rgba(255, 255, 255, 0.57);
    box-shadow: 0 5px 10px rgba(0, 110, 212, 0.25), 35px 50px 60px rgba(0, 110, 213, 0.26), inset -2px -2px 4px rgba(0, 0, 0, 0.12), inset 2px 2px 4px rgba(255, 255, 255, 0.57);
    -webkit-backdrop-filter: blur(19px);
    backdrop-filter: blur(19px);
    z-index: 2;
}

.socials__ozon img {
    width: 57%;
}

.socials__inst {
    position: absolute;
    width: 114px;
    height: 114px;
    left: -5%;
    top: 58%;
    -webkit-box-shadow: inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    box-shadow: inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    -webkit-filter: drop-shadow(1px 14px 15px rgba(92, 92, 92, 0.05));
    filter: drop-shadow(1px 14px 15px rgba(92, 92, 92, 0.05));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 3;
    background: rgba(244, 244, 244, 0.8);
}

.socials__inst img {
    width: 37%;
}

.socials__wb {
    position: absolute;
    width: 180px;
    height: 180px;
    left: 41%;
    top: 56%;
    background: rgba(174, 47, 160, 0.8);
    -webkit-box-shadow: 0 4px 16px rgba(174, 47, 160, 0.3), inset -2px -2px 4px rgba(0, 0, 0, 0.12), inset 2px 2px 4px rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(174, 47, 160, 0.3), inset -2px -2px 4px rgba(0, 0, 0, 0.12), inset 2px 2px 4px rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(19px);
    backdrop-filter: blur(19px);
    z-index: 1;
}

.socials__wb img {
    width: 57%;
}

.socials__ok {
    position: absolute;
    width: 68px;
    height: 68px;
    left: 82%;
    top: 54.5%;
    background: rgba(244, 244, 244, 0.8);
    -webkit-box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.socials__ok img {
    width: 24%;
}

.socials__yt {
    position: absolute;
    width: 118px;
    height: 118px;
    left: 81%;
    top: 26%;
    background: rgba(244, 244, 244, 0.8);
    -webkit-box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.socials__yt img {
    width: 44%;
}

.socials__vk {
    position: absolute;
    width: 59px;
    height: 59px;
    left: 74%;
    top: 24%;
    background: rgba(244, 244, 244, 0.8);
    -webkit-box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.socials__fb {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 80px;
    top: 80px;
    background: rgba(244, 244, 244, 0.8);
    -webkit-box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    box-shadow: 16px 40px 30px rgba(92, 92, 92, 0.09), inset -1px -3px 1px rgba(33, 55, 59, 0.1), inset 2px 3px 1px rgba(255, 255, 255, 0.99);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 4;
}

.socials__fb img {
    width: 26px;
}

.socials__vk img {
    width: 45%;
}

.promotion {
    padding-top: 4px;
}

.promotion__description {
    padding-top: 21px;
}

.promotion__services {
    padding-top: 26px;
}

.promotion__service-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.promotion__service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.promotion__service-item img {
    margin-right: 16px;
}

.promotion__service-item.context-ad span {
    padding-top: 16px;
}

.sales {
    padding-top: 121px;
}

.sales__description {
    padding-top: 18px;
}

.sales__green-text {
    font-weight: 300;
    font-size: 36px;
    line-height: 52px;
    color: #6FB93D;
    padding-top: 19px;
}

.sales__inner-icons {
    display: inline-block;
    width: 37px;
    height: 35px;
    position: relative;
}

.sales__inner-icons::before {
    content: "";
    position: absolute;
    display: inline-block;
    background-position: center;
    width: 45px;
    height: 45px;
    top: 0;
    background-repeat: no-repeat;
}

.sales__inner-icons.mirror::before {
    top: -2px;
    left: -3px;
    background-image: url("../images/vector/mirror.svg");
}

.sales__inner-icons.curbstone::before {
    top: 3px;
    background-image: url("../images/vector/curbstone.svg");
}

.sales__inner-icons.carpet::before {
    left: -2px;
    background-image: url("../images/vector/carpet.svg");
}

.sales__inner-icons.lamp::before {
    left: -2px;
    background-image: url("../images/vector/lamp.svg");
}

.sales__inner-icons.curtains::before {
    top: 1px;
    left: 3px;
    background-image: url("../images/vector/curtains.svg");
}

.values-block {
    margin-top: 120px;
}

.values-block--coupons {
    margin-top: 104px;
}

.values-block--cols {
    margin-top: 132px;
}

.values-block--delivery {
    margin-top: 123px;
}

.values-block--assembly {
    margin-top: 60px;
}

.values-block__image {
    width: 100%;
    height: 100%;
    text-align: center;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.values-block__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
}

.values-block__text {
    font-size: 18px;
    line-height: 28px;
    margin-top: 30px;
}

.values-block__description {
    color: #000000;
}

.values-block--coupons .values-block__title {
    margin-bottom: 15px;
}

.values-block--cols .values-block__title {
    margin-bottom: 17px;
    margin-top: 37px;
}

.values-block--b2b .values-block__title {
    margin-bottom: 15px;
}

.values-block--tablets .values-block__title {
    margin-right: -1px;
}

.values-block--coupons .values-block__text {
    margin-top: 26px;
}

.values-block--tablets .values-block__text {
    margin-top: 35px;
}

.values-block--b2b .values-block__text {
    margin-top: 13px;
}

.values-block--delivery .values-block__text {
    margin-top: 7px;
    padding-left: 7px;
    padding-right: 5px;
}

.values-block--coupons .values-block__image img {
    max-height: 263px;
}

.values-block--tablets .values-block__image img {
    max-height: 282px;
}

.values-block--b2b .values-block__image img {
    max-height: 282px;
}

.values-block--cols .values-block__image {
    margin: 0 -10px 0 -10px;
    width: initial;
}

.values-block--delivery .values-block__image img {
    max-width: 286px;
    margin-top: 35px;
}

.values-block--delivery .values-block__image--assembly img {
    max-width: 288px;
    margin-top: 39px;
}

.values-block--cols > .values-block__description {
    color: #000000;
}

.delivery-text__title, .delivery-text__list {
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    margin-left: 2px;
    margin-top: 22px;
}

.delivery-text__list {
    margin-left: 7px;
    margin-top: 15px;
}

.delivery-text__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 22px;
}

.delivery-text__checkmark img {
    min-width: 22px;
    margin-right: 30.5px;
    margin-top: 5px;
}

.delivery-grid__dotted-arrow {
    display: none;
}

section.rating {
    margin-top: 123px;
}

.rating__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 35px;
    color: #000000;
}

.rating__swipers {
    margin-right: -10px;
    margin-left: -10px;
    overflow: hidden;
    padding-bottom: 120px;
}

.rating__swipers > .swiper {
    overflow: initial;
}

.rating__markets-swiper {
    padding-left: 10px;
    padding-bottom: 30px;
}

.rating__market-slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 267px;
    height: 316px;
    background-color: #fff;
    -webkit-box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
}

.rating__slide-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 22px;
    padding-left: 24px;
}

.rating__slide-header .shop-name {
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    margin-left: 15px;
}

.rating__slide-num {
    font-weight: normal;
    font-size: 96px;
    line-height: 114px;
    color: #484848;
    margin-bottom: 8px;
}

.rating__slide-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 54px;
}

.rating__slide-stars > * + * {
    margin-left: 5px;
}

.rating__slide-stars .star {
    display: block;
    position: relative;
    width: 21px;
    height: 19px;
    background-image: url("../images/vector/star-empty.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.rating__slide-stars .star::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(21px * var(--r, 1));
    background: url("../images/vector/star-filled.svg");
}

.rating__reviews {
    padding-bottom: 120px;
}

.rating__reviews-swiper {
    position: relative;
    width: calc(100% - 20px);
    height: 455px;
    -webkit-box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    background: -o-radial-gradient(5.33% 97.36%, 97.88% 198.39%, #AFDCFC 0%, #54B0F0 100%);
    background: radial-gradient(97.88% 198.39% at 5.33% 97.36%, #AFDCFC 0%, #54B0F0 100%);
}

.rating__reviews-btns {
    position: absolute;
    bottom: 38px;
    right: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    z-index: 1;
}

.rating__reviews-btns > * + * {
    margin-left: 20px;
}

.swiper-nav-btn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: background-color 0.2s ease-out;
    -o-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}

.rating__reviews-next-btn:hover, .rating__reviews-prev-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.rating__reviews-next-btn:active, .rating__reviews-prev-btn:active {
    background-color: rgba(255, 255, 255, 0.8);
}

.swiper-nav-btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../images/vector/blue-right-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.rating__reviews-next-btn.swiper-button-disabled, .rating__reviews-prev-btn.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.2);
}

.rating__reviews-next-btn::after {
    margin-left: 1px;
}

.rating__reviews-prev-btn::after {
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    margin-right: 1px;
}

.rating__reviews-slide.review {
    color: #fff;
    padding: 38px 26px 108px 29px;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
}

.review__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px;
}

.review__author {
    color: #ffffff;
}

.review__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 12px;
}

.review__stars > * + * {
    margin-left: 7px;
}

.review__stars > .star {
    display: block;
    position: relative;
    width: 19px;
    height: 18px;
    background-image: url("../images/vector/feedback-star-empty.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.review__stars > .star::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(19px * var(--r, 1));
    background: url("../images/vector/feedback-star-filled.svg");
}

.review__text {
    margin-top: 18px;
    color: #ffffff;
}

.suppliers__header {
    color: #000000;
    width: 100%;
    text-align: center;
}

.suppliers__header-count {
    font-weight: normal;
    font-size: 96px;
    line-height: 109px;
}

.suppliers__header-text {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
}

.suppliers__swiper {
    margin-left: -10px;
    margin-right: -10px;
    padding: 30px 10px 120px;
}

.suppliers__swiper .supplier {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 265px;
    height: 221px;
    background: #FFFFFF;
    -webkit-box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    box-shadow: 0 40px 60px rgba(60, 82, 102, 0.1);
    padding-top: 45px;
    padding-bottom: 45px;
}

.supplier__logo {
    width: 205px;
    margin-bottom: 20px;
    text-align: center;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.supplier__city {
    font-size: 19px;
    line-height: 23px;
    color: #A8A8A8;
}

.suppliers__nav-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 41px;
}

.suppliers__nav-btns > * + * {
    margin-left: 20px;
}

.suppliers__swiper-next-btn, .suppliers__swiper-prev-btn {
    background: #A8A8A8;
}

.suppliers__swiper-next-btn::after, .suppliers__swiper-prev-btn::after {
    background-image: url("../images/vector/white-right-arrow.svg");
}

.suppliers__swiper-next-btn::after {
    margin-left: 1px;
}

.suppliers__swiper-prev-btn::after {
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    margin-right: 1px;
}

.suppliers__nav-btns > .swiper-nav-btn.swiper-button-disabled {
    background-color: #E0E0E0;
}

.suppliers__nav-btns > .swiper-nav-btn:not(.swiper-button-disabled):hover {
    background-color: #808080;
}

.suppliers__nav-btns > .swiper-nav-btn:not(.swiper-button-disabled):active {
    background-color: #808080;
}

.stories__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #000000;
    margin-bottom: 35px;
}

.stories__swiper {
    margin-left: -10px;
    margin-right: -10px;
}

.story.story-sales-slide {
    padding-left: 39px;
    padding-right: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.story__img {
    position: relative;
    width: 285px;
    height: 285px;
    border-radius: 50%;
    background-repeat: no-repeat;
    -webkit-filter: drop-shadow(0px 40px 60px rgba(60, 82, 102, 0.1));
    filter: drop-shadow(0px 40px 60px rgba(60, 82, 102, 0.1));
}

.story__text {
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 38px;
    position: relative;
    padding-right: 20px;
}

.story__text::before {
    content: "";
    width: 44px;
    height: 0;
    border-top: 3px solid #54B0F0;
    position: absolute;
    top: 11px;
    left: calc(-39px - 22px);
}

.story__author {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    margin-top: 17px;
}

.story__author-job {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 15px;
    line-height: 22px;
    margin-top: 3px;
}

.story__open-full {
    cursor: pointer;
    color: #54b0f0;
}

.story-sales-slide .story__img {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.merdes_logo{
    background-size: 80% 40% !important;
}

.Arlight_logo{
    background-size: 90% 90% !important;
}

.prospect_logo{
    background-size: 80% 20% !important;
}

.lightstar_logo{
    background-size: 70% 70% !important;
}

.luce_logo{
    background-size: 70% 70% !important;
}

.stories__swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 10px;
    margin-top: 52px;
}

.stories__swiper-nav > * + * {
    margin-left: 20px;
}

.stories__swiper-nav > .swiper-nav-btn {
    background-color: #54B0F0;
}

.stories__swiper-nav > .swiper-nav-btn:not(.swiper-button-disabled):hover {
    background-color: #4B9FD8;
}

.stories__swiper-nav > .swiper-nav-btn:not(.swiper-button-disabled):active {
    background-color: #4B9FD8;
}

.stories__swiper-nav > .swiper-nav-btn.swiper-button-disabled {
    background-color: rgba(84, 176, 240, 0.3);
}

.stories__swiper-nav > .swiper-nav-btn::after {
    background-image: url("../images/vector/white-right-arrow.svg");
}

.stories__swiper-next-btn::after {
    margin-left: 1px;
}

.stories__swiper-prev-btn::after {
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

section.how {
    margin-top: 120px;
    margin-left: -10px;
    margin-right: -10px;
    background: -o-radial-gradient(100% 98.82%, 128.6% 94.74%, #89DD70 0%, #66B64E 100%);
    background: radial-gradient(128.6% 94.74% at 100% 98.82%, #89DD70 0%, #66B64E 100%);
    color: #FFFFFF;
    padding: 43px 54px 98px 39px;
}

.how__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 60px;
    color: #ffffff;
}

.how__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.how__block-num {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-weight: 500;
    font-size: 24px;
    color: #6FB93D;
    margin-bottom: 26px;
}

.how__block-head {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 19px;
}

.how__block-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 23px;
}

.how__footer-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 21px;
}

.how__footer-time-ico {
    margin-right: 14px;
}

.how__footer-time-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.8);
}

.how__footer-btn--reqs {
    border: 1px solid rgba(255, 255, 255, 0.57);
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 25px;
}

.how__footer-btn--reqs:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.how__footer-btn--reqs:active {
    background-color: rgba(255, 255, 255, 0.2);
}

.block-application {
    margin-top: 75px;
}

.how__footer-btn--bid {
    padding: 10px 25px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: #484848;
}

.how__footer-btn--bid:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.how__footer-btn--bid:active {
    background-color: rgba(255, 255, 255, 0.8);
}

/*#endregion MAIN*/
/*#region FOOTER*/
.footer {
    padding-top: 53px;
    padding-left: 11%;
    margin-bottom: 34px;
}

.footer__phone {
    display: block;
    padding-left: 8px;
    font-weight: 500;
    font-size: 28px;
    line-height: 33px;
    color: #54B0F0;
    margin-bottom: 16px;
}

.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__row:not(:last-child) {
    margin-bottom: 12px;
}

.footer__row-icon {
    width: 20px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-right: 16px;
}

.footer__row-icon img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}

.footer__row-text {
    color: #000000;
    width: 231px;
}

.footer__row--email .footer__row-icon img {
    margin-top: 10px;
}

.footer__row--address .footer__row-icon img {
    margin-top: 5px;
}

.footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 33px;
    padding-left: 10px;
}

.footer__socials > * + * {
    margin-left: 15px;
}

.footer__social-link {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*#endregion FOOTER*/

/*#region MODAL*/
.blocker[data-modal-target=collab-request] {
    padding: unset;
}

.collab-modal {
    width: 100%;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    max-width: initial;
    border-radius: unset;
}

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

.collab-modal__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
}

.collab-modal > a.close-modal {
    background: url("../images/vector/modal-closer.svg") no-repeat transparent;
    background-size: 28px 28px;
    padding: 0;
    width: 28px;
    height: 28px;
    top: 25px;
    right: 25px;
    border-radius: unset;
}

.collab-modal__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
    width: 100%;
}

.collab-modal__form > * + * {
    margin-top: 20px;
}

.collab-form__submit-btn {
    background: #54B0F0;
    border-radius: 5px;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 25px;
    font-weight: 700;
}

.form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-field label {
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}

.form-field__input--text {
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    -webkit-transition: border 0.3s ease-out;
    -o-transition: border 0.3s ease-out;
    transition: border 0.3s ease-out;
}

.form-field__input--text:focus {
    outline: none;
    border: 1px solid #54B0F0;
}

.form-field__input--text.error {
    border: 1px solid #E4635F;
}

.form-field__error {
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #E4635F;
    height: 15px;
}

.form-field > * + * {
    margin-top: 7px;
}

/*#endregion MODAL*/

.about-best__title, .promotion, .suppliers, .how {
    position: relative;
}

a.anchor {
    position: absolute;
    top: 1px;
    left: 0;
}

.of-hidden {
    overflow: hidden;
}

@media screen and (max-width: 359px) {
    .title {
        margin-left: 30px;
        margin-right: 30px;
    }

    .title__text {
        font-size: 27px;
        line-height: 42px;
    }

    .title__text::after {
        width: 278px;
        background-size: 278px 48px;
        bottom: 2px;
    }

    .title__btn {
        margin-bottom: 40px;
        margin-top: 30px;
    }

    .about-numbers {
        padding-left: 20px;
    }

    .socials__ozon {
        left: 3.7%;
    }

    .socials__yt {
        left: 76%;
        top: 26%;
    }

    .socials__vk {
        left: 74%;
        top: 21%;
    }

    .values-block--tablets .values-block__title {
        margin-right: initial;
    }

    section.how {
        padding: 43px 28px 87px 28px;
    }

    .how__footer-btn--reqs, .how__footer-btn--bid {
        font-size: 19px;
        padding: 10px;
    }

    .story.story-sales-slide {
        padding-left: 30px;
        padding-right: 30px;
    }

    .stories__title {
        margin-bottom: 25px;
    }

    .story__text {
        margin-top: 28px;
    }

    .story__img {
        width: 220px;
        height: 220px;
    }

    .stories__swiper-nav {
        margin-top: 30px;
    }

    .suppliers__swiper {
        padding-bottom: 100px;
    }

    section.how {
        margin-top: 100px;
    }

    .values-block--coupons .values-block__image img, .values-block--tablets .values-block__image img, .values-block--b2b .values-block__image img, .values-block--delivery .values-block__image img, .values-block--delivery .values-block__image--assembly img {
        max-height: 225px;
    }

    .footer__socials, .footer__phone {
        padding-left: 0;
    }
}

@media screen and (min-width: 640px) {
    .title__text {
        font-size: 38px;
        line-height: 54px;
        padding-bottom: 20px;
    }

    .title__btn {
        width: 266px;
        margin-top: 29px;
    }

    .title__text::after {
        width: 435px;
        height: 80px;
        background-size: 401px 68px;
    }

    .about-numbers {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about-numbers__catalog {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .about-numbers__auditorium {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .about-numbers__price-segment {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-left: 70px;
    }

    .about-numbers__catalog {
        -ms-grid-columns: (1fr) [ 4 ];
        grid-template-columns: repeat(4, 1fr)
    }

    .about-best__description > .bold-desktop {
        font-weight: 700;
    }

    .about-best__title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-best__description {
        width: 512px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-best__sofa-img img {
        margin-top: -10px;
    }

    .socials {
        margin-bottom: 25px;
        margin-top: 40px;
    }

    .socials__inst {
        width: 130px;
        height: 130px;
        left: -2%;
        top: 55%;
    }

    .socials__ok {
        width: 93px;
        height: 93px;
        left: 76%;
        top: 47%;
    }

    .socials__ozon {
        width: 339px;
        height: 347px;
        top: 5%;
        left: 4.7%;
    }

    .socials__vk {
        width: 87px;
        height: 87px;
        left: 73%;
        top: 11%;
    }

    .socials__wb {
        width: 265px;
        height: 265px;
        left: 41%;
        top: 44%;
    }

    .socials__yt {
        width: 178px;
        height: 178px;
        left: 81%;
        top: 9%;
    }

    .sales, .promotion, .values {
        padding-left: 20px;
        padding-right: 20px;
    }

    .values-block--coupons, .values-block--tablets, .values-block--b2b {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .values-block__image {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .values-block__text {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .values-block--coupons .values-block__image img {
        max-height: 270px;
    }

    .values-block--tablets .values-block__image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .values-block--tablets .values-block__text {
        padding-left: 20px;
    }

    .values-block--cols {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .values-block--cols > .values-block__title {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 0;
        text-align: center;
    }

    .values-block--cols > .values-block__image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .values-block--cols > .values-block__description {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        text-align: center;
        margin-top: 10px;
    }

    .values-block--b2b > .values-block__image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .delivery-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-rows: auto 25px auto 25px auto;
        grid-template-rows: repeat(3, auto);
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 25px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .delivery-grid > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .delivery-grid > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .delivery-grid > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .delivery-grid > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .delivery-grid > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .delivery-grid > *:nth-child(6) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .delivery-grid__item--1 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .delivery-grid__item--2 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        position: relative;
    }

    .delivery-grid__item--2 > .values-block__image > img {
        margin-top: 0;
    }

    .delivery-grid__item--3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 2;
        grid-row: 2 / span 2;
    }

    .delivery-grid__item--3 .delivery-text__title {
        margin-top: 0;
    }

    .delivery-grid__item--4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .delivery-grid__item--4 > .values-block__image > img {
        margin-top: -35px;
    }

    .delivery-grid__item--5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .values-block--delivery .values-block__text {
        margin-top: 0;
        padding-left: 35px;
        padding-right: 0;
    }

    .rating__title {
        text-align: center;
    }

    .suppliers__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .suppliers__header-text {
        width: 250px;
        text-align: left;
        padding-bottom: 7px;
        margin-left: 13px;
    }

    .stories {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stories__title {
        text-align: left;
    }

    .story.story-sales-slide {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-left: 10px;
        padding-right: 10px;
    }

    .story__img {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 250px;
        height: 250px;
    }

    .story__review {
        margin-left: 75px;
    }

    .story__text {
        margin-top: 0;
        padding-right: 0;
    }

    section.how {
        padding: 40px 50px 80px;
    }

    .how__blocks {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .how__block {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .block-application {
        margin-top: 0;
        margin-left: 80px;
    }

    .block-requirements .how__block-num-container {
        position: relative;
        width: 100%;
        overflow: visible;
    }

    .block-requirements .how__block-num-container::after {
        content: "";
        width: calc(100% - 8px);
        height: 3px;
        position: absolute;
        top: 23px;
        left: 68px;
        background: url("../images/vector/white-line.svg") no-repeat;
    }

    .footer {
        padding-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .footer__phone {
        text-align: center;
        font-size: 38px;
        padding-left: 0;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 45px;
    }

    .footer__socials {
        padding-left: 0;
        margin-top: 0;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 768px) {
    .h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .top-menu {
        padding: 20px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: auto;
    }

    .top-menu__burger {
        display: none;
    }

    .top-menu__logo-link {
        width: 210px;
        height: 28px;
    }

    .header__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

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

    .header__nav--white .nav-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header__nav--white .nav-links .nav-links__link {
        color: #333333;
    }

    .header__nav--white .nav-links__call-btn {
        color: #333333;
        border: 1px solid rgba(72, 72, 72, 0.3);
    }

    .nav-links {
        position: initial;
        background: transparent;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .nav-links__top-menu {
        display: none;
    }

    .nav-links__links-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .nav-links__links-list > * + * {
        margin-left: 15px;
    }

    .nav-links__call-btn {
        width: 166px;
        margin-bottom: 0;
        margin-left: 20px;
        margin-right: 20px;
        font-size: 17px;
        line-height: 35px;
    }

    .nav-links__link {
        margin-top: 0;
        font-size: 15px;
        line-height: 18px;
    }

    .title__btn {
        font-size: 24px;
        width: auto;
        height: auto;
        padding: 12px 30px;
        line-height: 28px;
    }

    .title__text {
        font-size: 50px;
        line-height: 64px;
    }

    .title__text::after {
        width: 682px;
        height: 90px;
        background-size: 539px 80px;
        left: -15px;
    }

    .about-best__title {
        width: 450px;
    }

    .values-block--coupons .values-block__image img {
        max-height: 300px;
    }

    .values-block--tablets .values-block__image img {
        max-height: 350px;
    }

    .values-block--cols .values-block__description {
        width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .socials__inst {
        left: 1%;
    }

    .socials__ok {
        left: 70%;
    }

    .socials__ozon {
        left: 9%;
    }

    .socials__vk {
        left: 71%;
        top: 3%;
    }

    .socials__yt {
        left: 75%;
    }

    .p-big {
        font-size: 19px;
    }

    .about-nubmers__catalog-item--desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .about-numbers__catalog {
        -ms-grid-columns: (1fr) [ 5 ];
        grid-template-columns: repeat(5, 1fr);
    }

    .footer__row--email .footer__row-icon img {
        margin-top: 8px;
    }

    .promotion__service-item.context-ad {
        margin-top: 16px;
    }

    .promotion__service-item.context-ad span {
        padding-top: 0;
    }

    .values-block--delivery .values-block__image--assembly img {
        max-width: 310px;
    }

    .values-block--delivery .values-block__image img {
        max-width: 310px;
    }

    .about-best {
        padding-top: 78px;
    }

    .about-numbers__auditorium {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    }

    .about-numbers__price-segment {
        padding-left: 30px;
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    }

    .about-numbers__contacts-count {
        font-size: 76px;
        line-height: 90px;
    }

    .about-numbers__contacts-text {
        font-size: 29px;
        line-height: 34px;
        margin-top: 0;
    }

    .sales__green-text > br {
        display: none;
    }

    .suppliers__header-text {
        font-size: 40px;
        line-height: 48px;
        padding-bottom: 13px;
    }

    .suppliers__header-count {
        font-size: 122px;
        line-height: 136px;
    }

    .suppliers__swiper {
        padding-top: 20px;
    }

    .collab-modal {
        width: calc(100% - 200px);
        height: auto;
        padding: 80px 60px;
        -webkit-box-shadow: none;
        box-shadow: none;
        max-width: 852px;
        max-height: 561px;
    }

    .collab-form__submit-btn {
        font-size: 24px;
        line-height: 28px;
        padding: 12px 30px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .collab-modal__content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .collab-modal__content > * {
        max-width: 480px;
    }
}

@media screen and (min-width: 860px) {
    .rating__markets-swiper .swiper-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .nav-links__links-list > * + * {
        margin-left: 27px;
    }

    .top-menu {
        padding: 25px;
    }

    .nav-links__call-btn {
        margin-left: 27px;
        margin-right: 25px;
    }

    .title__text {
        font-size: 58px;
        line-height: 74px;
    }

    .title__text::after {
        width: 613px;
        height: 112px;
        background-size: 613px 110px;
        left: -18px;
    }

    .h2 {
        font-size: 44px;
        line-height: 55px;
    }

    .about-best__description {
        margin-top: 30px;
    }

    .p-big {
        font-size: 22px;
        line-height: 32px;
    }

    .sales__green-text {
        font-size: 52px;
        line-height: 71px;
    }

    .sales__inner-icons {
        width: 46px;
        height: 39px;
    }

    .sales__inner-icons::before {
        background-size: 52px;
    }

    .sales__inner-icons.mirror::before {
        top: -2px;
        left: 1px;
    }

    .sales__inner-icons.curbstone::before {
        top: 3px;
        left: 5px;
    }

    .sales__inner-icons.carpet::before {
        left: 2px;
    }

    .sales__inner-icons.lamp::before {
        left: 4px;
    }

    .sales__inner-icons.curtains::before {
        top: 1px;
        left: 6px;
    }

    .values-block__image {
        -ms-flex-preferred-size: 58%;
        flex-basis: 58%;
    }

    .values-block__text {
        -ms-flex-preferred-size: 42%;
        flex-basis: 42%;
    }

    .values-block--coupons .values-block__image img {
        max-height: 385px;
    }

    .values-block--tablets .values-block__image img {
        max-height: 440px;
    }

    .values-block--b2b .values-block__image img {
        max-height: 400px;
        margin-top: -20px;
    }

    .values-block--delivery .values-block__image img {
        max-width: 370px;
    }

    .footer__row-text {
        width: auto;
    }


}

@media screen and (min-width: 1024px) {
    .p-big {
        font-size: 24px;
        line-height: 35px;
    }

    .h2 {
        font-size: 48px;
        line-height: 57px;
    }

    .sales, .promotion, .values {
        padding-left: 0;
        padding-right: 0;
    }

    .delivery-grid {
        margin-left: 0;
        margin-right: 0;
    }

    .suppliers__swiper .supplier {
        height: 276px;
        max-width: 430px;
        padding-top: 39px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .about-numbers__contacts-count {
        font-size: 90px;
        line-height: 106px;
    }

    .about-numbers__contacts-text {
        font-size: 32px;
        line-height: 37px;
    }

    .values-block--tablets .values-block__image img {
        max-height: 558px;
    }

    .values-block--b2b .values-block__image img {
        max-height: 474px;
    }

    .values-block--delivery .values-block__image img {
        max-width: 406px;
    }

    .container {
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }

    .rating__market-slide:last-of-type {
        margin-right: 0 !important;
    }

    .rating__swipers {
        overflow: visible;
    }

    .rating__markets-swiper {
        padding-left: 0;
    }

    .rating__swipers > .rating__reviews-swiper {
        overflow: hidden;
    }

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

    .rating__reviews-swiper {
        width: auto;
    }

    .title {
        margin-top: 83px;
    }

    .title__text {
        font-size: 72px;
        line-height: 85px;
    }

    .top-menu {
        padding: 38px 0;
    }

    .header__nav--white .top-menu {
        padding: 28px 0;
    }

    .top-menu__logo-link {
        width: 219px;
        height: 28px;
    }

    .header__nav:not(.header__nav--white) .nav-links {
        padding-top: 9px;
    }

    .nav-links__call-btn {
        margin-left: 27px;
        margin-right: 0;
        font-size: 18px;
        width: 173px;
        height: 35px;
    }

    .title__text::after {
        width: 766px;
        height: 120px;
        background-size: 765px 117px;
        left: -30px;
    }

    .title__btn {
        margin-top: 40px;
        margin-left: 2px;
        margin-bottom: 141px;
    }

    .about-best__sofa-img img {
        margin-top: -21px;
        width: 859px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .about-numbers {
        padding-left: 64px;
        padding-top: 66px;
    }

    .about-numbers__auditorium > .about-numbers__title {
        margin-bottom: 15px;
    }

    .about-numbers__price-segment {
        padding-left: 74px;
    }

    .about-numbers__catalog {
        margin-top: 16px;
        margin-right: 65px;
    }

    .group-socials-promotion {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-top: 250px;
    }

    .promotion {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -ms-flex-preferred-size: 510px;
        flex-basis: 510px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .socials {
        position: unset;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
    }

    .promotion__service-item.context-ad span {
        white-space: nowrap;
    }

    .promotion__services {
        padding-top: 40px;
    }

    .promotion__description {
        padding-top: 31px;
    }

    .promotion__service-item img {
        margin-right: 21px;
    }

    .socials__ozon {
        left: 536px;
        top: -31px;
    }

    .socials__inst {
        width: 239px;
        height: 239px;
    }

    .socials__fb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 39px;
        left: -205px;
    }

    .socials__vk {
        left: 907px;
        top: 55px;
    }

    .socials__wb {
        left: 732px;
        top: 192px;
    }

    .socials__ok {
        left: 950px;
        top: 208px;
    }

    .socials__inst {
        left: -379px;
        top: 68px;
    }

    .socials__yt {
        left: 1092px;
        top: 74px;
    }

    .sales {
        padding-top: 212px;
    }

    .sales__title {
        margin-right: 140px;
    }

    .sales__description {
        padding-top: 30px;
        margin-right: 200px;
    }

    .sales__green-text {
        position: relative;
        font-size: 72px;
        line-height: 92px;
        padding-top: 60px;
        padding-right: 77px;
    }

    .sales__green-text::before {
        position: absolute;
        content: "";
        background: url(../images/vector/g-dot-arrow.svg) no-repeat;
        background-size: 344px 135px;
        width: 281px;
        height: 145px;
        left: -351px;
        top: -13px;
    }

    .sales__inner-icons {
        width: 74px;
        height: 67px;
    }

    .sales__inner-icons::before {
        width: 87px;
        height: 83px;
        background-size: 72px;
    }

    .sales__inner-icons.mirror::before {
        top: 0;
        left: 1px;
    }

    .sales__inner-icons.curbstone::before {
        top: 0;
        left: 4px;
    }

    .sales__inner-icons.carpet::before {
        left: 0;
    }

    .sales__inner-icons.lamp::before {
        left: 9px;
    }

    .sales__inner-icons.curtains::before {
        top: 0;
        left: 3px;
    }

    .sales__inner-icons.curtains, .sales__inner-icons.curbstone {
        margin-right: 19px;
    }

    .sales__dotted-arrow-cart {
        position: absolute;
        bottom: -90px;
        right: -211px;
        background-image: url("../images/raster/cart-btn.png");
        background-repeat: no-repeat;
        width: 123px;
        height: 140px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .sales__dotted-arrow-cart::before {
        content: "";
        position: absolute;
        background-repeat: no-repeat;
        width: 335px;
        height: 200px;
        bottom: 48px;
        right: 40px;
        display: block;
        background-image: url("../images/vector/dotted-zz.svg");
        z-index: -1;
        -webkit-transform: translateZ(-1px);
        transform: translateZ(-1px);
    }

    .values-block--coupons {
        margin-left: -25px;
        margin-top: 252px;
    }

    .values-block--coupons .values-block__title {
        margin-bottom: 24px;
    }

    .values-block--coupons .values-block__text {
        padding-left: 23px;
    }

    .promotion__service-item:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .values-block--coupons {
        margin-top: 242px;
    }

    .values-block--coupons .values-block__text {
        margin-top: 36px;
    }

    .values-block--coupons .values-block__image img {
        max-width: 539px;
        max-height: 484px
    }

    .values-block.values-block--tablets {
        margin-top: 219px;
    }

    .values-block--tablets .values-block__text {
        padding-left: 3px;
        min-width: 400px;
        margin-top: 52px;
    }

    .values-block--tablets .values-block__text .h2 {
        margin-bottom: 43px;
    }

    .values-block--tablets .values-block__image img {
        width: 90%;
        max-width: 567px;
        max-height: 558px;
        margin-left: 46px;
    }

    .values-block--cols {
        margin-top: 251px;
    }

    .values-block--cols .values-block__text {
        display: none;
    }

    .values-block--cols .values-block__image {
        margin: 0;
    }

    .values-block--cols .values-block__title {
        margin-bottom: 45px;
    }

    .values-block--cols .values-block__description {
        width: 550px;
        margin-top: 65px;
    }

    .values-block--b2b {
        margin-top: 187px;
    }

    .values-block--b2b .values-block__title {
        margin-bottom: 19px;
    }

    .values-block--b2b .values-block__text {
        min-width: 410px;
        margin-top: 32px;
    }

    .values-block--b2b .values-block__image {
        margin-left: 35px;
    }

    .values-block--b2b .values-block__image img {
        max-width: 489.6px;
        max-height: 474.47px;
    }

    .delivery-grid {
        row-gap: 10px;
    }

    .values-block--delivery {
        margin-top: 150px;
    }

    .values-block--delivery .values-block__title {
        margin-bottom: 57px;
    }

    .delivery-grid__item--2 .values-block__image img {
        margin-left: -126px;
    }

    .delivery-grid__item--1 {
        padding-left: 22px;
    }

    .delivery-grid__item--3 {
        margin-top: 64px;
    }

    .delivery-grid__item--3 .delivery-text__title {
        margin-left: 0;
    }

    .delivery-grid__item--3 .delivery-text__list {
        margin-left: 5px;
        margin-top: 25px;
    }

    .delivery-grid__item--4 .values-block__image--assembly img {
        margin-left: 44px;
    }

    .values-block--delivery .values-block__text {
        margin-top: 36px;
        padding-left: 105px;
    }

    section.rating {
        margin-top: 215px;
    }

    .rating__slide-header {
        margin-top: 27px;
    }

    .rating__slide-stars {
        margin-bottom: 48px;
    }

    .rating__reviews-swiper {
        margin-top: 36px;
        height: 588px;
    }

    .rating__reviews-slide.review {
        padding: 74px 170px 140px 83px;
    }

    .review__text {
        line-height: 33px;
        margin-top: 42px;
    }

    .swiper-nav-btn {
        width: 59px;
        height: 59px;
    }

    .swiper-nav-btn::after {
        background-image: url("../images/vector/blue-right-arrow-big.svg");
    }

    .rating__reviews-btns {
        bottom: 66px;
        right: 63px;
    }

    .rating__reviews-btns > * + * {
        margin-left: 30px;
    }

    .review__stars {
        margin-right: 18px;
    }

    .review__stars > .star {
        width: 24px;
        height: 24px;
        background-size: 24px;
    }

    .review__stars > .star::before {
        width: calc(24px * var(--r, 1));
        background-size: 24px;
    }

    .review__stars > * + * {
        margin-left: 8px;
    }

    .review__rating {
        margin-top: 14px;
    }

    .review__rating-num {
        font-size: 24px;
        line-height: 33px;
    }

    .rating__swipers {
        padding-bottom: 172px;
    }

    .suppliers__header-count {
        font-size: 144px;
        line-height: 171px;
    }

    .suppliers__header-text {
        font-weight: 500;
        font-size: 48px;
        line-height: 57px;
        padding-bottom: 5px;
        margin-left: 23px;
    }

    .suppliers__swiper {
        overflow: visible;
        padding: 38px 0 163px;
        margin-left: 0;
        margin-right: 0;
    }

    .suppliers__swiper .swiper-wrapper {
        overflow: visible !important;
    }

    .suppliers__nav-btns > .swiper-nav-btn::after,
    .stories__swiper-nav > .swiper-nav-btn::after {
        background-image: url("../images/vector/white-right-arrow-big.svg");
    }

    .suppliers__swiper-next-btn::after,
    .stories__swiper-next-btn::after,
    .rating__reviews-next-btn::after {
        margin-left: 2px;
    }

    .suppliers__swiper-prev-btn::after,
    .stories__swiper-prev-btn::after,
    .rating__reviews-prev-btn::after {
        margin-left: -2px;
    }

    .supplier__logo {
        width: 372px;
        margin-bottom: 0;
    }

    .supplier__city {
        margin-bottom: 0;
    }

    .suppliers__nav-btns {
        margin-top: 70px;
    }

    .suppliers__nav-btns > * + * {
        margin-left: 30px;
    }

    .story.swiper-slide {
        margin-right: 800px;
    }

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

    .stories__swiper {
        margin-left: 0;
        margin-right: 0;
        overflow: visible;
    }

    .stories__title {
        margin-bottom: 67px;
    }

    .story__img {
        width: 348px;
        height: 348px
    }

    .story__review {
        margin-left: 142px;
        -ms-flex-item-align: start;
        align-self: flex-start;
        padding-top: 21px;
    }

    .story__text {
        line-height: 33px;
    }

    .story.story-sales-slide {
        padding-left: 0;
        padding-right: 0;
    }

    .story__text::before {
        width: 58px;
        top: 15px;
        left: -81px
    }

    .story__author {
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;
        margin-top: 29px;
    }

    .story__author-job {
        font-size: 18px;
        line-height: 28px;
        margin-top: 1px;
    }

    .stories__swiper-nav {
        margin-top: 37px;
        margin-right: 0;
    }

    .stories__swiper-nav > * + * {
        margin-left: 30px;
    }

    section.how {
        margin-top: 159px;
        padding-top: 85px;
        padding-bottom: 118px;
    }

    .how__title {
        margin-bottom: 56px;
    }

    .how__block-head {
        font-weight: 500;
        font-size: 24px;
        line-height: 30px;
    }

    .how__block-text {
        font-size: 24px;
        line-height: 30px;
        padding-right: 90px;
        margin-bottom: 26px;
    }

    .how__footer-time {
        margin-bottom: 26px;
    }

    .how__footer-time-text {
        font-weight: 500;
        font-size: 24px;
        line-height: 28px;
    }

    .how__block-num {
        width: 62px;
        height: 62px;
        line-height: 62px;
        margin-bottom: 36px;
    }

    .block-requirements .how__block-num-container::after {
        top: 28px;
        left: 83px;
    }

    .block-application {
        margin-left: 59px;
    }

    .how__footer-btn--reqs {
        width: auto;
        padding: 12px 30px;
        font-weight: bold;
        font-size: 24px;
        line-height: 28px;
    }

    .how__footer-btn--bid {
        width: auto;
        padding: 12px 30px;
        font-weight: bold;
        font-size: 24px;
        line-height: 28px;
    }

    .footer {
        padding-top: 142px;
        padding-bottom: 142px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer__phone {
        font-weight: 500;
        font-size: 72px;
        line-height: 85px;
        margin-bottom: 115px;
    }

    .footer__socials {
        margin-left: 249px;
    }

    .footer__row-icon {
        -ms-flex-item-align: unset;
        -ms-grid-row-align: unset;
        align-self: unset;
    }

    .footer__row-icon img {
        margin-top: unset !important;
    }

    .collab-modal {
        padding-top: 95px;
        padding-bottom: 95px;
    }
}

@media screen and (min-width: 1200px) {
    .values-block--coupons {
        margin-left: -158px;
    }

    .values-block--tablets .values-block__image img {
        width: unset;
    }
}