* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    color: #fff;
    line-height: 1;
    font-family: "GolosText";
    font-size: 0.9375rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "GolosText";
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

body {
    background: #252525;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.wrapper {
    min-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;
    overflow: hidden;
    background-color: inherit;
}

.wrapper>main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper>* {
    min-width: 0;
}

[class*=__container] {
    max-width: 73.125rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    position: relative;
    z-index: 1;
    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;
    width: 100%;
    min-height: 3.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 2.5rem;
    background-color: #1a1a1a;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
    opacity: 1;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.btn:hover::before {
    opacity: 0;
}

.btn_small {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 3.125rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    line-height: 1.2222222222;
    text-align: left;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.input {
    border-radius: 0 !important;
    width: 100%;
    display: block;
    padding: 0px 20px;
    border: 1px solid #eee;
}

textarea.input {
    resize: none;
    padding: 0px 0px;
}

.options {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.options__item {
    position: relative;
    cursor: pointer;
}

.options__item:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.options__input:checked+.options__label:after {
    opacity: 1;
}

.options__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
}

.options__label:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 0.0625rem solid #464646;
    border-radius: 0.1875rem;
    background-color: #252525;
}

.options__label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.1875rem;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.options__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.select {
    position: relative;
}

.select__body {
    position: relative;
}

.select__title {
    color: inherit;
    text-align: left;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1.875rem;
    padding: 0 0.9375rem;
    gap: 0.625rem;
}

.select__value>* {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.select__value:after {
    content: "";
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10px;
    flex: 0 0 10px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    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;
}

._select-open .select__value:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: .5;
}

.select__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.select__input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    height: 100%;
}

.select__options {
    color: #000;
    position: absolute;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    padding: 10px 0px 5px 0px;
}

.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}

.select__option {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 5px 15px;
    color: inherit;
}

.select__option._select-selected {
    background-color: #eee;
}

.select__row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select._select-open {
    z-index: 5;
}

._select-tag {
    cursor: pointer;
}

.select_country {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    translate: 0 -50%;
}

.select_country .select__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select_country .select__title {
    border: none;
    border-radius: 0;
}

.select_country .select__title:hover .select__asset {
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, .75);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, .75);
}

.select_country .select__title:hover .select__value::after {
    background-image: url(../img/icons/icon_down_hover.svg);
}

.select_country .select__value {
    gap: 0.3125rem;
    height: auto;
    padding: 0;
}

.select_country .select__value::after {
    -ms-flex-preferred-size: 0.4375rem;
    flex-basis: 0.4375rem;
    background-image: url(../img/icons/icon_down.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.select_country .select__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select_country .select__asset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0.125rem;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, .45);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .45);
    -webkit-transition: -webkit-box-shadow .3s ease 0s;
    transition: -webkit-box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s;
}

.select_country .select__options {
    top: 1.5625rem;
    left: -0.9375rem;
    padding: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}

.select_filter {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.select_filter .select__title {
    border: none;
    border-radius: 1.875rem;
    background-color: #454545;
}

.select_filter .select__title:hover .select__value {
    color: #fff;
}

.select_filter .select__title:hover .select__value::after {
    background-image: url(../img/icons/icon_down_white.svg);
}

.select_filter .select__value {
    height: 1.625rem;
    padding: 0.3125rem 1.25rem;
    font-size: 1rem;
    line-height: 1;
    color: #b7b7b7;
    white-space: nowrap;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.select_filter .select__value::after {
    -ms-flex-preferred-size: 0.4375rem;
    flex-basis: 0.4375rem;
    background-image: url(../img/icons/icon_down.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.select_filter .select__options {
    border: none;
    border-radius: 0.5rem;
    padding-bottom: 0.625rem;
    background-color: #454545;
}

.select_filter .select__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 1.625rem;
    padding: 0.3125rem 1.25rem;
    font-size: 1rem;
    line-height: 1;
    color: #b7b7b7;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.select_filter .select__option:hover {
    background-color: #454545;
    color: #fff;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .8s ease 0s;
    transition: opacity .8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

.popup-show body::after {
    opacity: 1;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.875rem 1.375rem;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: visibility .8s ease 0s;
    transition: visibility .8s ease 0s;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    opacity: 1;
}

.popup__wrapper {
    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;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    width: 100%;
    max-width: 32.5rem;
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #343434;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s ease 0s;
    transition: .3s ease 0s;
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
}

.popup_success .popup__subtitle {
    font-weight: 400;
}

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

.popup__close:not(:last-child) {
    margin-bottom: 0.75rem;
}

.popup__close-btn {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url(../img/icons/icon_close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.popup__close-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/icons/icon_close_hover.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.popup__close-btn:hover::after {
    opacity: 1;
}

.popup__grid {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding-bottom: 1.875rem;
}

.popup__title-wrapper:not(:last-child) {
    margin-bottom: 1.875rem;
}

.popup__title {
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
}

.popup__title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.popup__subtitle {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
    text-align: center;
}

.popup__form-input-wrapper {
    position: relative;
    width: 100%;
}

.popup__form-input-wrapper:not(:last-child) {
    margin-bottom: 1.875rem;
}

.popup__form-input-wrapper_phone .popup__form-input {
    padding-left: 3.78125rem;
}

.popup__form-input {
    width: 100%;
    height: 3.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 2.8125rem;
    background-color: #fff;
    font-size: 1rem;
    line-height: .875;
    color: #2b2a29;
    -webkit-transition: border-color .3s ease 0s;
    transition: border-color .3s ease 0s;
}

.popup__form-input::-webkit-input-placeholder {
    color: #adadad;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.popup__form-input::-moz-placeholder {
    color: #adadad;
    -moz-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.popup__form-input:-ms-input-placeholder {
    color: #adadad;
    -ms-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.popup__form-input::-ms-input-placeholder {
    color: #adadad;
    -ms-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.popup__form-input::placeholder {
    color: #adadad;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.popup__form-input:hover {
    border-color: #68b222;
}

.popup__form-input:hover::-webkit-input-placeholder {
    color: #2b2a29;
}

.popup__form-input:hover::-moz-placeholder {
    color: #2b2a29;
}

.popup__form-input:hover:-ms-input-placeholder {
    color: #2b2a29;
}

.popup__form-input:hover::-ms-input-placeholder {
    color: #2b2a29;
}

.popup__form-input:hover::placeholder {
    color: #2b2a29;
}

.popup__form-total {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
    text-align: center;
}

.popup__form-total:not(:last-child) {
    margin-bottom: 1.25rem;
}

.popup__form-btn:not(:last-child) {
    margin-bottom: 1.25rem;
}

.popup__form-policy {
    font-size: 0.75rem;
    line-height: 1.1666666667;
    letter-spacing: .05em;
    text-align: center;
    color: #b7fd75;
}

.popup__form-policy a {
    text-decoration: underline;
}

.popup__form-policy a:hover {
    text-decoration: none;
}

.popup__icon-wrapper {
    text-align: center;
}

.popup__icon-wrapper:not(:last-child) {
    margin-bottom: 2.5rem;
}

.popup__icon {
    max-width: 6.25rem;
}

.popup__form-options:not(:last-child) {
    margin-bottom: 1.875rem;
}

.popup__form-options-title {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
}

.popup__form-options-title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

[class*=-ibg] {
    position: relative;
}

[class*=-ibg] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

[class*=-ibg_contain] img {
    -o-object-fit: contain;
    object-fit: contain;
}

.h1 {
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
}

.h2 {
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
}

.h3 {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.5625rem;
    line-height: 1.28;
    color: #68b222;
}

.accent-text {
    color: #68b222;
}

[data-tippy-body] {
    display: none;
}

.tippy-box {
    border: 1px solid #464646;
    border-radius: 15px !important;
    backdrop-filter: blur(34px);
    background: rgba(33, 33, 33, .6) !important;
}

.tippy-content {
    padding: 0.875rem 1.8125rem !important;
}

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

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.875rem;
}

.breadcrumbs__back {
    font-weight: 500;
    font-size: 1.5625rem;
    line-height: .64;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.breadcrumbs__back:hover {
    color: #68b222;
}

.breadcrumbs__link {
    font-size: 0.875rem;
    line-height: 1.2142857143;
    letter-spacing: .04em;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.breadcrumbs__link:hover {
    color: #68b222;
}

.breadcrumbs__key {
    font-size: 0.875rem;
    line-height: 1.2142857143;
    letter-spacing: .04em;
    color: #888;
}

.header {
    min-height: 6.875rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    background: #343434;
}

.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    padding-right: 0.0625rem;
}

.header__nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    row-gap: 0.375rem;
}

.header__nav-link {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.header__nav-link:hover {
    color: #9c9c9c;
}

.header__nav-link.active {
    color: #68b222;
}

.header__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    gap: 1.5rem;
}

.header__panel-item {
    position: relative;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.header__panel-item:hover {
    color: #9c9c9c;
}

.header__panel-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.75rem;
    translate: 0 -50%;
    width: 0.0625rem;
    height: 1rem;
    background-color: #8b8b8b;
}

.header__panel-item_phone {
    font-weight: 500;
}

.header__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.9375rem;
}

.header__burger-menu {
    display: none;
}

.header__logo {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.header__logo-img {
    max-width: 100%;
}

.header__catalog-btn {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0.5rem 0.8125rem 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background-color: #1a1a1a;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    overflow: hidden;
}

.header__catalog-btn::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../img/icons/icon_burger_catalog.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header__catalog-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
    opacity: 1;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.header__catalog-btn:hover::after {
    opacity: 0;
}

.header__search {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 32.3125rem;
}

.header__action-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0.25rem;
    overflow: hidden;
}

.header__action-wrapper_price .header__action::before {
    background-image: url(../img/icons/icon_price.svg);
}

.header__action-wrapper_basket .header__action::before {
    background-image: url(../img/icons/icon_basket.svg);
}

.header__action-wrapper_login .header__action::before {
    background-image: url(../img/icons/icon_user.svg);
}

.header__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    height: 2.5rem;
    padding: 0.5rem 0.8125rem 0.5rem 0.75rem;
    background-color: #2b2a29;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.header__action::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header__action:hover {
    background-color: #1a1a1a;
}

.header__action-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #68b222;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.7142857143;
}

.header-search {
    position: relative;
}

.header-search__form {
    position: relative;
}

.header-search__form-input {
    width: 100%;
    height: 2.5rem;
    padding: 0.375rem 4.375rem 0.375rem 0.625rem;
    border: 0.125rem solid #68b222;
    border-radius: 0.25rem;
    background-color: rgba(0, 0, 0, 0);
    font-size: 0.875rem;
    line-height: 1.7142857143;
    color: #fff;
}

.header-search__form-input::-webkit-input-placeholder {
    color: #8b8b8b;
}

.header-search__form-input::-moz-placeholder {
    color: #8b8b8b;
}

.header-search__form-input:-ms-input-placeholder {
    color: #8b8b8b;
}

.header-search__form-input::-ms-input-placeholder {
    color: #8b8b8b;
}

.header-search__form-input::placeholder {
    color: #8b8b8b;
}

.header-search__form-submit {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2.5rem;
    padding: 0.5rem 0.625rem 0.5rem 0.75rem;
    border: 0.125rem solid #68b222;
    border-left: none;
    border-radius: 0 0.25rem 0.25rem 0;
    background-color: #68b222;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.header-search__form-submit:hover {
    background-color: #1a1a1a;
}

.header-search__body {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    display: none;
    width: calc(100% + 423px);
    padding: 3.125rem 1.875rem;
    border-radius: 0 0 1.875rem 1.875rem;
    background-color: #343434;
}

.header-search__list:not(:last-child) {
    margin-bottom: 0.75rem;
}

.header-search__card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.875rem;
    padding: 0.5625rem;
    border: 0.0625rem solid #464646;
    border-radius: 0.625rem;
    background-color: #252525;
}

.header-search__card::after {
    content: "";
    display: block;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url(../img/icons/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header-search__card:not(:last-child) {
    margin-bottom: 0.75rem;
}

.header-search__card:hover::after {
    background-image: url(../img/icons/icon_arrow_hover.svg);
}

.header-search__card-img-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 7.375rem;
    height: 4.875rem;
    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;
    border-radius: 0.625rem;
    background-color: #343434;
}

.header-search__link {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 1rem;
    line-height: 1.625;
}

.header-search__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-search__more {
    min-height: 2.625rem;
}

.menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    translate: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #343434;
    -webkit-transition: translate .3s ease 0s;
    transition: translate .3s ease 0s;
}

.menu-open .menu {
    translate: 0;
}

.menu__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 7.625rem;
    padding: 1rem;
}

.menu__close {
    position: absolute;
    top: 1.1875rem;
    left: 0.9375rem;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url(../img/icons/icon_close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.menu__close::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/icons/icon_close_hover.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.menu__close:hover::after {
    opacity: 1;
}

.menu__head-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.menu__head-row.active .menu__price {
    display: none;
}

.menu__head-row.active .menu__search-icon {
    display: none;
}

.menu__head-row.active .menu__search-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.4375rem;
    width: 100%;
}

.menu__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.5rem;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    background-color: #2b2a29;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.menu__price::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../img/icons/icon_price.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.menu__price:hover {
    background-color: #1a1a1a;
}

.menu__search-icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 0.625rem;
    background-color: #68b222;
    background-image: url(../img/icons/icon_search_dark.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1rem 1rem;
}

.menu__search-wrapper {
    display: none;
}

.menu__search.header-search {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: none;
}

.menu__search-close {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0.875rem;
    height: 0.875rem;
    background-image: url(../img/icons/icon_close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.menu__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.menu__list-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0.625rem 1rem 0.875rem;
    background-color: #252525;
}

.menu__list-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.menu__list-title:not(:last-child) {
    margin-bottom: 0.8125rem;
}

.menu__item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.menu__item:first-child {
    border-top: 0.0625rem solid #464646;
}

.menu__item:not(:last-child) {
    border-bottom: 0.0625rem solid #464646;
}

.menu__item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.menu__item-title::after {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0.625rem;
    height: 0.3125rem;
    background-image: url(../img/icons/icon_angle_down.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: rotate .3s ease 0s;
    transition: rotate .3s ease 0s;
}

.menu__item-title._spoller-active::after {
    rotate: x 180deg;
}

.menu__item-body {
    padding-top: 0.625rem;
    padding-left: 0.625rem;
}

.menu__item-sub:not(:last-child) {
    margin-bottom: 0.625rem;
}

.menu__item-sub-link {
    font-size: 0.875rem;
    line-height: 1.2142857143;
}

.menu__bottom {
    padding: 0.625rem 1rem 1.375rem;
}

.menu__nav:not(:last-child) {
    margin-bottom: 2rem;
}

.menu__nav-item {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.menu__nav-item:not(:last-child) {
    margin-bottom: 0.625rem;
}

.menu__contacts-address {
    font-size: 0.875rem;
    line-height: 1.7142857143;
}

.menu__contacts-address:not(:last-child) {
    margin-bottom: 0.625rem;
}

.menu__contacts-phone {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.footer {
    padding-top: 3.75rem;
    padding-bottom: 3.5rem;
    background-image: url(../img/footer/bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.footer__body {
    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;
    text-align: center;
}

.footer__logo-wrapper:not(:last-child) {
    margin-bottom: 3.75rem;
}

.footer__logo {
    display: inline-block;
}

.footer__logo:not(:last-child) {
    margin-bottom: 1.3125rem;
}

.footer__logo-text {
    font-family: "Unbounded";
    font-size: 1.125rem;
    line-height: .7777777778;
}

.footer__contacts {
    width: 100%;
    max-width: 30.4375rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    backdrop-filter: blur(10px);
    background-color: rgba(138, 138, 138, .15);
}

.footer__contacts:not(:last-child) {
    margin-bottom: 3.75rem;
}

.footer__contacts-group:not(:last-child) {
    margin-bottom: 2rem;
}

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

.footer__socials:not(:last-child) {
    margin-bottom: 1.25rem;
}

.footer__contacts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    row-gap: 0.9375rem;
}

.footer__contacts-item {
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    line-height: .875;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.footer__contacts-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: -0.9375rem;
    width: 0.0625rem;
    height: 1rem;
    background-color: #8b8b8b;
}

.footer__contacts-item:hover {
    color: #9c9c9c;
}

.footer__contacts-address {
    font-size: 1rem;
    line-height: 1.625;
}

.footer__contacts-note {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #a2a2a2;
}

.footer__menu:not(:last-child) {
    margin-bottom: 3.375rem;
}

.footer__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    row-gap: 0.5rem;
}

.footer__menu-link {
    font-size: 1rem;
    line-height: 1.625;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.footer__menu-link:hover {
    color: #9c9c9c;
}

.footer__copyright {
    font-size: 1rem;
    line-height: 1.625;
    color: #a2a2a2;
}

.first-screen {
    position: relative;
    margin-bottom: 3.75rem;
    overflow: hidden;
}

.first-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
}

.first-screen__inner {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 43.125rem;
}

.first-screen__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#000));
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.first-screen__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/first-screen/house.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
}

.first-screen__head {
    position: relative;
    padding-top: 2.125rem;
    padding-bottom: 2rem;
    background: rgba(0, 0, 0, .56);
    backdrop-filter: blur(54px);
}

.first-screen__note {
    font-size: 1.125rem;
    line-height: 1.2222222222;
}

.first-screen__note:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.first-screen__title {
    position: relative;
    z-index: 1;
    max-width: 44.5625rem;
}

.first-screen__body {
    position: relative;
    z-index: 1;
    padding-top: 2.875rem;
    padding-bottom: 2.875rem;
}

.first-screen__house-img {
    position: absolute;
    left: 50%;
    bottom: 7.375rem;
}

.first-screen__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
    row-gap: 4.5rem;
}

.first-screen__form-wrapper {
    width: 26.9375rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1.875rem;
    background-color: #e3e3e3;
    color: #000;
}

.first-screen__form-title-wrapper:not(:last-child) {
    margin-bottom: 1.25rem;
}

.first-screen__form-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.5625rem;
    line-height: 1.24;
    letter-spacing: .05em;
}

.first-screen__form-title:not(:last-child) {
    margin-bottom: 0.625rem;
}

.first-screen__form-subtitle {
    font-size: 1rem;
    line-height: 1.625;
}

.first-screen__form:not(:last-child) {
    margin-bottom: 1.25rem;
}

.first-screen__form-label {
    font-size: 0.875rem;
    line-height: 1.2142857143;
    color: #868686;
}

.first-screen__form-label:not(:last-child) {
    margin-bottom: 0.3125rem;
}

.first-screen__form-input-wrapper {
    position: relative;
}

.first-screen__form-input {
    width: 100%;
    height: 3rem;
    padding: 0.625rem 3rem 0.625rem 3.78125rem;
    border: 0.0625rem solid #bfbfbf;
    border-radius: 1.875rem;
    background-color: #fff;
    font-size: 1rem;
    line-height: .875;
    color: #2b2a29;
    -webkit-transition: border-color .3s ease 0s;
    transition: border-color .3s ease 0s;
}

.first-screen__form-input::-webkit-input-placeholder {
    color: #adadad;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.first-screen__form-input::-moz-placeholder {
    color: #adadad;
    -moz-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.first-screen__form-input:-ms-input-placeholder {
    color: #adadad;
    -ms-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.first-screen__form-input::-ms-input-placeholder {
    color: #adadad;
    -ms-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.first-screen__form-input::placeholder {
    color: #adadad;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.first-screen__form-input:hover {
    border-color: #68b222;
}

.first-screen__form-input:hover::-webkit-input-placeholder {
    color: #2b2a29;
}

.first-screen__form-input:hover::-moz-placeholder {
    color: #2b2a29;
}

.first-screen__form-input:hover:-ms-input-placeholder {
    color: #2b2a29;
}

.first-screen__form-input:hover::-ms-input-placeholder {
    color: #2b2a29;
}

.first-screen__form-input:hover::placeholder {
    color: #2b2a29;
}

.first-screen__form-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
    overflow: hidden;
    -webkit-transition: rotate .3s ease 0s;
    transition: rotate .3s ease 0s;
}

.first-screen__form-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #68b222;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.first-screen__form-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 1.375rem;
    height: 1.375rem;
    background-image: url(../img/icons/icon_arrow_2.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.first-screen__form-btn:hover {
    rotate: 45deg;
}

.first-screen__form-btn:hover::before {
    opacity: 1;
}

.first-screen__form-descr {
    max-width: 17.6875rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    color: #868686;
}

.first-screen__product {
    width: 29.25rem;
    padding-bottom: 0.875rem;
}

.first-screen__product-info {
    position: relative;
    min-height: 7.0625rem;
    padding: 0.875rem 8.4375rem 0.875rem 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #212121;
}

.first-screen__product-info:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.first-screen__product-title {
    font-family: "Unbounded";
    font-size: 1.125rem;
    line-height: 1.2222222222;
}

.first-screen__product-title:not(:last-child) {
    margin-bottom: 0.3125rem;
}

.first-screen__product-note {
    font-size: 0.875rem;
    line-height: 1.2142857143;
    color: #b5b5b5;
}

.first-screen__product-img {
    position: absolute;
    top: -5.5rem;
    right: -3.9375rem;
}

.first-screen__product-link {
    max-width: 26.9375rem;
}

.products-list {
    margin-bottom: 3.75rem;
}

.products-list_categories .products-list__body {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
}

.products-list__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 2.5rem auto;
    grid-template-areas: "products-list__title products-list__btn" "products-list__grid products-list__grid";
    -ms-grid-columns: 1fr 2.5rem 28.125rem;
    grid-template-columns: 1fr 28.125rem;
    grid-gap: 2.5rem;
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #343434;
}

.products-list__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: products-list__title;
}

.products-list__btn {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: products-list__btn;
    -ms-grid-row-align: center;
    align-self: center;
    min-height: 2.625rem;
}

.products-list__grid {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: products-list__grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.875rem;
}

.product-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.9375rem;
    padding: 1.1875rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background: #252525;
}

.product-card_disable .product-card__head-label::before {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgb(231, 71, 71) 0%, rgb(178, 34, 34) 100%);
}

.product-card__head {
    position: relative;
    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;
    width: 100%;
    height: 9.0625rem;
    border-radius: 0.9375rem;
    background-color: #343434;
    overflow: hidden;
}

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

.product-card__head-panel {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    min-height: 2.4375rem;
    padding: 0.625rem;
}

.product-card__head-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

.product-card__head-label::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 100%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgb(149, 231, 71) 0%, rgb(104, 178, 34) 100%);
}

.product-card__head-favorite {
    position: relative;
    width: 1.1875rem;
    height: 1.1875rem;
}

.product-card__head-favorite::before,
.product-card__head-favorite::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.product-card__head-favorite::before {
    opacity: 1;
}

.product-card__head-favorite::after {
    opacity: 0;
}

.product-card__head-favorite:hover::before,
.product-card__head-favorite.favorites-added::before {
    opacity: 0;
}

.product-card__head-favorite:hover::after,
.product-card__head-favorite.favorites-added::after {
    opacity: 1;
}

.product-card__title {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.product-card__options-title {
    font-size: 0.75rem;
    line-height: 1.5;
}

.product-card__options-title:not(:last-child) {
    margin-bottom: 0.3125rem;
}

.product-card__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.625rem;
}

.product-card__options-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.product-card__options-input:checked+.product-card__options-label {
    background-color: #68b222;
}

.product-card__options-label {
    display: block;
    min-height: 2.125rem;
    padding: 0.5rem 1rem 0.5rem 0.9375rem;
    border-radius: 2.1875rem;
    background-color: #343434;
    font-size: 0.75rem;
    line-height: 1.5;
    cursor: pointer;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.product-card__options-label:hover {
    background-color: #1a1a1a;
}

.product-card__quantity {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 6.75rem;
    height: 2rem;
    border-radius: 1.25rem;
    background-color: #343434;
    color: #fff;
    overflow: hidden;
}

.product-card__quantity-btn {
    padding: 0.5rem 0.9375rem;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.1428571429;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

[data-em-quantity-btn]:disabled {
    opacity: 0.35;
    pointer-events: none;
}
 
.product-card__quantity-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#343434), to(#1a1a1a));
    background: linear-gradient(90deg, #343434 0%, #1a1a1a 100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.product-card__quantity-btn:hover {
    color: #68b222;
}

.product-card__quantity-btn:hover::before {
    opacity: 1;
}

.product-card__quantity-btn_minus::before {
    rotate: y 180deg;
}

.product-card__quantity-input-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.product-card__quantity-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.1428571429;
    text-align: center;
    color: #fff;
}

.product-card__price {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.15;
}

.product-card__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.4375rem;
    -moz-column-gap: 0.4375rem;
    column-gap: 0.4375rem;
    row-gap: 0.9375rem;
}

.product-card__actions-btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    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;
    min-height: 2.0625rem;
    padding: 0.5rem 0.9375rem;
    border-radius: 1.25rem;
    background-color: #343434;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    text-align: center;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.product-card__actions-btn:hover {
    background-color: #1a1a1a;
}

.product-card__actions-btn_accent {
    background-color: #68b222;
}

.product-card__actions-btn_accent:hover {
    background-color: #1a1a1a;
}

.category-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.1875rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.8125rem;
    background-color: #343434;
}

.category-card__name-wrapper {
    text-align: center;
}

.category-card__name {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
}

.category-card__name:not(:last-child) {
    margin-bottom: 0.3125rem;
}

.category-card__descr {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #9c9c9c;
}

.category-card__img-wrapper {
    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;
    width: 100%;
    height: 9.0625rem;
}

.category-card__img {
    max-width: 100%;
    height: auto;
}

.category-card__note {
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    color: #9c9c9c;
}

.category-card__note:not(:last-child) {
    margin-bottom: 0.625rem;
}

.category-card__bottom {
    margin-top: auto;
}

.category-card__bottom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
    row-gap: 0.9375rem;
}

.category-card__price {
    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;
    width: 100%;
    max-width: 6.9375rem;
    min-height: 2.0625rem;
    padding: 0.5rem 0.9375rem;
    border-radius: 2.1875rem;
    background-color: #464646;
    font-size: 0.875rem;
    line-height: 1.2142857143;
}

.category-card__link {
    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;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    min-height: 2.0625rem;
    padding: 0.5rem 0.9375rem;
    border-radius: 2.1875rem;
    background-color: #68b222;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    text-align: center;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.category-card__link:hover {
    background-color: #1a1a1a;
}

.advantages {
    margin-bottom: 7.5rem;
}

.advantages__title:not(:last-child) {
    margin-bottom: 2.5rem;
}

.advantages__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 56.6666666667%;
    grid-template-columns: 1fr 56.6666666667%;
    grid-gap: 2.3125rem;
}

.advantages__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 1.875rem;
}

.advantages__list-item {
    padding: 1.1875rem 2.4375rem;
    border: 0.0625rem solid #464646;
    border-radius: 0.9375rem;
    background-color: #343434;
}

.advantages__list-item-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.advantages__list-item-title:not(:last-child) {
    margin-bottom: 0.625rem;
}

.advantages__list-item-descr {
    font-size: 0.875rem;
    line-height: 1.2142857143;
}

.advantages__house {
    position: relative;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}

.advantages__house::before {
    content: "";
    position: absolute;
    left: 3.4375rem;
    bottom: 1.25rem;
    rotate: -17deg;
    width: 36.375rem;
    height: 18.0625rem;
    border-radius: 100%;
    -webkit-filter: blur(74px);
    filter: blur(74px);
    background-color: rgba(0, 0, 0, .4);
}

.advantages__house-img {
    position: relative;
}

.advantages__house-dot {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .45), 0 3px 5px 0 rgba(0, 0, 0, .45);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .45), 0 3px 5px 0 rgba(0, 0, 0, .45);
    background-image: url(../img/advantages/dot.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    cursor: pointer;
}

.advantages__house-dot:hover {
    background-image: url(../img/advantages/dot_hover.svg);
}

.advantages__house-dot_1 {
    top: 21.5%;
    left: 29.8%;
}

.advantages__house-dot_2 {
    top: 24.9%;
    left: 66%;
}

.advantages__house-dot_3 {
    top: 16.1%;
    left: 75.7%;
}

.advantages__house-dot_4 {
    top: 66.3%;
    left: 39.3%;
}

.advantages__house-dot_5 {
    top: 59.4%;
    left: 71.6%;
}

.advantages__house-dot_6 {
    top: 90.5%;
    left: 42.9%;
}

.advantages__house-dot_7 {
    top: 76.3%;
    left: 65.4%;
}

.advantages__house-dot-title-wrapper:not(:last-child) {
    margin-bottom: 0.625rem;
}

.advantages__house-dot-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.advantages__house-dot-title:not(:last-child) {
    margin-bottom: 0.3125rem;
}

.advantages__house-dot-descr {
    font-size: 0.875rem;
    line-height: 1.2142857143;
}

.advantages__house-dot-link {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    text-transform: uppercase;
    text-decoration: underline !important;
    color: #68b222;
    pointer-events: all;
}

.advantages__house-dot-link:hover {
    text-decoration: none !important;
}

.production {
    margin-bottom: 3.75rem;
}

.production__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.875rem;
    grid-row-gap: 2.5rem;
}

.production__grid:not(:last-child) {
    margin-bottom: 0.75rem;
}

.production__title:not(:last-child) {
    margin-bottom: 2.5rem;
}

.production__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: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.production__list-item {
    position: relative;
    z-index: 1;
    padding: 1.25rem 2.5rem;
    border-radius: 0.9375rem;
}

.production__list-item::before,
.production__list-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.9375rem;
}

.production__list-item::before {
    z-index: -1;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    background-color: rgba(33, 33, 33, .6);
}

.production__list-item::after {
    z-index: 1;
    border: 0.0625rem solid #464646;
    pointer-events: none;
}

.production__list-item:not(:last-child) {
    margin-bottom: 1.875rem;
}

.production__list-item-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.production__list-item-title:not(:last-child) {
    margin-bottom: 0.625rem;
}

.production__list-item-text {
    font-size: 0.875rem;
    line-height: 1.2142857143;
}

.production__slide {
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.production__slide-img-wrapper {
    position: relative;
    padding-bottom: 72.9824561404%;
    border-radius: 1.875rem;
    overflow: hidden;
}

.production__slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.production__thumbs-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 1.875rem;
}

.production__thumbs-navigation:not(:last-child) {
    margin-bottom: 0.75rem;
}

.production__thumbs-arrow {
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 1.2;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.production__thumbs-arrow.swiper-arrow_prev {
    rotate: y 180deg;
}

.production__thumbs-arrow:disabled {
    color: #4f4f4f;
    pointer-events: none;
}

.production__thumbs-arrow:hover {
    color: #68b222;
}

.production__thumbs.swiper {
    overflow: visible;
}

.production__thumbs-list.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.875rem;
}

.production__thumbs-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10.625rem;
    flex: 0 1 10.625rem;
    min-width: 6.25rem;
    cursor: pointer;
}

.production__thumbs-slide:hover .production__thumbs-slide-img-wrapper::after {
    opacity: 1;
}

.production__thumbs-slide.swiper-slide-thumb-active .production__thumbs-slide-img-wrapper::before {
    opacity: 1;
}

.production__thumbs-slide.swiper-slide-thumb-active:hover .production__thumbs-slide-img-wrapper::after {
    opacity: 0;
}

.production__thumbs-slide-img-wrapper {
    position: relative;
    padding-bottom: 88.8235294118%;
}

.production__thumbs-slide-img-wrapper::before {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: -0.125rem;
    right: -0.125rem;
    bottom: -0.125rem;
    border-radius: 0.9375rem;
    background-color: #68b222;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.production__thumbs-slide-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.9375rem;
    background-color: rgba(0, 0, 0, .5);
    background-image: url(../img/icons/icon_loop.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 2.3125rem 2.3125rem;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.production__thumbs-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.9375rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.reviews {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    background-image: url(../img/reviews/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.reviews__body {
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #252525;
}

.reviews__title:not(:last-child) {
    margin-bottom: 2.5rem;
}

.reviews__slider:not(:last-child) {
    margin-bottom: 1.875rem;
}

.reviews__slide {
    position: relative;
    padding-bottom: 40.990990991%;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    overflow: hidden;
    cursor: pointer;
}

.reviews__slide::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, .85);
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.reviews__slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(59.23%, rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0.85))
        ),
        -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(19.74%, rgba(0, 0, 0, 0)));
    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0) 59.23%,
        rgba(0, 0, 0, 0.85) 100%
        ),
        linear-gradient(360deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 19.74%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.reviews__slide:hover .reviews__slide-btn-play::before {
    opacity: 1;
}

.reviews__slide.active::before {
    opacity: 0;
}

.reviews__slide.active::after {
    opacity: 1;
}

.reviews__slide.active .reviews__slide-btn-play {
    opacity: 0;
    pointer-events: none;
}

.reviews__slide-info-wrapper {
    position: absolute;
    z-index: 1;
    top: 1.1875rem;
    left: 1.1875rem;
    right: 1.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.reviews__slide-info-avatar {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 3.125rem;
    height: 3.125rem;
    border: 0.0625rem solid #fff;
    border-radius: 50%;
}

.reviews__slide-info-fio {
    font-size: 0.875rem;
    line-height: 1.2142857143;
}

.reviews__slide-info-company {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #cbcbcb;
}

.reviews__slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 99;
}

.reviews__slide-export {
    position: absolute;
    z-index: 1;
}

.reviews__slide-btn-play {
    position: absolute;
    z-index: 1000;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 4.6875rem;
    height: 4.6875rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
    overflow: hidden;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.reviews__slide-btn-play::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #68b222;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.reviews__slide-btn-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 1.5625rem;
    height: 1.5625rem;
    background-image: url(../img/icons/icon_play.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

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

.reviews__thumbs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.75rem;
    min-width: 0;
}

.reviews__thumbs {
    width: 22.5rem;
    min-width: 0;
}

.reviews__thumbs-slide.active > .reviews__thumbs-slide-img-wrapper {
    border-color: #68b222;
}

.reviews__thumbs-slide-img-wrapper {
    position: relative;
    width: 4.625rem;
    height: 4.625rem;
    border: 0.125rem solid #fff;
    border-radius: 50%;
    overflow: hidden;
}

.reviews__thumbs-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}

.reviews__thumbs-arrow {
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 1.2;
}

.callback {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
}

.callback_alt {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    background: rgba(0, 0, 0, 0);
}

.callback_alt .callback__grid:not(:last-child) {
    margin-bottom: 1.875rem;
}

.callback_alt .callback__title-wrapper {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.callback_alt .callback__title {
    color: #fff;
}

.callback_alt .callback__form-btn {
    background-color: #68b222;
}

.callback_alt .callback__form-btn:hover {
    background-color: #1a1a1a;
}

.callback_alt .callback__form-policy {
    line-height: 1.1666666667;
    letter-spacing: .05em;
}

.callback_dark {
    background-color: #1b1b1b;
}

.callback__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    grid-column-gap: 1.875rem;
}

.callback__grid:not(:last-child) {
    margin-bottom: 2.5rem;
}

.callback__title {
    color: #252525;
}

.callback__title:not(:last-child) {
    margin-bottom: 0.625rem;
}

.callback__subtitle {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.callback__contacts {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 3.375rem;
    -moz-column-gap: 3.375rem;
    column-gap: 3.375rem;
    row-gap: 2.5rem;
    width: 100%;
    max-width: 35.625rem;
    padding: 1.8125rem 1.8125rem 1.6875rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #252525;
}

.callback__contacts::before {
    content: "";
    position: absolute;
    top: 1.8125rem;
    right: 1.8125rem;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url(../img/icons/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.callback__contacts-col:first-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 13.3125rem;
    flex: 1 0 13.3125rem;
}

.callback__contacts-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.callback__contacts-title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.callback__contacts-list {
    margin-bottom: 0.125rem;
}

.callback__contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.callback__contacts-item::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.callback__contacts-item:hover {
    color: #9c9c9c;
}

.callback__contacts-item:not(:last-child) {
    margin-bottom: 0.5rem;
}

.callback__contacts-item_phone::before {
    background-image: url(../img/callback/phone.svg);
}

.callback__contacts-item_email::before {
    background-image: url(../img/callback/email.svg);
}

.callback__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
}

.callback__form-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 18.28125rem;
}

.callback__form-input-wrapper_phone .callback__form-input {
    padding-left: 3.78125rem;
}

.callback__form-input {
    width: 100%;
    height: 2.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 1.875rem;
    background-color: #fff;
    font-size: 1rem;
    line-height: .875;
    color: #2b2a29;
    -webkit-transition: border-color .3s ease 0s;
    transition: border-color .3s ease 0s;
}

.callback__form-input::-webkit-input-placeholder {
    color: #adadad;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.callback__form-input::-moz-placeholder {
    color: #adadad;
    -moz-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.callback__form-input:-ms-input-placeholder {
    color: #adadad;
    -ms-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.callback__form-input::-ms-input-placeholder {
    color: #adadad;
    -ms-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.callback__form-input::placeholder {
    color: #adadad;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.callback__form-input:hover {
    border-color: #68b222;
}

.callback__form-input:hover::-webkit-input-placeholder {
    color: #2b2a29;
}

.callback__form-input:hover::-moz-placeholder {
    color: #2b2a29;
}

.callback__form-input:hover:-ms-input-placeholder {
    color: #2b2a29;
}

.callback__form-input:hover::-ms-input-placeholder {
    color: #2b2a29;
}

.callback__form-input:hover::placeholder {
    color: #2b2a29;
}

.callback__form-btn {
    max-width: 13.875rem;
    min-height: 2.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.1875;
    text-transform: none;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.callback__form-btn:hover {
    background-color: #343434;
}

.callback__form-btn::before {
    display: none;
}

.callback__form-policy {
    max-width: 18.9375rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #b7fd75;
}

.callback__form-policy a {
    text-decoration: underline;
}

.callback__form-policy a:hover {
    text-decoration: none;
}

.socials {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
    row-gap: 0.5rem;
}

.socials__item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

/* О нас */
.about {
    margin-top: 2.5rem;
    margin-bottom: 3.75rem;
}

.about__breadcrumbs:not(:last-child) {
    margin-bottom: 1.5625rem;
}

.about__title {
    letter-spacing: normal;
}

.about__title:not(:last-child) {
    margin-bottom: 2.5625rem;
}

.about__subtitle {
    max-width: 50.9375rem;
}

.about__subtitle:not(:last-child) {
    margin-bottom: 1.6875rem;
}

.about__text {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 4.625rem;
    -moz-column-gap: 4.625rem;
    column-gap: 4.625rem;
    max-width: 70.375rem;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.about__text>* {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
}

.principles {
    margin-bottom: 3.75rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    background-color: #202020;
}

.principles__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
}

.principles__media-wrapper {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    max-width: 29.375rem;
    height: 24.5rem;
    border-radius: 1.875rem;
    overflow: hidden;
}

.principles__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

.principles__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 35.625rem;
}

.principles__title:not(:last-child) {
    margin-bottom: 1.75rem;
}

.principles__text {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1.9375rem;
    -moz-column-gap: 1.9375rem;
    column-gap: 1.9375rem;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.principles__text>* {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
}

.principles__text>*:not(:last-child) {
    margin-bottom: 0.875rem;
}

.principles__text:not(:last-child) {
    margin-bottom: 2.5rem;
}

.principles__quote {
    position: relative;
    width: 100%;
    padding: 1.5rem 1.4375rem 1.5625rem;
    border: 0.0625rem solid #68b222;
    border-radius: 20px;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .35);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .35);
    background-color: #343434;
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.4117647059;
}

.principles__quote::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    width: 2.6875rem;
    height: 1.875rem;
    background-image: url(../img/icons/icon_quote.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.map__body {
    width: 100%;
    height: 22.5625rem;
}

.map__balloon {
    position: absolute;
    width: 12.5rem;
    margin-left: 1.25rem;
    margin-top: -3.75rem;
    padding: 0.625rem;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .35);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .35);
    background: #82b900;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
    text-align: center;
}

.ymaps-balloon__tail {
    display: none !important;
}

.team {
    margin-bottom: 4.4375rem;
}

.team__title {
    line-height: 1.3125;
    letter-spacing: normal;
}

.team__title:not(:last-child) {
    margin-bottom: 2.5rem;
}

.team__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.5rem;
}

.team__item {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
    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;
    padding: 1.5rem 1.25rem 1.4375rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #343434;
    text-align: center;
}

.team__item:nth-child(7n+3),
.team__item:nth-child(7n+4),
.team__item:nth-child(7n+5) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    padding-top: 1.25rem;
    padding-bottom: 1.1875rem;
}

.team__item:nth-child(7n+3) .team__item-title:not(:last-child),
.team__item:nth-child(7n+4) .team__item-title:not(:last-child),
.team__item:nth-child(7n+5) .team__item-title:not(:last-child) {
    margin-bottom: 1.6875rem;
}

.team__item:nth-child(7n+3) .team__item-img-wrapper,
.team__item:nth-child(7n+4) .team__item-img-wrapper,
.team__item:nth-child(7n+5) .team__item-img-wrapper {
    max-width: 12.1875rem;
}

.team__item:nth-child(7n+3) .team__item-img-wrapper:not(:last-child),
.team__item:nth-child(7n+4) .team__item-img-wrapper:not(:last-child),
.team__item:nth-child(7n+5) .team__item-img-wrapper:not(:last-child) {
    margin-bottom: 1.9375rem;
}

.team__item-title {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.5625rem;
    line-height: 1.28;
}

.team__item-title:not(:last-child) {
    margin-bottom: 2rem;
}

.team__item-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.875rem;
    overflow: hidden;
}

.team__item-img-wrapper:not(:last-child) {
    margin-bottom: 2.3125rem;
}

.team__item-img {
    width: 100%;
}

.team__text {
    margin-top: auto;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.delpay {
    margin-bottom: 7.5rem;
}

.delpay__title {
    line-height: 1.3125;
    letter-spacing: normal;
}

.delpay__title:not(:last-child) {
    margin-bottom: 2.5rem;
}

.delpay__group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 7.5625rem (1fr)[2];
    grid-template-columns: 1fr 7.5625rem repeat(2, 1fr);
    grid-column-gap: 1.875rem;
}

.delpay__group_delivery .delpay__subtitle-wrapper {
    max-width: 27.875rem;
}

.delpay__group_delivery .delpay__list {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    -ms-grid-columns: 1fr 7.5625rem (1fr)[2];
    grid-template-columns: 1fr 7.5625rem repeat(2, 1fr);
}

.delpay__group_delivery .delpay__item:first-child {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

.delpay__group_payment .delpay__list {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.delpay__group:not(:last-child) {
    margin-bottom: 4.5rem;
}

.delpay__subtitle-wrapper {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
}

.delpay__subtitle-wrapper:not(:last-child) {
    margin-bottom: 1.9375rem;
}

.delpay__subtitle {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.delpay__subtitle:not(:last-child) {
    margin-bottom: 0.8125rem;
}

.delpay__text {
    font-size: 0.9375rem;
    line-height: 1.4;
}

.delpay__list {
    display: -ms-grid;
    display: grid;
    grid-gap: 1.875rem;
}

.delpay__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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.25rem;
    padding: 1.1875rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.75rem;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .35);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .35);
    background: #343434;
}

.delpay__item-icon {
    width: 3.25rem;
    height: 3.25rem;
}

.delpay__item-text {
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.4117647059;
}

/* Контакты */
.contacts__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:1fr 1fr;
    grid-template-columns:1fr 1fr;
    grid-column-gap: 1.875rem;
    margin-bottom: 7.5rem;
    align-items: center;
}

.map-wrapper {
    overflow: hidden;
    height: 436px;
    border-radius: 1.875rem;
}

.contacts__content {
    font-size: 0.9375rem;
    line-height: 1.4;
}

.contacts__content:not(:last-child) {
    margin-bottom: 2.5rem;
}

.contacts__content h2 {
    margin-bottom: 1.5rem;
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.contacts__content a {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.lumber-calc {
    margin-top: 3.75rem;
    margin-bottom: 6.5rem;
}

.lumber-calc__breadcrumbs:not(:last-child) {
    margin-bottom: 1.875rem;
}

.lumber-calc__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40.1709401709% 1fr;
    grid-template-columns: 40.1709401709% 1fr;
    grid-column-gap: 2.4375rem;
}

.lumber-calc__title {
    line-height: 1.3125;
    letter-spacing: normal;
}

.lumber-calc__title:not(:last-child) {
    margin-bottom: 1.875rem;
}

.lumber-calc__img-wrapper {
    width: 100%;
    max-width: 25.5rem;
}

.lumber-calc__img-wrapper:not(:last-child) {
    margin-bottom: 1.25rem;
}

.lumber-calc__img {
    border-radius: 1.875rem;
}

.lumber-calc__text {
    max-width: 26.8125rem;
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.4117647059;
}

.catalog {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.catalog__breadcrumbs:not(:last-child) {
    margin-bottom: 1.9375rem;
}

.catalog__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 16.875rem 1fr;
    grid-template-columns: 16.875rem 1fr;
    grid-column-gap: 1.875rem;
}

.catalog__group:not(:last-child) {
    margin-bottom: 2.5rem;
}

.catalog__title:not(:last-child) {
    margin-bottom: 2rem;
}

.catalog__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.875rem;
}

.catalog__list:not(:last-child) {
    margin-bottom: 1.875rem;
}

.catalog__more-btn {
    max-width: 14.6875rem;
    min-height: 2.125rem;
    margin-left: auto;
    margin-right: auto;
    line-height: .7777777778;
}

.catalog__more-btn::before {
    background: #68b222;
}

.catalog__actions {
    display: none;
}

.catalog__actions:not(:last-child) {
    margin-bottom: 1.25rem;
}

.catalog__actions-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.375rem;
    height: 2.0625rem;
    padding: 0.375rem 1.125rem;
    border-radius: 0.6875rem;
    background-color: #343434;
    font-size: 0.9375rem;
    line-height: 1.4;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.catalog__actions-btn::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.catalog__actions-btn:hover {
    background-color: #1a1a1a;
}

.catalog__actions-btn_catalog::before {
    background-image: url(../img/icons/icon_catalog.svg);
}

.catalog__actions-btn_filters::before {
    background-image: url(../img/icons/icon_filters.svg);
}

.sidebar {
    position: relative;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    width: 100%;
    padding-top: 0.9375rem;
    padding-bottom: 4.0625rem;
    border-radius: 0.9375rem;
    background-color: #343434;
}

.sidebar::before,
.sidebar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.9375rem;
    background-color: #68b222;
}

.sidebar::before {
    top: 0;
    border-radius: 0.9375rem 0.9375rem 0 0;
}

.sidebar::after {
    bottom: 0;
    border-radius: 0 0 0.9375rem 0.9375rem;
}

.sidebar__close-wrapper {
    display: none;
}

.sidebar__close {
    width: 1.125rem;
    height: 1.125rem;
    background-image: url(../img/icons/icon_close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.sidebar__list-wrapper:not(:last-child) {
    border-bottom: 0.0625rem solid #464646;
}

.sidebar__title {
    padding: 1.25rem 1.25rem 0.625rem;
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.2222222222;
    text-transform: uppercase;
}

.sidebar__item-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    min-height: 2.875rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
    color: #b7b7b7;
    -webkit-transition: .3s ease 0s;
    transition: .3s ease 0s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.sidebar__item-title::after {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0.5rem;
    height: 0.5rem;
    background-image: url(../img/icons/icon_down.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: rotate .3s ease 0s;
    transition: rotate .3s ease 0s;
}

.sidebar__item-title:hover {
    background-color: #454545;
    color: #fff;
}

.sidebar__item-title:hover::after {
    background-image: url(../img/icons/icon_down_white.svg);
}

.sidebar__item-title._spoller-active {
    background-color: #454545;
    color: #fff;
}

.sidebar__item-title._spoller-active::after {
    rotate: x 180deg;
    background-image: url(../img/icons/icon_down_white.svg);
}

.sidebar__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.625rem;
    width: 100%;
    min-height: 2.875rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
    color: #b7b7b7;
    -webkit-transition: .3s ease 0s;
    transition: .3s ease 0s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.sidebar__item-link::after {
    content: "→";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.sidebar__item-link:hover {
    background-color: #454545;
    color: #fff;
}

.sidebar__item-link:hover::after {
    opacity: 1;
}

.sidebar__item-link.active {
    color: #68b222;
}

.sidebar__item-link.active::after {
    opacity: 1;
}

.sidebar__item-link_sub {
    padding-left: 2.1875rem;
    background-color: #454545;
}

.sidebar__item-sub {
    width: 100%;
}

.sidebar__filters-list:not(:last-child) {
    margin-bottom: 0.625rem;
}

.sidebar__filters-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    min-height: 2.875rem;
    padding: 0.3125rem 1.25rem;
}

.sidebar__filters-item-label {
    font-size: 1rem;
    line-height: 1;
    color: #b7b7b7;
}

.sidebar__filters-actions {
    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;
    gap: 0.625rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar__filters-actions-btn {
    min-height: 2.25rem;
}

.sidebar__filters-actions-reset {
    font-size: 1rem;
    line-height: 1;
    color: #b7b7b7;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.sidebar__filters-actions-reset:hover {
    color: #fff;
}

.card {
    margin-top: 3.75rem;
}

.card__main:not(:last-child) {
    margin-bottom: 3.75rem;
}

.card__breadcrumbs:not(:last-child) {
    margin-bottom: 1.875rem;
}

.card__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
}

.card__img-wrapper {
    position: relative;
    -ms-flex-item-align: start;
    align-self: flex-start;
    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;
    width: 40.3603603604%;
    height: 18.875rem;
    border-radius: 0.9375rem;
    background-color: #343434;
    overflow: hidden;
}

.card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card__img-panel {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.625rem;
}

.card__img-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3125rem;
    font-size: 1rem;
    line-height: 1.625;
}

.card__img-label::before {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 100%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgb(149, 231, 71) 0%, rgb(104, 178, 34) 100%);
}

.card__img-favorite {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
}

.card__img-favorite::before,
.card__img-favorite::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.card__img-favorite::before {
    opacity: 1;
}

.card__img-favorite::after {
    opacity: 0;
}

.card__img-favorite:hover::before,
.card__img-favorite.favorites-added::before {
    opacity: 0;
}

.card__img-favorite:hover::after,
.card__img-favorite.favorites-added::after {
    opacity: 1;
}

.card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
    width: 56.036036036%;
    position: relative;
}

.card__title {
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.4285714286;
    letter-spacing: normal;
    text-transform: none;
}

.card__options-title {
    font-size: 1rem;
    line-height: .875;
}

.card__options-title:not(:last-child) {
    margin-bottom: 0.625rem;
}

.card__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
}

.card__options-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.card__options-input:checked+.card__options-label {
    background-color: #68b222;
}

.card__options-label {
    display: block;
    min-height: 2.125rem;
    padding: 0.625rem 1.9375rem 0.625rem 1.875rem;
    border-radius: 2.1875rem;
    background-color: #343434;
    font-size: 1rem;
    line-height: .875;
    cursor: pointer;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.card__options-label:hover {
    background-color: #1a1a1a;
}

.card__quantity {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 7.875rem;
    height: 2.25rem;
    /* padding-left: 0.9375rem;
    padding-right: 0.9375rem; */
    border-radius: 1.25rem;
    background-color: #343434;
    color: #fff;
    overflow: hidden;
}

.card__quantity-btn {
    padding: 0.5rem 0.9375rem;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.card__quantity-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#343434), to(#1a1a1a));
    background: linear-gradient(90deg, #343434 0%, #1a1a1a 100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.card__quantity-btn:hover {
    color: #68b222;
}

.card__quantity-btn:hover::before {
    opacity: 1;
}

.card__quantity-btn_minus::before {
    rotate: y 180deg;
}

.card__quantity-input-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.card__quantity-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.card__price {
    font-weight: 600;
    font-size: 1.625rem;
    line-height: .8846153846;
}

.card__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    row-gap: 0.9375rem;
}

.card__actions-btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.625rem;
    width: 100%;
    max-width: 20.625rem;
    min-height: 2.75rem;
    padding: 0.625rem 1.875rem;
    border-radius: 1.875rem;
    background: #343434;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.card__actions-btn:hover {
    background: #1a1a1a;
}

.card__actions-btn_accent {
    position: relative;
    z-index: 1;
    gap: 0.125rem;
    max-width: 15.625rem;
    font-weight: 500;
    color: #fff;
}

.card__actions-btn_accent._not-cart {
    background: #68b222;
    color: #252525;
}


.card__actions-btn_accent::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.875rem;
    opacity: 1;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.card__actions-btn_accent._not-cart::before {
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
}

.card__actions-btn_accent::after {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.card__actions-btn_accent:hover {
    background: #68b222;
}

.card__actions-btn_accent:hover::before {
    opacity: 0;
}

.card__actions-btn_accent>span {
    margin-left: auto;
}

.card__descr-nav {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.card__descr-nav::before {
    content: "";
    position: absolute;
    left: -0.0625rem;
    right: -0.0625rem;
    bottom: 0;
    height: 0.125rem;
    border-radius: 0.125rem;
    background-color: #464646;
}

.card__descr-nav-title {
    position: relative;
    padding-left: 1.9375rem;
    padding-right: 1.875rem;
    padding-bottom: 0.6875rem;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: .8;
    color: #b0b0b0;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.card__descr-nav-title::before {
    content: "";
    position: absolute;
    left: -0.0625rem;
    right: -0.0625rem;
    bottom: 0;
    height: 0.125rem;
    border-radius: 0.125rem;
    background-color: #68b222;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.card__descr-nav-title:hover {
    color: #fff;
}

.card__descr-nav-title._tab-active {
    font-weight: 500;
    color: #fff;
}

.card__descr-nav-title._tab-active::before {
    opacity: 1;
}

.card__descr-body {
    margin-top: 1.8125rem;
    background-color: #343434;
}

.card__descr-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}

.card__descr-table-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.card__descr-table-item-title {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: .8;
}

.card__descr-table-item-title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.card__descr-table-item-text {
    font-size: 1rem;
    line-height: 1;
}

.card__descr-content {
    max-width: 35.9375rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}

.card__descr-content-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.card__descr-content-title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.card__descr-content-text {
    font-size: 1rem;
    line-height: 1.625;
}

.card__descr-review {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}

.card__descr-review-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.card__descr-review-title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.card__descr-review-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.875rem;
}

.card__descr-review-media-wrapper {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    padding-bottom: 32.1367521368%;
    border-radius: 1.875rem;
    overflow: hidden;
}

.card__descr-review-media-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 5.625rem;
    height: 5.625rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #68b222 0%, #95e747 100%);
    overflow: hidden;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.card__descr-review-media-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #68b222;
    opacity: 0;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.card__descr-review-media-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 1.875rem;
    height: 1.875rem;
    background-image: url(../img/icons/icon_play.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.card__descr-review-media-btn:hover::before {
    opacity: 1;
}

.card__descr-review-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card__descr-review-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: 29.375rem;
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
    background-color: #252525;
}

.card__descr-review-info-title {
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.card__descr-review-info-title:not(:last-child) {
    margin-bottom: 1.25rem;
}

.card__descr-review-info-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.3125rem;
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2.5rem;
    background-color: #343434;
    font-size: 1rem;
    line-height: 1.1875;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.card__descr-review-info-link:hover {
    background-color: #1a1a1a;
}

.card__descr-review-info-link .vk-link {
    color: #419fd9;
}

.basket {
    padding-top: 3.75rem;
    padding-bottom: 4.125rem;
}

.basket__breadcrumbs:not(:last-child) {
    margin-bottom: 1.8125rem;
}

.basket__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 23.125rem;
    grid-template-columns: 1fr 23.125rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    grid-column-gap: 1.875rem;
    grid-row-gap: 2rem;
}

.basket__list-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.875rem;
}

.basket__list-head:not(:last-child) {
    margin-bottom: 1.9375rem;
}

.basket__list-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.875rem;
    min-height: 2.4375rem;
    padding: 0.5rem 1.875rem;
    border-radius: 2.5rem;
    background-color: #343434;
    font-size: 1rem;
    line-height: 1.1875;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}

.basket__list-btn::after {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    width: 1.1875rem;
    height: 1.1875rem;
    background-image: url(../img/icons/icon_trash.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.basket__list-btn:hover {
    background-color: #1a1a1a;
}

.basket__list-item:not(:last-child) {
    margin-bottom: 1.875rem;
}

.basket-product {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.875rem;
    padding: 1.8125rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.875rem;
}

.basket-product__img-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    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;
    width: 13.0625rem;
    height: 8.75rem;
    border-radius: 0.9375rem;
    background-color: #343434;
}

.basket-product__img {
    max-width: 100%;
    max-height: 100%;
}

.basket-product__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.basket-product__title {
    padding-right: 1.8125rem;
    font-family: "Unbounded";
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: .05em;
}

.basket-product__descr {
    font-size: 1rem;
    line-height: .875;
}

.basket-product__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    row-gap: 0.9375rem;
}

.basket-product__price {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
}

.basket-product__quantity-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
}

.basket-product__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 2.5rem;
    background-color: #343434;
    padding: 0.5rem 1.875rem;
    border-radius: 1.875rem;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
}

.basket-product__delete {
    position: absolute;
    top: 1.875rem;
    right: 1.875rem;
    width: 1.1875rem;
    height: 1.1875rem;
    background-image: url(../img/icons/icon_trash_2.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.basket-product__delete:hover {
    background-image: url(../img/icons/icon_trash.svg);
}

.basket-product__quantity {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.9375rem;
    height: 2.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    border-radius: 1.25rem;
    background-color: #343434;
    color: #fff;
    overflow: hidden;
}

.basket-product__quantity-btn {
    padding: 0.5rem 0.9375rem;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.basket-product__quantity-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#343434), to(#1a1a1a));
    background: linear-gradient(90deg, #343434 0%, #1a1a1a 100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.basket-product__quantity-btn:hover {
    color: #68b222;
}

.basket-product__quantity-btn:hover::before {
    opacity: 1;
}

.basket-product__quantity-btn_minus::before {
    rotate: y 180deg;
}

.basket-product__quantity-input-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.basket-product__quantity-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.basket-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 0.0625rem;
    padding: 1.8125rem 1.1875rem;
    border: 0.0625rem solid #464646;
    border-radius: 1.25rem;
    background-color: #343434;
}

.basket-side__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 2.625rem;
    padding: 0.375rem 0.875rem;
    border: 0.0625rem solid #464646;
    border-radius: 2.5rem;
    background-color: #252525;
}

.basket-side__address::after {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    width: 1.0625rem;
    height: 1.0625rem;
    background-image: url(../img/icons/icon_angle_right.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.basket-side__address-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.9375rem;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.basket-side__address-text::before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    width: 1.1875rem;
    height: 1.1875rem;
    background-image: url(../img/icons/icon_marker.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.basket-side__options-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.875rem;
}

.basket-side__options-title {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
}

.basket-side__options-title:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.basket-side__total-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.9375rem;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1111111111;
}

.basket-side__total-item:not(:last-child) {
    margin-bottom: 1.875rem;
}

.basket-side__btn {
    min-height: 2.625rem;
}

.basket__message {
    margin-top: -1.25rem;
    padding: 0.5rem;
    color: #f95d51;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: 14px;
}

.basket__message-link {
    margin-top: 1rem;
    max-width: 20.625rem;
    min-height: 2.625rem;
}

.delpay__link-basket {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0;
}

[data-tippy-root] {
    max-width: calc(100vw - 10px);
}

.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    outline: 0;
    -webkit-transition-property: visibility, opacity, -webkit-transform;
    transition-property: visibility, opacity, -webkit-transform;
    transition-property: transform, visibility, opacity;
    transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^=top]>.tippy-arrow {
    bottom: 0;
}

.tippy-box[data-placement^=top]>.tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow {
    top: 0;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

.tippy-box[data-placement^=left]>.tippy-arrow {
    right: 0;
}

.tippy-box[data-placement^=left]>.tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.tippy-box[data-placement^=right]>.tippy-arrow {
    left: 0;
}

.tippy-box[data-placement^=right]>.tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
    -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
    transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333;
}

.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

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

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

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

.swiper-button-lock {
    display: none !important;
}

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

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

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

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

@media (min-width: 63.99875em) {
    .menu {
        display: none;
    }
}

@media (max-width: 82.49875em) {
    .header__panel-item_login {
        display: none;
    }

    .header__action-wrapper_login {
        display: none;
    }

    .header__grid {
        gap: 0.75rem;
    }

    .header__catalog-btn {
        padding-right: 0.75rem;
        font-weight: 400;
    }

    .header__action {
        font-weight: 400;
    }

    .header__action-price {
        font-weight: 400;
    }

    .header-search__form-submit {
        font-weight: 400;
    }
}

@media (max-width: 63.99875em) {
    .btn {
        font-weight: 400;
    }

    .select_filter .select__value {
        height: 2.25rem;
    }

    .select_filter .select__option {
        min-height: 2.25rem;
    }

    .popup__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .popup_success .popup__content {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .popup_success .popup__grid {
        padding-left: 0;
        padding-right: 0;
    }

    .popup_success .popup__title-wrapper:not(:last-child) {
        margin-bottom: 2rem;
    }

    .popup_success .popup__title {
        letter-spacing: normal;
    }

    .popup_success .popup__title:not(:last-child) {
        margin-bottom: 0.9375rem;
    }

    .popup__title-wrapper:not(:last-child) {
        margin-bottom: 1.625rem;
    }

    .popup__title {
        font-size: 1.375rem;
        line-height: 1.3181818182;
    }

    .popup__title:not(:last-child) {
        margin-bottom: 0.625rem;
    }

    .popup__form-input-wrapper:not(:last-child) {
        margin-bottom: 1.25rem;
    }

    .popup__icon-wrapper:not(:last-child) {
        margin-bottom: 2rem;
    }

    .popup__form-options:not(:last-child) {
        margin-bottom: 1.25rem;
    }

    .h1 {
        font-size: 1.375rem;
        line-height: 1.3181818182;
        letter-spacing: 0;
    }

    .h2 {
        font-size: 1.375rem;
        line-height: 1.3181818182;
        letter-spacing: 0;
    }

    .h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .header {
        min-height: 4.25rem;
    }

    .header__top {
        display: none;
    }

    .header__action-wrapper_basket {
        margin-left: auto;
        /* -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; */
    }

    .header__burger-menu {
        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;
        gap: 0.25rem;
        width: 3rem;
        height: 2rem;
        padding: 0.5rem 0.625rem;
        border-radius: 0.25rem;
        background-color: #68b222;
    }

    .header__burger-menu>* {
        display: block;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
        height: 0.125rem;
        background-color: #fff;
    }

    .header__catalog-btn {
        display: none;
    }

    .header__search {
        display: none;
    }

    .header__action-wrapper_price {
        display: none;
    }

    .header__action-wrapper_basket .header__action>span {
        display: none;
    }

    .header__action-price {
        display: none;
    }

    .footer {
        padding-top: 3.5625rem;
        padding-bottom: 3.1875rem;
    }

    .footer__contacts-note {
        line-height: 2.1666666667;
    }

    .footer__menu-link {
        line-height: 1.25;
    }

    .first-screen {
        margin-bottom: 1.8125rem;
    }

    .first-screen::before {
        top: 8.4375rem;
        height: 30.625rem;
    }

    .first-screen__inner {
        min-height: auto;
    }

    .first-screen__inner::before {
        width: 100%;
    }

    .first-screen__inner::after {
        display: none;
    }

    .first-screen__head {
        padding-bottom: 2.3125rem;
    }

    .first-screen__note:not(:last-child) {
        margin-bottom: 0.875rem;
    }

    .first-screen__body {
        padding-top: 3.875rem;
        padding-bottom: 2.5625rem;
    }

    .first-screen__form-wrapper {
        padding-top: 1.3125rem;
    }

    .first-screen__form-title-wrapper:not(:last-child) {
        margin-bottom: 1.1875rem;
    }

    .first-screen__form-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .first-screen__form-subtitle {
        line-height: 1.1875;
    }

    .first-screen__product {
        width: 32.8125rem;
        padding-bottom: 0;
    }

    .first-screen__product-info {
        min-height: 6.9375rem;
        padding-top: 0.9375rem;
        padding-right: 10.9375rem;
    }

    .first-screen__product-info:not(:last-child) {
        margin-bottom: 1.375rem;
    }

    .first-screen__product-title {
        line-height: 1.1666666667;
    }

    .first-screen__product-title:not(:last-child) {
        margin-bottom: 0.25rem;
    }

    .first-screen__product-img {
        top: -3.8125rem;
        right: -4rem;
        max-width: 15.5rem;
    }

    .products-list {
        margin-bottom: 2.5rem;
    }

    .products-list_categories .products-list__title {
        text-align: center;
    }

    .products-list_categories .products-list__grid {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0.1875rem;
        margin-bottom: 0.1875rem;
    }

    .products-list__body {
        -ms-grid-rows: auto 1.8125rem auto 1.8125rem auto;
        grid-template-areas: "products-list__title" "products-list__grid" "products-list__btn";
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 1.8125rem;
        padding: 1.9375rem 0.6875rem;
    }

    .products-list__btn {
        max-width: 28.125rem;
        min-height: 3.25rem;
        margin-left: auto;
        margin-right: auto;
    }

    .products-list__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 0.5rem;
        grid-row-gap: 0.875rem;
    }

    .product-card__title {
        font-weight: 400;
        font-size: 0.9375rem;
        line-height: 1.3333333333;
    }

    .product-card__options-title {
        line-height: 1.1666666667;
    }

    .product-card__options-label {
        min-height: 1.875rem;
        line-height: 1.1666666667;
    }

    .product-card__price {
        -ms-flex-item-align: start;
        align-self: flex-start;
        font-weight: 400;
    }

    .product-card__actions-btn {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        min-height: 2.625rem;
        font-size: 1rem;
        line-height: 1;
    }

    .category-card {
        gap: 0.6875rem;
        padding-top: 1.25rem;
    }

    .category-card__name {
        font-weight: 400;
        font-size: 0.9375rem;
        line-height: 1.3333333333;
    }

    .category-card__img-wrapper {
        height: 7.75rem;
    }

    .category-card__note {
        line-height: 1;
    }

    .category-card__note:not(:last-child) {
        margin-bottom: 0.5625rem;
    }

    .category-card__price {
        max-width: 8.75rem;
        min-height: 1.75rem;
        padding-top: 0.4375rem;
        padding-bottom: 0.4375rem;
        font-size: 0.75rem;
        line-height: 1.1666666667;
    }

    .category-card__link {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        min-height: 2.625rem;
        font-size: 1rem;
        line-height: .875;
    }

    .advantages {
        margin-bottom: 5.5rem;
    }

    .advantages__title:not(:last-child) {
        margin-bottom: 2rem;
    }

    .advantages__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 3.125rem;
    }

    .advantages__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 0.75rem;
        grid-row-gap: 1rem;
    }

    .advantages__list-item {
        padding: 1.25rem 0.9375rem 1.125rem;
    }

    .advantages__list-item-title {
        line-height: 1.2;
    }

    .advantages__list-item-descr {
        font-size: 1rem;
        line-height: 1.4375;
    }

    .advantages__house {
        max-width: 41.375rem;
        margin-left: auto;
        margin-right: auto;
    }

    .advantages__house-dot_1 {
        top: 21.5%;
        left: 38.2%;
    }

    .advantages__house-dot_2 {
        top: 24.9%;
        left: 68.5%;
    }

    .advantages__house-dot_3 {
        top: 16%;
        left: 77.4%;
    }

    .advantages__house-dot_4 {
        top: 66.3%;
        left: 46.2%;
    }

    .advantages__house-dot_5 {
        top: 59.4%;
        left: 73.8%;
    }

    .advantages__house-dot_6 {
        top: 90.4%;
        left: 49%;
    }

    .advantages__house-dot_7 {
        top: 76.1%;
        left: 67.8%;
    }

    .advantages__house-dot-title {
        font-size: 1.125rem;
        line-height: 1.2222222222;
    }

    .production__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .production__grid:not(:last-child) {
        margin-bottom: 1.625rem;
    }

    .production__title {
        text-align: center;
    }

    .production__title:not(:last-child) {
        margin-bottom: 2rem;
    }

    .production__list-item:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .production__list-item-text {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .production__slide-img-wrapper {
        padding-bottom: 44.2934782609%;
    }

    .production__thumbs-arrow {
        font-weight: 400;
    }

    .production__thumbs-list.swiper-wrapper {
        gap: 0.5rem;
    }

    .callback {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .callback_alt {
        padding-top: 5rem;
        padding-bottom: 2.5rem;
    }

    .callback_alt .callback__grid:not(:last-child) {
        margin-bottom: 2rem;
    }

    .callback_dark {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        background-color: rgba(0, 0, 0, 0);
    }

    .callback__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 2.5rem;
    }

    .callback__grid:not(:last-child) {
        margin-bottom: 2rem;
    }

    .callback__title-wrapper {
        text-align: center;
    }

    .callback__title:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .callback__contacts {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 1.3125rem;
    }

    .callback__contacts-list {
        margin-bottom: 0.5rem;
    }

    .callback__contacts-item {
        font-weight: 400;
    }

    .callback__form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 0.75rem;
        max-width: 21.25rem;
        margin-left: auto;
        margin-right: auto;
    }

    .callback__form-input-wrapper {
        max-width: none;
    }

    .callback__form-btn {
        max-width: none;
        min-height: 2.625rem;
        margin-top: 0.75rem;
    }

    .callback__form-policy {
        line-height: 1.1666666667;
        letter-spacing: .05em;
        text-align: center;
    }

    .socials {
        -webkit-column-gap: 1.125rem;
        -moz-column-gap: 1.125rem;
        column-gap: 1.125rem;
    }

    .socials__item {
        width: 2.25rem;
        height: 2.25rem;
    }

    .about {
        margin-top: 2rem;
        margin-bottom: 1.875rem;
    }

    .about__breadcrumbs:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .about__title:not(:last-child) {
        margin-bottom: 2.0625rem;
    }

    .about__subtitle:not(:last-child) {
        margin-bottom: 1.1875rem;
    }

    .about__text {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        max-width: 33.375rem;
    }

    .about__text>*:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .principles {
        margin-bottom: 3.5625rem;
        padding-top: 1.5625rem;
        padding-bottom: 1.5rem;
    }

    .principles__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 1.5rem;
    }

    .principles__content {
        max-width: none;
    }

    .principles__title:not(:last-child) {
        margin-bottom: 1.4375rem;
    }

    .principles__text {
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        max-width: 45.25rem;
    }

    .principles__text:not(:last-child) {
        margin-bottom: 2rem;
    }

    .principles__quote {
        max-width: 35.6875rem;
        padding-top: 1.3125rem;
        padding-bottom: 1.3125rem;
        border-radius: 1.6875rem;
    }

    .principles__quote::before {
        top: -1rem;
    }

    .team {
        margin-bottom: 2.5rem;
    }

    .team__title {
        line-height: 1.3181818182;
    }

    .team__title:not(:last-child) {
        margin-bottom: 2rem;
    }

    .team__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .team__item {
        grid-column: unset;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        min-height: 35.0625rem;
        padding-top: 1.4375rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        text-align: left;
    }

    .team__item:nth-child(7n+3),
    .team__item:nth-child(7n+4),
    .team__item:nth-child(7n+5) {
        grid-column: unset;
        padding-top: 1.1875rem;
    }

    .team__item:nth-child(7n+3) .team__item-title:not(:last-child),
    .team__item:nth-child(7n+4) .team__item-title:not(:last-child),
    .team__item:nth-child(7n+5) .team__item-title:not(:last-child) {
        margin-bottom: 0.5625rem;
    }

    .team__item:nth-child(7n+3) .team__item-img-wrapper,
    .team__item:nth-child(7n+4) .team__item-img-wrapper,
    .team__item:nth-child(7n+5) .team__item-img-wrapper {
        max-width: none;
    }

    .team__item:nth-child(7n+3) .team__item-img-wrapper:not(:last-child),
    .team__item:nth-child(7n+4) .team__item-img-wrapper:not(:last-child),
    .team__item:nth-child(7n+5) .team__item-img-wrapper:not(:last-child) {
        margin-bottom: 1.3125rem;
    }

    .team__item-title {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-left: 0;
        padding-right: 0;
        font-size: 1.25rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .team__item-title:not(:last-child) {
        margin-bottom: 0.5625rem;
    }

    .team__item-img-wrapper {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        max-width: none;
        padding-bottom: 94.8170731707%;
    }

    .team__item-img-wrapper:not(:last-child) {
        margin-bottom: 1.3125rem;
    }

    .team__item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center top;
        object-position: center top;
    }

    .team__text {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 0;
    }

    .delpay {
        margin-bottom: 2.5rem;
    }

    .delpay__title {
        line-height: 1.3181818182;
    }

    .delpay__title:not(:last-child) {
        margin-bottom: 2rem;
    }

    .delpay__group {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .delpay__group_delivery .delpay__list {
        grid-column: unset;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .delpay__group_delivery .delpay__item {
        min-height: 12.5rem;
    }

    .delpay__group_payment .delpay__list {
        grid-column: unset;
    }

    .delpay__group:not(:last-child) {
        margin-bottom: 2rem;
    }

    .delpay__subtitle-wrapper {
        grid-column: unset;
        min-height: 5.1875rem;
        max-width: 29.4375rem;
    }

    .delpay__subtitle-wrapper:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .delpay__subtitle {
        font-size: 1.0625rem;
        line-height: 1.2352941176;
        letter-spacing: .02em;
    }

    .delpay__subtitle:not(:last-child) {
        margin-bottom: 0.6875rem;
    }

    .delpay__list {
        grid-gap: 1rem;
    }


    /* Контакты */
    .contacts__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 2.5rem;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .map-wrapper {
        margin: 0 -16px;
        border-radius: 0;
    }

    .contacts__content h2 {
        margin-bottom: 0.6875rem;
        font-size: 1.0625rem;
        line-height: 1.2352941176;
        letter-spacing: .02em;
    }

    .contacts__content a {
        font-size: 1.0625rem;
        line-height: 1.2352941176;
        letter-spacing: .02em;
    }


    .lumber-calc {
        margin-top: 2rem;
        margin-bottom: 4.5rem;
    }

    .lumber-calc__breadcrumbs:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .lumber-calc__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 2.5rem;
    }

    .lumber-calc__title {
        font-size: 1.375rem;
        line-height: 1.3181818182;
    }

    .lumber-calc__title:not(:last-child) {
        margin-bottom: 2rem;
    }

    .lumber-calc__img-wrapper {
        position: relative;
        max-width: none;
        padding-bottom: 48.3695652174%;
        border-radius: 1.875rem;
        overflow: hidden;
    }

    .lumber-calc__img-wrapper:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .lumber-calc__img {
        position: absolute;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .lumber-calc__text {
        max-width: none;
    }

    .reviews__bottom,
    .reviews__thumbs-wrapper {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .reviews__thumbs {
        width: 100%;
    }

    .catalog {
        padding-top: 2rem;
        padding-bottom: 4.5rem;
    }

    .catalog__breadcrumbs:not(:last-child):not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .catalog__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 1.25rem;
    }

    .catalog__title:not(:last-child) {
        margin-bottom: 1.25rem;
    }

    .catalog__list {
        grid-gap: 1rem;
    }

    .catalog__list:not(:last-child) {
        margin-bottom: 2rem;
    }

    .catalog__more-btn {
        max-width: 21.125rem;
        min-height: 3rem;
        font-weight: 500;
    }

    .catalog__actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 1rem;
    }

    .sidebar {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        translate: 100%;
        -ms-flex-item-align: unset;
        -ms-grid-row-align: unset;
        align-self: unset;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 0;
        -webkit-transition: translate .3s ease 0s;
        transition: translate .3s ease 0s;
    }

    .sidebar.active {
        translate: 0;
    }

    .sidebar::before,
    .sidebar::after {
        display: none;
    }

    .sidebar__close-wrapper {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
        height: 3.5rem;
        padding: 0.9375rem;
        background-color: #343434;
    }

    .sidebar__list-wrapper {
        display: none;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 1.25rem 0.9375rem 2.5rem 1rem;
        background-color: #252525;
        overflow-y: auto;
        -ms-scroll-chaining: none;
        overscroll-behavior: none;
    }

    .sidebar__list-wrapper:not(:last-child) {
        border-bottom: none;
    }

    ._catalog .sidebar__list-wrapper_catalog {
        display: block;
    }

    ._filters .sidebar__list-wrapper_filters {
        display: block;
    }

    .sidebar__title {
        padding: 0;
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: .05em;
        text-transform: none;
    }

    .sidebar__title:not(:last-child) {
        margin-bottom: 1.25rem;
    }

    .sidebar__item {
        border-radius: 1.875rem;
        background-color: #343434;
    }

    .sidebar__item:not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .sidebar__item-title {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        min-height: 2.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        background-color: rgba(0, 0, 0, 0);
        font-size: 1.0625rem;
        line-height: 1.4117647059;
        color: #fff;
    }

    .sidebar__item-title:hover {
        background-color: rgba(0, 0, 0, 0);
    }

    .sidebar__item-title._spoller-active {
        background-color: rgba(0, 0, 0, 0);
    }

    .sidebar__item-links:not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .sidebar__item-link {
        min-height: 2.3125rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 0.9375rem;
        line-height: 1.4;
        color: #fff;
    }

    .sidebar__item-link:not(:last-child) {
        margin-bottom: 0.125rem;
    }

    .sidebar__item-link_sub {
        background-color: rgba(0, 0, 0, 0);
    }

    .sidebar__filters-list:not(:last-child) {
        margin-bottom: 2.5rem;
    }

    .sidebar__filters-item {
        display: block;
        padding: 0;
    }

    .sidebar__filters-item:not(:last-child) {
        margin-bottom: 0.875rem;
    }

    .sidebar__filters-item-label {
        line-height: 1.625;
    }

    .sidebar__filters-item-label:not(:last-child) {
        margin-bottom: 0.375rem;
    }

    .sidebar__filters-actions {
        padding-left: 0;
        padding-right: 0;
    }

    .sidebar__filters-actions-btn {
        min-height: 3rem;
    }

    .sidebar__filters-actions-reset {
        line-height: 1.625;
    }

    .card {
        margin-top: 2rem;
    }

    .card__main:not(:last-child) {
        margin-bottom: 3.5rem;
    }

    .card__breadcrumbs {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .card__breadcrumbs:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .card__breadcrumbs .breadcrumbs__link {
        letter-spacing: normal;
    }

    .card__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2.125rem;
    }

    .card__img-wrapper {
        width: 100%;
        height: 25.8125rem;
    }

    .card__content {
        width: 100%;
    }

    .card__title {
        margin-bottom: 0.25rem;
        font-size: 1.4375rem;
        line-height: 1.4782608696;
    }

    .card__options-label {
        padding-right: 1.875rem;
    }

    .card__actions {
        margin-top: 0.75rem;
    }

    .card__actions-btn {
        min-height: 3.25rem;
    }

    .card__actions-btn:last-child {
        display: none;
    }

    .card__descr-nav {
        gap: 2.4375rem;
    }

    .card__descr-nav-title {
        padding-top: 0.625rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .card__descr-nav-title._tab-active {
        font-weight: 400;
    }

    .card__descr-body {
        margin-top: 1.1875rem;
    }

    .card__descr-table {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 1.5rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .card__descr-table-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .card__descr-content {
        margin-left: 0.625rem;
        margin-right: 0.625rem;
        padding-top: 1.8125rem;
    }

    .card__descr-review {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .card__descr-review-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card__descr-review-media-wrapper {
        height: 23.5rem;
    }

    .basket {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .basket__breadcrumbs:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .basket__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 1.9375rem;
    }

    .basket__list-head:not(:last-child) {
        margin-bottom: 2rem;
    }

    .basket__list-item:not(:last-child) {
        margin-bottom: 1rem;
    }

    .basket-product__title {
        font-size: 1.0625rem;
        line-height: 1.1764705882;
        letter-spacing: .02em;
    }

    .basket-product__price {
        display: none;
    }

    .basket-product__quantity-wrapper {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .basket-product__quantity {
        width: 12.6875rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .basket-product__quantity-input-wrapper {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1.25rem;
        flex: 0 0 1.25rem;
    }

    .basket-side {
        gap: 1.5rem;
    }

    .basket-side__address {
        max-width: 20.8125rem;
    }

    .basket-side__options-wrapper {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .basket-side__total-item:not(:last-child) {
        margin-bottom: 1rem;
    }

    .basket-side__btn {
        min-height: 3.25rem;
    }

    .products-list__title {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .products-list__btn {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .products-list__grid {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
}

@media (max-width: 47.99875em) {
    .popup__content {
        padding: 1.5625rem 0.9375rem;
        border-radius: 1.5625rem;
    }

    .popup_success {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .popup_success .popup__content {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .popup_success .popup__grid {
        padding-bottom: 1.5625rem;
    }

    .popup_success .popup__title-wrapper {
        padding-left: 0.5625rem;
        padding-right: 0.5625rem;
    }

    .popup__close:not(:last-child) {
        margin-bottom: 1.125rem;
    }

    .popup__grid {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .footer {
        padding-top: 2.375rem;
        padding-bottom: 2rem;
    }

    .footer__logo-wrapper:not(:last-child) {
        margin-bottom: 2.5rem;
    }

    .footer__logo:not(:last-child) {
        margin-bottom: 0.8125rem;
    }

    .footer__contacts {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

    .footer__contacts:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .footer__contacts-address {
        line-height: 1.25;
    }

    .footer__contacts-address:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .footer__contacts-note {
        max-width: 19rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.25;
    }

    .footer__menu:not(:last-child) {
        margin-bottom: 2.125rem;
    }

    .footer__menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 1rem;
    }

    .first-screen {
        margin-bottom: 2.4375rem;
    }

    .first-screen::before {
        top: 4.25rem;
        height: 28.9375rem;
        background-position: right -12.1875rem bottom 0;
    }

    .first-screen__head {
        padding-top: 1.75rem;
        padding-bottom: 1.6875rem;
    }

    .first-screen__note:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .first-screen__body {
        padding-top: 16.3125rem;
        padding-bottom: 2.125rem;
    }

    .first-screen__grid {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        row-gap: 4rem;
    }

    .first-screen__product-info {
        padding-right: 7.8125rem;
    }

    .first-screen__product-info:not(:last-child) {
        margin-bottom: 1.625rem;
    }

    .first-screen__product-img {
        top: -2.6875rem;
        right: -0.75rem;
        max-width: 11.0625rem;
    }

    .first-screen__product-link {
        margin-left: auto;
        margin-right: auto;
    }

    .products-list {
        margin-bottom: 3rem;
    }

    .products-list_categories .products-list__body {
        margin-left: 0;
    }

    .products-list_categories .products-list__title {
        text-align: left;
    }

    .products-list_categories .products-list__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
    }

    .products-list_categories .products-list__btn {
        max-width: 28.125rem;
    }

    .products-list__body {
        grid-gap: 2rem;
        margin-left: -1rem;
        padding: 1.4375rem 0.9375rem;
    }

    .products-list__btn {
        max-width: 26rem;
    }

    .products-list__grid {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .category-card__img-wrapper {
        height: 6.75rem;
    }

    .advantages {
        margin-bottom: 5.0625rem;
    }

    .advantages__grid {
        grid-row-gap: 4.25rem;
    }

    .advantages__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 0.875rem;
    }

    .advantages__house-dot {
        width: 1rem;
        height: 1rem;
    }

    .advantages__house-dot_1 {
        top: 22%;
        left: 29.3%;
    }

    .advantages__house-dot_2 {
        top: 25.4%;
        left: 64.7%;
    }

    .advantages__house-dot_3 {
        top: 16.7%;
        left: 74.2%;
    }

    .advantages__house-dot_4 {
        top: 66.3%;
        left: 38.6%;
    }

    .advantages__house-dot_5 {
        top: 59.4%;
        left: 70.2%;
    }

    .advantages__house-dot_6 {
        top: 90%;
        left: 42%;
    }

    .advantages__house-dot_7 {
        top: 76%;
        left: 64%;
    }

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

    .production__grid {
        grid-row-gap: 1.4375rem;
    }

    .production__grid:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .production__title {
        text-align: left;
    }

    .production__list-item {
        padding-top: 1.3125rem;
        padding-left: 1.375rem;
        padding-right: 1.375rem;
    }

    .production__list-item:not(:last-child) {
        margin-bottom: 0.875rem;
    }

    .production__list-item-title {
        line-height: 1.2;
    }

    .production__list-item-text {
        max-width: 23.6875rem;
    }

    .production__thumbs-list.swiper-wrapper {
        row-gap: 0.75rem;
    }

    .production__thumbs-slide {
        -ms-flex-preferred-size: 9.625rem;
        flex-basis: 9.625rem;
    }

    .production__thumbs-slide-img-wrapper::after {
        background-size: 2.125rem 2.125rem;
    }

    .callback {
        padding-top: 2rem;
        padding-bottom: 5.1875rem;
    }

    .callback_alt {
        padding-top: 4.5rem;
        padding-bottom: 6.9375rem;
    }

    .callback_alt .callback__grid {
        gap: 1.875rem;
    }

    .callback_alt .callback__grid:not(:last-child) {
        margin-bottom: 1.875rem;
    }

    .callback_dark {
        padding-top: 2rem;
        padding-bottom: 6.9375rem;
    }

    .callback__grid {
        grid-row-gap: 1.75rem;
    }

    .callback__grid:not(:last-child) {
        margin-bottom: 1.875rem;
    }

    .callback__title-wrapper {
        text-align: left;
    }

    .callback__title:not(:last-child) {
        margin-bottom: 0.625rem;
    }

    .callback__contacts {
        row-gap: 2.375rem;
        padding: 1.5rem 9.375rem 0.875rem 1.4375rem;
    }

    .callback__contacts::before {
        top: 1.4375rem;
        right: 1.4375rem;
    }

    .callback__contacts-title {
        line-height: 1.2;
    }

    .callback__contacts-title:not(:last-child) {
        margin-bottom: 0.875rem;
    }

    .callback__contacts-list {
        margin-bottom: 0;
    }

    .callback__form {
        row-gap: 0.875rem;
    }

    .callback__form-btn {
        margin-top: 0.375rem;
    }

    .callback__form-policy {
        margin-top: 0.4375rem;
    }

    .about {
        margin-top: 1.8125rem;
    }

    .about__text>*:not(:last-child) {
        margin-bottom: 0.875rem;
    }

    .principles {
        margin-bottom: 3.75rem;
    }

    .principles__title:not(:last-child) {
        margin-bottom: 1.1875rem;
    }

    .principles__text {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        max-width: 21.5625rem;
    }

    .principles__quote {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .principles__quote::before {
        top: -0.6875rem;
    }

    .team__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .team__item {
        min-height: 33.75rem;
    }

    .team__item-img-wrapper {
        padding-bottom: 74.7596153846%;
    }

    .delpay__group_delivery .delpay__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .delpay__group_delivery .delpay__item:first-child {
        grid-column: unset;
    }

    .delpay__list {
        grid-gap: 0.75rem;
    }

    .delpay__item {
        border-radius: 1.5625rem;
    }

    .lumber-calc {
        margin-bottom: 3.8125rem;
    }

    .lumber-calc__img-wrapper {
        padding-bottom: 51.3392857143%;
    }

    .lumber-calc__img-wrapper:not(:last-child) {
        margin-bottom: 1rem;
    }

    .lumber-calc__app {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .catalog__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0.75rem;
    }

    .catalog__more-btn {
        max-width: 22.375rem;
    }

    .catalog__actions {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .card__grid {
        padding: 1.1875rem 0.9375rem;
    }

    .card__actions-btn_accent {
        max-width: 18.0625rem;
    }

    .card__descr-nav {
        gap: 1.125rem;
        max-width: 100%;
        overflow: auto;
    }

    .card__descr-table-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .card__descr-content {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        padding-top: 1.875rem;
    }

    .card__descr-review-media-wrapper {
        height: 31rem;
    }

    .card__descr-review-info {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .basket__list-head:not(:last-child) {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .basket__list-btn {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        border-radius: 0.75rem;
    }

    .basket__list-btn-text {
        display: none;
    }

    .basket__list-item:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .basket-product {
        gap: 0.75rem;
        padding: 1.1875rem 0.9375rem;
    }

    .basket-product__img-wrapper {
        width: 8.5rem;
        height: 9.25rem;
    }

    .basket-product__info {
        gap: 0.625rem;
    }

    .basket-product__options {
        margin-top: 0.875rem;
    }

    .basket-product__quantity-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .basket-product__delete {
        top: 1.1875rem;
        right: 1.1875rem;
    }

    .basket-product__quantity {
        width: 9rem;
    }

    .basket-side__options-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .reviews__slide {
        padding-bottom: 140%;
    }
}

@media (max-width: 29.99875em) {
    .popup {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .popup__content {
        padding: 1.4375rem 0.6875rem;
    }

    .popup_success .popup__content {
        padding-left: 0.6875rem;
        padding-right: 0.6875rem;
    }

    .popup_success .popup__grid {
        padding-bottom: 1.875rem;
    }

    .popup_success .popup__title-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .popup__close:not(:last-child) {
        margin-bottom: 1.25rem;
    }

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

    .popup__title-wrapper:not(:last-child) {
        margin-bottom: 1.25rem;
    }

    .popup__title {
        letter-spacing: normal;
    }

    .tippy-content {
        padding-left: 1.1875rem !important;
        padding-right: 1.1875rem !important;
    }

    .footer {
        padding-top: 1.75rem;
        padding-bottom: 1.375rem;
    }

    .footer__logo-wrapper:not(:last-child) {
        margin-bottom: 2.25rem;
    }

    .footer__contacts {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
        padding-bottom: 1.75rem;
    }

    .footer__contacts-group:not(:last-child) {
        margin-bottom: 1.875rem;
    }

    .footer__socials .socials__item {
        width: 2.25rem;
        height: 2.25rem;
    }

    .footer__contacts-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer__contacts-item:not(:last-child)::before {
        display: none;
    }

    .footer__contacts-address {
        line-height: 1.375;
    }

    .footer__contacts-address:not(:last-child) {
        margin-bottom: 0.8125rem;
    }

    .footer__contacts-note {
        line-height: 1.5;
    }

    .footer__menu:not(:last-child) {
        margin-bottom: 1.875rem;
    }

    .first-screen {
        margin-bottom: 2.375rem;
    }

    .first-screen::before {
        top: 9.0625rem;
        height: 26rem;
        background-position: right -10.9375rem bottom 0;
    }

    .first-screen__head {
        padding-top: 0.75rem;
        padding-bottom: 1.125rem;
    }

    .first-screen__note:not(:last-child) {
        margin-bottom: 0.875rem;
    }

    .first-screen__body {
        padding-top: 11.5rem;
        padding-bottom: 1.5rem;
    }

    .first-screen__grid {
        row-gap: 3.5rem;
    }

    .first-screen__form-wrapper {
        padding-top: 1.3125rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .first-screen__form-title-wrapper:not(:last-child) {
        margin-bottom: 1.6875rem;
    }

    .first-screen__form:not(:last-child) {
        margin-bottom: 1rem;
    }

    .first-screen__product-info {
        min-height: 6.75rem;
        padding-left: 0.9375rem;
        padding-right: 3.125rem;
    }

    .first-screen__product-info:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .first-screen__product-title {
        font-size: 1rem;
        line-height: 1.1875;
    }

    .first-screen__product-title:not(:last-child) {
        margin-bottom: 0.3125rem;
    }

    .first-screen__product-img {
        top: -3.4375rem;
        right: -2.0625rem;
        max-width: 9.875rem;
    }

    .products-list {
        margin-bottom: 3.5rem;
    }

    .products-list_categories .products-list__title:not(:last-child) {
        margin-bottom: 0;
    }

    .products-list_categories .products-list__btn {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .products-list__body {
        grid-gap: 1.625rem;
        margin-left: 0;
    }

    .products-list__title:not(:last-child) {
        margin-bottom: 0.625rem;
    }

    .products-list__btn {
        padding-left: 1.625rem;
        padding-right: 1.625rem;
    }

    .products-list__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
    }

    .category-card {
        gap: 0.625rem;
    }

    .category-card__descr {
        line-height: 1.6666666667;
    }

    .category-card__img-wrapper {
        height: 4.625rem;
    }

    .category-card__price {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        width: auto;
        max-width: none;
        margin-left: -0.625rem;
        margin-right: -0.625rem;
    }

    .advantages {
        margin-bottom: 3.25rem;
    }

    .advantages__grid {
        grid-row-gap: 6.0625rem;
    }

    .advantages__house-dot {
        width: 0.75rem;
        height: 0.75rem;
    }

    .production__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .production__grid {
        grid-row-gap: 1.5625rem;
    }

    .production__grid:not(:last-child) {
        margin-bottom: 1.375rem;
    }

    .production__list-item-text {
        font-size: 0.875rem;
        line-height: 1.2142857143;
    }

    .production__slide-img-wrapper {
        padding-bottom: 43.9024390244%;
    }

    .production__thumbs-slide {
        -ms-flex-preferred-size: 10rem;
        flex-basis: 10rem;
    }

    .callback_alt {
        padding-bottom: 3.8125rem;
    }

    .callback_alt .callback__grid {
        gap: 1.8125rem;
    }

    .callback_alt .callback__contacts {
        border-radius: 1.5625rem;
    }

    .callback_dark {
        padding-bottom: 3.8125rem;
    }

    .callback__grid {
        grid-row-gap: 1.8125rem;
    }

    .callback__title:not(:last-child) {
        margin-bottom: 0.6875rem;
    }

    .callback__subtitle {
        font-size: 1.125rem;
        line-height: 1.1666666667;
    }

    .callback__contacts {
        padding: 1.4375rem 1.875rem 1.125rem 0.9375rem;
    }

    .callback__contacts::before {
        right: 1.1875rem;
    }

    .callback__contacts-title {
        line-height: 1.25;
    }

    .callback__contacts-title:not(:last-child) {
        margin-bottom: 0.9375rem;
    }

    .callback__form-btn {
        min-height: 3rem;
    }

    .callback__form-policy {
        margin-top: -0.0625rem;
    }

    .socials__item {
        width: 2.375rem;
        height: 2.375rem;
    }

    .about {
        margin-top: 2.125rem;
        margin-bottom: 4.1875rem;
    }

    .principles__grid {
        row-gap: 1rem;
    }

    .principles__media-wrapper {
        height: auto;
        padding-bottom: 97.256097561%;
    }

    .principles__title:not(:last-child) {
        margin-bottom: 1.4375rem;
    }

    .principles__text:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .principles__quote {
        padding-left: 0.6875rem;
        padding-right: 0.6875rem;
    }

    .principles__quote::before {
        top: -0.9375rem;
    }

    .map__body {
        height: 16.4375rem;
    }

    .team__item {
        min-height: 36.375rem;
    }

    .team__item:nth-child(7n+3) .team__item-img-wrapper:not(:last-child),
    .team__item:nth-child(7n+4) .team__item-img-wrapper:not(:last-child),
    .team__item:nth-child(7n+5) .team__item-img-wrapper:not(:last-child) {
        margin-bottom: 1.5625rem;
    }

    .team__item-img-wrapper {
        padding-bottom: 105.0675675676%;
    }

    .team__item-img-wrapper:not(:last-child) {
        margin-bottom: 1.5625rem;
    }

    .delpay__group_payment .delpay__item {
        min-height: 9.5rem;
    }

    .delpay__item {
        gap: 0.75rem;
    }

    .lumber-calc__img-wrapper {
        padding-bottom: 64.9390243902%;
        border-radius: 1.5625rem;
    }

    .lumber-calc__img-wrapper:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .catalog__list-item_category {
        padding-left: 0.6875rem;
        padding-right: 0.6875rem;
        border-radius: 1.5rem;
    }

    .catalog__list-item_category .category-card__price {
        margin-left: -0.1875rem;
        margin-right: -0.1875rem;
    }

    .catalog__more-btn {
        max-width: 19.25rem;
    }

    .card__grid {
        gap: 2.0625rem;
        padding-top: 0.9375rem;
        padding-bottom: 0.9375rem;
    }

    .card__img-wrapper {
        height: 19.5rem;
    }

    .card__title {
        margin-bottom: 0.4375rem;
        line-height: 1.5217391304;
    }

    .card__actions {
        margin-top: 0.5rem;
    }

    .card__actions-btn {
        min-height: 3rem;
    }

    .card__actions-btn_accent {
        max-width: 15.625rem;
    }

    .card__descr-table-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .card__descr-review-media-wrapper {
        height: 32rem;
        border-radius: 1.5625rem;
    }

    .card__descr-review-info {
        padding-top: 1.875rem;
    }

    .card__descr-review-info-title {
        line-height: 1.2;
    }

    .card__descr-review-info-title:not(:last-child) {
        margin-bottom: 1.1875rem;
    }

    .basket-product {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0.6875rem 0.6875rem 1.1875rem;
    }

    .basket-product__img-wrapper {
        width: 100%;
        height: 7.0625rem;
    }

    .basket-product__options {
        margin-top: 0.625rem;
    }

    .basket-product__total {
        padding-left: 1.53125rem;
        padding-right: 1.53125rem;
        margin-right: auto;
    }

    .basket-product__delete {
        position: relative;
        top: unset;
        right: unset;
    }

    .basket-product__quantity {
        width: 7.25rem;
    }
}

@media (max-width: 22.4375em) {
    .production__thumbs-slide {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
        flex: 1 1 40%;
    }
}

@media (any-hover: hover) {
    .select__option:hover {
        background: #d9d9d9;
    }
}
