body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

:root {
    --font-primary: "Golos Text", Arial, Helvetica, sans-serif;
    --font-secondary: "Enter Sansman", Arial, Helvetica, sans-serif;
    --base-cristal-white: #fff;
    --base-rich-black: #020d1e;
    --brandbook-main: #73b61c;
    --brandbook-sky: #aacbfc;
    --brandbook-barbie: #ff00c7;
    --brandbook-grass: #9747ff;
    --brandbook-more: #f22a52;
    --buttons-white: #fff;
    --buttons-yellow: #fee000;
    --buttons-green: #2dbe64;
    --buttons-blue: #69a6ff;
    --buttons-red: #fe4928;
    --buttons-violet: #7b61ff;
    --gray-gray-10: #fafaff;
    --gray-gray-20: #f5f5ff;
    --gray-gray-30: #e6e6f0;
    --gray-gray-40: #bcbccc;
    --gray-gray-50: #9393a3;
    --gray-gray-60: #67677a;
    --gray-gray-70: #3e3e52;
    --tech-hot-red: #f00;
    --tech-sky: #00a3ff;
    --tech-greentekila: #0ff14e;
    --tech-barbie: #ff00a8;
    --green: #558813;
}

.btn {
    display: inline-block;
    border: 1px solid var(--base-rich-black);
    border-radius: 50px;
    padding: 1.3rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.5;
    font-size: 1em;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn_play {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.btn_play:hover {
    border-color: var(--brandbook-main);
    color: var(--brandbook-main);
}

.btn_play:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
    filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
}

.btn_reg {
    background: var(--brandbook-main);
    color: var(--base-cristal-white);
    width: 334px;
    gap: 2rem;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.125em;
    border-color: transparent;
    font-weight: 600;
    padding: 2.2rem 1rem;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.btn_reg:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#73b61c), to(#558813));
    background: linear-gradient(360deg, #73b61c 0%, #558813 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.btn_reg:hover:before {
    opacity: 1;
    visibility: visible;
}

.btn_white {
    color: var(--base-cristal-white);
    border-color: var(--base-cristal-white);
}

.btn_red {
    background: rgba(242, 42, 82, 0.2);
    border-color: transparent;
    color: var(--brandbook-more);
}

.btn_black {
    background: var(--base-rich-black);
    color: var(--base-cristal-white);
}

.btn_transparent-green {
    border-color: var(--brandbook-main);
    color: var(--brandbook-main);
    padding: 0.7rem 2rem;
    font-size: 0.875em;
}

.btn__icon {
    width: 16px;
    height: 16px;
	transition: 0.5s ease;
}

.slick-arrow {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.slick-arrow:hover {
    border-color: var(--base-cristal-white);
}

html {
    font-size: 10px;
    overflow-x: hidden;
}

body {
    font: 400 16px var(--font-primary);
    background: rgb(244, 247, 255);
    overflow-x: hidden;
}

.inner {
    max-width: 1520px;
    width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1023px) {
    .inner {
        padding: 0 3.2rem;
    }
}

@media screen and (max-width: 600px) {
    .inner {
        padding: 0 1.6rem;
    }
}

.content {
    padding-block: 5rem;
    /*font-weight: 500;*/
    /*font-size: 1.125em;*/
    /*line-height: 156%;*/
}

.content p {
    margin-bottom: 2rem;
}

.content p:last-of-type {
    margin-bottom: 0;
}

.group {
    display: inline-block;
}

@font-face {
    font-family: "Golos Text";
    src: url("../font/GolosText-Regular.woff2") format("woff2"), url("../font/GolosText-Regular.woff") format("woff"), url("../font/GolosText-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Golos Text";
    src: url("../font/GolosText-DemiBold.woff2") format("woff2"), url("../font/GolosText-DemiBold.woff") format("woff"), url("../font/GolosText-DemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: "Golos Text VF";
    src: url("../font/GolosTextVF-Regular.woff2") format("woff2"), url("../font/GolosTextVF-Regular.woff") format("woff"), url("../font/GolosTextVF-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Golos Text";
    src: url("../font/GolosText-Medium.woff2") format("woff2"), url("../font/GolosText-Medium.woff") format("woff"), url("../font/GolosText-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Golos Text";
    src: url("../font/GolosText-Black.woff2") format("woff2"), url("../font/GolosText-Black.woff") format("woff"), url("../font/GolosText-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Enter Sansman";
    src: url("../font/EnterSansmanBold.woff2") format("woff2"), url("../font/EnterSansmanBold.woff") format("woff"), url("../font/EnterSansmanBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Enter Sansman";
    src: url("../font/EnterSansmanBoldItalic.woff2") format("woff2"), url("../font/EnterSansmanBoldItalic.woff") format("woff"), url("../font/EnterSansmanBoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    height: 100%;
}

img,
fieldset,
a img {
    border: none;
}

input[type=submit],
button {
    cursor: pointer;
    font-family: var(--font-primary);
    background: none;
    border: 0;
}

input[type=submit]:-moz-focus-inner,
button:-moz-focus-inner {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

input,
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--font-primary);
}

button:disabled {
	opacity: 0.3;
	background:#a8aab0;
	cursor: default;
}

button:disabled:hover:before {
	background:#a8aab0;
}

input:disabled {
	opacity: 0.3;
	cursor: default;
}

input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
a:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}

li {
    margin-bottom: 10px;
}

summary:marker {
    content: none;
}

summary:-webkit-details-marker {
    display: none;
}

.clearfix:before {
    content: " ";
    display: table;
}

.clearfix:after {
    content: " ";
    display: table;
    clear: both;
}

h1,
.display-1 {
    color: inhert;
}

h2,
.display-2 {
    color: inhert;
}

h3,
.display-3 {
    color: inhert;
}

h4,
.display-4 {
    color: inhert;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-right {
    text-align: right;
}

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

.text-underline {
    text-decoration: underline;
}

.filter {
    position: relative;
    margin-top: 5rem;
}

@media screen and (max-width: 767px) {
    .filter {
        margin-top: 3rem;
    }
}

.filter.open {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--brandbook-main);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.filter.open:before {
    content: "";
    width: 100%;
    height: 247px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.35)), to(rgba(102, 102, 102, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(102, 102, 102, 0) 100%);
    opacity: 0.2;
    position: absolute;
    bottom: 0;
    left: 0;
}

.filter__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    overflow: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 1rem;
}

.filter__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
    .filter__control {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
        gap: 1rem;
        margin-top: 2rem;
    }
}

.filter__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.filter__open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 2rem;
    width: 210px;
    position: relative;
    font-size: 1.125em;
    font-weight: 500;
    border-bottom: 1px solid var(--brandbook-main);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1023px) {
    .filter__open {
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    .filter__open {
        width: 100%;
    }
}

.filter__open:after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.125 1.55957L8 7.5L1.875 1.55957' stroke='%23464646' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat 0 0/contain;
    content: "";
    width: 16px;
    height: 10px;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.filter__open.open:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.filter__list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(auto, 210px));
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1200px) {
    .filter__list {
        gap: 1rem;
    }
}

@media screen and (max-width: 1023px) {
    .filter__list {
        grid-template-columns: repeat(3, minmax(auto, 210px));
    }
}

@media screen and (max-width: 767px) {
    .filter__list {
        grid-template-columns: 1fr;
    }
}

.filter__all {
    display: none;
    position: relative;
}

.filter__check {
    display: block;
    margin-bottom: 1.2rem;
}

.filter__head {
    padding: 1.5rem 2rem;
    gap: 2rem;
    position: relative;
    font-size: 1.125em;
    font-weight: 500;
    cursor: pointer;
}

.filter__head:after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.125 1.55957L8 7.5L1.875 1.55957' stroke='%23464646' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat 0 0/contain;
    content: "";
    width: 16px;
    height: 10px;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.filter__hidden {
    display: none;
}

.filter__hidden:checked + .filter__txt:after {
    opacity: 1;
    visibility: visible;
}

.filter__txt {
    font-size: 1.125em;
    font-weight: 500;
    text-wrap: balance;
    cursor: pointer;
    position: relative;
    padding-left: 4rem;
}

@media screen and (max-width: 1200px) {
    .filter__txt {
        padding-left: 3rem;
        font-size: 1em;
    }
}

.filter__txt:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    width: 18px;
    height: 18px;
}

.filter__txt:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Crect width='18' height='18' fill='%2373B61C' rx='4'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 6.75-4 4.5L6 9'/%3E%3C/svg%3E") no-repeat 0 0/contain;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.filter__submit {
    margin: 0 auto;
    width: 157px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

@media screen and (max-width: 1023px) {
    .filter__submit {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .filter__submit {
        position: relative;
    }
}

.filter__submit svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.filter__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 2rem;
    width: 100%;
    border-radius: 100px;
    background: var(--fon);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    height: 75px;
}

.filter__group {
    position: absolute;
    top: 70%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    background: var(--base-cristal-white);
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.filter__group_start {
    left: 1rem;
}

.filter__group_end {
    right: 1rem;
}

.line {
    background: #babdc2;
    position: relative;
    width: 100%;
    height: 12px;
    bottom: 0;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    position: absolute;
    background: var(--brandbook-main);
    height: 12px;
}

.ui-slider-horizontal {
    height: 12px !important;
    background: #BABDC2 !important;
}

.ui-slider-horizontal .ui-slider-handle {
    background: var(--base-rich-black);
    top: -3px;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    display: block;
    position: absolute;
}

.ui-slider-horizontal .ui-slider-handle:first-of-type {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
}

.ui-slider-horizontal .ui-slider-handle:last-of-type {
    -webkit-transform: translateX(-7px);
    -ms-transform: translateX(-7px);
    transform: translateX(-7px);
}

.heading {
    margin-top: 14.7rem;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 767px) {
    .heading {
        margin-top: 7rem;
    }
}

.heading__title {
    margin-top: 3.5rem;
    font-size: 4.5em;
    line-height: 1;
}

@media screen and (max-width: 1200px) {
    .heading__title {
        font-size: 3.75em;
    }
}

@media screen and (max-width: 767px) {
    .heading__title {
        font-size: 3em;
        margin-top: 2rem;
    }
}

.breadcrumb {
    opacity: 0.3;
}

.breadcrumb__link {
    font-size: 0.75em;
    color: var(--base-rich-black);
}

.breadcrumb__link:after {
    content: "/";
    margin: 0 1rem;
}

.breadcrumb__link:last-child:after {
    content: none;
}

.video-catalog {
    position: relative;
}

@media screen and (max-width: 900px) {
    .video-catalog__pic {
        width: 100%;
        height: 400px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .video-catalog__pic {
        height: 292px;
    }
}

.video-catalog__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.banner {
    position: relative;
}

.banner__video {
    width: 100%;
    min-height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1023px) {
    .banner__video {
        min-height: 860px;
    }
}

@media screen and (max-width: 767px) {
    .banner__video {
        min-height: 85vh;
    }
}

.banner__icon {
    margin: 10rem 0 12rem;
    position: relative;
    z-index: 3;
}

@media screen and (max-height: 800px) {
    .banner__icon {
        margin: 10rem 0 4rem;
    }
}

@media screen and (max-width: 1200px) {
    .banner__icon {
        margin: 7rem 0;
    }
}

@media screen and (max-width: 1023px) {
    .banner__icon {
        margin-bottom: clamp(7rem, 30vh, 240px);
    }
}

@media screen and (max-width: 767px) {
    .banner__icon {
        width: 100%;
        margin-top: 5rem;
        margin-bottom: clamp(2rem, 10vh, 240px);
    }
}

.banner__title {
    font-weight: 400;
    font-size: clamp(39px, 12vw, 190px);
    text-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
    line-height: 0.85;
    position: relative;
    z-index: 3;
}

.banner__title span,
.banner__title b {
    background: -webkit-gradient(linear, left top, right top, color-stop(63.02%, #fff), to(rgba(255, 255, 255, 0.26)));
    background: linear-gradient(90deg, #fff 63.02%, rgba(255, 255, 255, 0.26) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.banner__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 11rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
}

.banner .slick-arrow {
    position: absolute;
    bottom: 8rem;
    z-index: 3;
}

.banner .slick-prev {
    left: calc((100% - 1440px) / 2);
}

@media screen and (max-width: 1440px) {
    .banner .slick-prev {
        left: 2rem;
    }
}

.banner .slick-next {
    right: calc((100% - 1440px) / 2);
}

@media screen and (max-width: 1440px) {
    .banner .slick-next {
        right: 2rem;
    }
}

.banner .slick-slide {
    height: auto;
}

.banner .slick-dots {
    position: absolute;
    bottom: 9rem;
    width: 100%;
    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;
    gap: 2rem;
}

@media screen and (max-width: 767px) {
    .banner .slick-dots {
        display: none !important;
    }
}

.banner .slick-dots button {
    font-weight: 500;
    color: var(--base-cristal-white);
    font-size: 1em;
}

.banner .slick-dots li {
    position: relative;
}

.banner .slick-dots li.slick-active:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -40%;
    background: var(--base-cristal-white);
    border-radius: 100%;
    z-index: 2;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.busket {
    margin-top: 14.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    .busket {
        margin-top: 9rem;
    }
}

.busket__title {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 7rem;
    margin-top: 2rem;
}

@media screen and (max-width: 1023px) {
    .busket__title {
        font-size: 3.5625em;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 1023px) {
    .busket__title {
        font-size: 1.5em;
        margin-bottom: 3rem;
    }
}

.busket__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(120px, 6vw);
    position: relative;
}

@media screen and (max-width: 1200px) {
    .busket__row {
        display: block;
    }
}

.busket__row:before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--base-cristal-white);
    position: absolute;
    top: 110px;
}

@media screen and (max-width: 1200px) {
    .busket__row:before {
        top: 90px;
    }
}

.busket__left {
    width: 100%;
}
.busket__right {
	width: 100%;
}
@media screen and (max-width: 1200px) {
    .busket__left {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 767px) {
    .busket__left {
        margin-bottom: 7rem;
    }
}

.busket__count {
    font-size: 1.875em;
    font-weight: 500;
    margin-bottom: 10rem;
}

@media screen and (max-width: 1023px) {
    .busket__count {
        font-size: 1.5em;
        margin-bottom: 5rem;
    }
}

.busket__count span {
    color: var(--brandbook-more);
}

.busket__count b {
    font-size: 1.334375em;
    color: var(--brandbook-more);
    font-weight: 700;
}

@media screen and (max-width: 1500px) {
    .busket__count b {
        display: block;
    }
}

@media screen and (max-width: 1200px) {
    .busket__count b {
        display: inline-block;
    }
}

.busket__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem 3.5rem;
}

@media screen and (max-width: 1023px) {
    .busket__products {
        grid-template-columns: repeat(1, 1fr);
    }
}

.busket__products .prod-item {
    background: var(--base-cristal-white);
}

.busket__products .prod-item:hover .prod-item__numbers,
.busket__products .prod-item:hover .prod-item__remove {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 767px) {
    .busket__products .prod-item .prod-item__numbers,
    .busket__products .prod-item .prod-item__remove {
        opacity: 1;
        visibility: visible;
    }
}

.busket__line {
    margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
    .busket__line {
        margin-bottom: 4rem;
    }
}

.busket__caption {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
    .busket__caption {
        font-size: 1.625em;
        margin-bottom: 3rem;
    }
}

.busket__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3.5rem;
}

@media screen and (max-width: 767px) {
    .busket__list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.busket__field {
    border: 1px solid #d9e8e8;
    border-radius: 16px;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: var(--base-cristal-white);
    font-weight: 500;
    font-size: 1em;
}

.busket__field:-webkit-input-placeholder {
    color: #949393;
}

.busket__field:-moz-placeholder {
    color: #949393;
}

.busket__field:-ms-input-placeholder {
    color: #949393;
}

.busket__field:-ms-input-placeholder {
    color: #949393;
}

.busket__field:placeholder {
    color: #949393;
}

.busket__field_full {
    grid-column: 1/3;
}

@media screen and (max-width: 767px) {
    .busket__field_full {
        grid-column: auto;
    }
}

.busket__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
}

@media screen and (max-width: 767px) {
    .busket__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
}

.busket__hidden {
    display: none;
}

.busket__hidden:checked + .busket__box {
    border-color: var(--base-rich-black);
    color: var(--base-rich-black);
}

.busket__hidden:checked + .busket__box:after {
    opacity: 1;
    visibility: visible;
}

.busket__hidden:checked + .busket__txt:after {
    opacity: 1;
    visibility: visible;
}
.promo__hidden:checked + .promo__txt:after {
    opacity: 1;
    visibility: visible;
}

.subscription__hidden:checked + .subscription__txt:after {
    opacity: 1;
    visibility: visible;
}

.busket__box {
    border: 1px solid #bdbdbd;
    border-radius: 50px;
    padding: 1rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.125em;
    font-weight: 600;
    color: #bdbdbd;
    position: relative;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.busket__box:before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    width: 18px;
    height: 18px;
}

.busket__box:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Crect width='18' height='18' fill='%2373B61C' rx='4'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 6.75-4 4.5L6 9'/%3E%3C/svg%3E") no-repeat 0 0/contain;
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 4px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.busket__sign {
    padding-left: 2.4rem;
    margin-top: 2.5rem;
    font-weight: 500;
    color: #949393;
}

.busket__pic {
    margin-top: 1rem;
    margin-left: 2.4rem;
}

.busket__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5rem;
}

@media screen and (max-width: 767px) {
    .busket__control {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2rem;
    }
}

.busket__btn {
    background: var(--brandbook-main);
    font-size: 1.125em;
    color: var(--base-cristal-white);
    border: none;
    width: min(412px, 30vw);
    height: 72px;
}

@media screen and (max-width: 767px) {
    .busket__btn {
        width: 100%;
    }
}

.busket__txt {
    width: 160px;
    padding-left: 40px;
    position: relative;
    font-size: 0.75em;
    text-wrap: balance;
    cursor: pointer;
}

.busket__txt a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.busket__txt:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    width: 18px;
    height: 18px;
}

.busket__txt:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Crect width='18' height='18' fill='%2373B61C' rx='4'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 6.75-4 4.5L6 9'/%3E%3C/svg%3E") no-repeat 0 0/contain;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.subscription__check {
    text-align: right;
    padding:
            2rem 2rem;
    box-sizing: border-box;
    max-width: 490px;
    display: block;
    margin:0 0 0 auto;
}
@media screen and (max-width: 767px) {
    .subscription__check {
        max-width: 290px;
    }
}

.subscription__txt {
    position: relative;
    font-size: 0.75em;
    text-wrap:balance;
    cursor: pointer;
    width: 100%;
}

.subscription__txt a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.subscription__txt:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    width: 18px;
    height: 18px;
}

.subscription__txt:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Crect width='18' height='18' fill='%2373B61C' rx='4'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 6.75-4 4.5L6 9'/%3E%3C/svg%3E") no-repeat 0 0/contain;
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.subscription__hidden {
    display: none;
}

.promo {
    display: flex;
    gap: 2rem;
    margin-bottom: 9rem;
}

@media screen and (max-width: 767px) {
    .promo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

.promo__field {
    border: 1px solid #d9e8e8;
    border-radius: 16px;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: var(--base-cristal-white);
    font-weight: 500;
    font-size: 1em;
}

@media screen and (max-width: 767px) {
    .promo__field {
        width: 100%;
    }
}

.promo__field:-webkit-input-placeholder {
    color: #949393;
}

.promo__field:-moz-placeholder {
    color: #949393;
}

.promo__field:-ms-input-placeholder {
    color: #949393;
}

.promo__field:-ms-input-placeholder {
    color: #949393;
}

.promo__field:placeholder {
    color: #949393;
}

.promo__txt {
    width: 160px;
    padding-left: 40px;
    position: relative;
    font-size: 0.75em;
    text-wrap: balance;
    cursor: pointer;
}

.promo__txt a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.promo__txt:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    width: 18px;
    height: 18px;
}

.promo__txt:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Crect width='18' height='18' fill='%2373B61C' rx='4'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 6.75-4 4.5L6 9'/%3E%3C/svg%3E") no-repeat 0 0/contain;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.promo__btn {
    background: var(--brandbook-main);
    font-size: 1.125em;
    color: var(--base-cristal-white);
    border: none;
}

@media screen and (max-width: 767px) {
    .promo__btn {
        width: 100%;
    }
}

.promo__hidden {
    display: none;
}

.promo__hidden:checked + .busket__txt:after {
    opacity: 1;
    visibility: visible;
}

.busket-success {
    margin-top: 14.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    .busket-success {
        margin-top: 9rem;
    }
}

.busket-success__title {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 7rem;
    margin-top: 2rem;
}

@media screen and (max-width: 1023px) {
    .busket-success__title {
        font-size: 3.375em;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 767px) {
    .busket-success__title {
        font-size: 1.5em;
        margin-bottom: 3rem;
    }
}

.busket-success__txt {
    font-size: 1.875em;
    font-weight: 500;
    margin-bottom: 6rem;
}

@media screen and (max-width: 767px) {
    .busket-success__txt {
        font-size: 1.5em;
        margin-bottom: 4rem;
    }
}

.busket-success__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
}

@media screen and (max-width: 767px) {
    .busket-success__control {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        gap: 2rem;
    }
}

.busket-success__more {
    font-weight: 600;
    padding: 2.6rem 2rem;
    line-height: 1;
    text-align: center;
    font-size: 1.125em;
}

@media screen and (max-width: 767px) {
    .busket-success__more {
        width: 100%;
    }
}

.busket-success__cat {
    background: var(--brandbook-main);
    color: var(--base-cristal-white);
    border: none;
    font-weight: 600;
    line-height: 1;
    padding: 2.6rem 2.4rem;
    width: 185px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .busket-success__cat {
        width: 100%;
    }
}

.busket-success__pic {
    max-width: 100%;
}

.catalog-mini {
    position: relative;
    padding: 5rem 0;
}

.catalog-mini:before {
    background: url(../icon/wave-1.svg) no-repeat center/100%;
    content: "";
    width: 110vw;
    height: 65vw;
    position: absolute;
    top: 13%;
    left: 46%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media screen and (max-width: 1023px) {
    .catalog-mini:before {
        width: 150vw;
        height: 100vh;
    }
}

.catalog-mini__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1100px) {
    .catalog-mini__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1023px) {
    .catalog-mini__list {
        gap: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .catalog-mini__list {
        grid-template-columns: 1fr;
    }
}

.catalog-mini__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.catalog-mini__link:hover {
    background: var(--brandbook-main);
    color: var(--base-cristal-white);
}

.catalog-mini__link:hover .catalog-mini__icon {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(7%) hue-rotate(168deg) brightness(102%) contrast(106%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(7%) hue-rotate(168deg) brightness(102%) contrast(106%);
}

.catalog-mini__icon {
    width: 55px;
    height: 55px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.catalog-mini__title {
    font-weight: 700;
    font-size: 2.5em;
    line-height: 0.8;
    margin-bottom: 1rem;
    display: block;
}

@media screen and (max-width: 1023px) {
    .catalog-mini__title {
        font-size: 1.875em;
    }
}

.catalog-mini__sign {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.45;
    display: block;
}

.catalog {
    position: relative;
    padding: 5rem 0;
}

.catalog__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1200px) {
    .catalog__container {
        gap: 2rem;
    }
}

@media screen and (max-width: 1080px) {
    .catalog__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .catalog__container {
        grid-template-columns: 1fr;
    }
}

.catalog__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.catalog__icon {
    width: 55px;
    height: 55px;
    position: relative;
}

.catalog__icon img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .catalog__icon {
        width: 40px;
        height: 40px;
        top: -10px;
    }
}

.catalog__title {
    font-weight: 700;
    font-size: 2.5em;
    line-height: 0.8;
    margin-bottom: 1rem;
    display: block;
    height: 72px;
}

@media screen and (max-width: 1200px) {
    .catalog__title {
        font-size: 1.875em;
    }
}

@media screen and (max-width: 767px) {
    .catalog__title {
        font-size: 1.5em;
        height: auto;
    }
}

.catalog__sign {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.45;
    display: block;
}

.catalog__list {
    margin-top: 2.5rem;
}

.catalog__item {
    margin-bottom: 2.5rem;
}

.catalog__link {
    font-weight: 500;
    font-size: 1.125em;
}

.catalog__link:hover {
    color: var(--brandbook-main);
}

.places {
    background: linear-gradient(135deg, #9fa6b5 0%, #2a2e35 100%);
    padding: 5rem 0;
    position: relative;
}

@media screen and (max-width: 767px) {
    .places {
        padding-top: 2rem;
    }
}

.places:before {
    background: url(../icon/wave-4.svg) no-repeat center/100%;
    content: "";
    width: 100vw;
    height: 65vw;
    position: absolute;
    bottom: -35%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1023px) {
    .places:before {
        width: 150vw;
        height: 100vw;
    }
}

@media screen and (max-width: 767px) {
    .places:before {
        bottom: 30%;
        background-size: 150%;
        height: 100%;
        background-position: 100%;
    }
}

.places__inner {
    position: relative;
    z-index: 2;
}

.places__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 5rem;
}

@media screen and (max-width: 1100px) {
    .places__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1023px) {
    .places__top {
        gap: 3rem;
    }
}

.places__txt {
    font: italic 700 min(238px, 15vw)/0.8 var(--font-secondary);
    -webkit-text-stroke: 2px #d3caca;
    color: transparent;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (max-width: 1023px) {
    .places__txt {
        font-size: 20vw;
    }
}

@media screen and (max-width: 767px) {
    .places__txt {
        padding-top: 60px;
    }
}

.places__txt:before {
    font: 300 min(24px, 1.5vw) var(--font-primary);
    content: attr(data-sign);
    color: #d3caca;
    position: absolute;
    top: 0;
    left: 39%;
    word-spacing: 10px;
}

@media screen and (max-width: 1100px) {
    .places__txt:before {
        left: 28%;
    }
}

@media screen and (max-width: 1023px) {
    .places__txt:before {
        font-size: 16px;
        left: 38%;
    }
}

@media screen and (max-width: 767px) {
    .places__txt:before {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        width: 165px;
    }
}

.places__vnts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 7rem;
}

@media screen and (max-width: 1100px) {
    .places__vnts {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .places__vnts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.places__vnt {
    text-align: center;
}

.places__vnt:hover .places__icon {
    -webkit-filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
    filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
}

.places__vnt:hover .places__sign {
    color: var(--brandbook-main);
}

.places__icon {
    width: 41px;
    height: 41px;
}

.places__sign {
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.125em;
    color: #d3caca;
}

@media screen and (max-width: 1200px) {
    .places__sign {
        font-size: 1em;
    }
}

.places__caption {
    color: var(--base-cristal-white);
    font-size: 2.5em;
    font-weight: 700;
    line-height: 0.8;
    margin: 3.5rem 0;
}

@media screen and (max-width: 1023px) {
    .places__caption {
        font-size: 1.875em;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .places__caption {
        font-size: 1.625em;
    }
}

.places__shops {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

.places__link {
    position: relative;
    width: calc(25% - 27px);
    padding-bottom: 15px;
}

@media screen and (max-width: 1023px) {
    .places__link {
        width: calc(50% - 19px);
    }
}

@media screen and (max-width: 767px) {
    .places__link {
        width: 100%;
    }
}

.places__link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 86px;
    height: 15px;
    background: url(../icon/icon-stars.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.places__link svg {
    width: 100%;
}

.places__link:hover .oz-bg {
    fill: #2358f3;
}

.places__link:hover .oz-txt,
.places__link:hover .wb-text,
.places__link:hover .ya-over,
.places__link:hover .mm-txt {
    fill: var(--base-cristal-white);
}

.places__link:hover .wb-bg {
    fill: url(#wb-hover);
}

.places__link:hover .ya-bg {
    fill: #fa3f1d;
}

.places__link:hover .ya-letter {
    fill: #fa3f1d;
}

.places__link:hover .mm-bg {
    fill: #9553d1;
}

.footer {
    background: var(--base-rich-black);
    padding: 14rem 0 9rem;
}

@media screen and (max-width: 1023px) {
    .footer {
        padding: 5rem 0;
        position: relative;
        z-index: 3;
    }
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
}

@media screen and (max-width: 1023px) {
    .footer__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(215px, 10vw);
}

@media screen and (max-width: 767px) {
    .footer__nav {
        display: block;
    }
}

.footer__home {
    margin-top: -2rem;
}

@media screen and (max-width: 1023px) {
    .footer__home {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 767px) {
    .footer__home {
        margin-bottom: 0;
    }
}

.footer__list {
    position: relative;
}

@media screen and (max-width: 767px) {
    .footer__list {
        margin-top: 7rem;
    }
}

.footer__list:before {
    content: attr(data-title);
    color: #4E5661;
    position: absolute;
    top: -45px;
    left: 0;
    font-weight: 500;
    font-size: 0.875em;
}

@media screen and (max-width: 767px) {
    .footer__list:before {
        top: -35px;
    }
}

.footer__item {
    margin-bottom: 2.5rem;
}

.footer__link {
    color: var(--base-cristal-white);
    font-weight: 500;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.footer__link:hover {
    color: var(--brandbook-main);
}

.footer__contacts {
    position: relative;
    color: var(--base-cristal-white);
    max-width: 305px;
}

@media screen and (max-width: 767px) {
    .footer__contacts {
        margin-left: 10vw;
        margin-top: 30px;
    }
}

.footer__caption {
    color: #4E5661;
    position: absolute;
    top: -45px;
    left: 0;
    font-weight: 500;
    font-size: 0.875em;
}

@media screen and (max-width: 767px) {
    .footer__caption {
        left: -30px;
        top: -35px;
    }
}

.footer__sign {
    font-size: 0.75em;
    margin-bottom: 1rem;
}

.footer__phone {
    font-size: 1.75em;
    font-weight: 600;
    position: relative;
    gap: 1rem;
    margin-bottom: 2.5rem;
    display: block;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.footer__phone svg {
    width: 26px;
    height: 26px;
    color: #4E5661;
    position: absolute;
    left: -35px;
    top: 5px;
}

.footer__phone:hover {
    color: var(--brandbook-main);
}

.footer__address {
    font-size: 0.875em;
    font-weight: 600;
    position: relative;
    gap: 1rem;
    margin-bottom: 2.5rem;
    display: block;
}

.footer__address svg {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 14px;
    height: 16px;
    color: #4E5661;
}

@media screen and (max-width: 767px) {
    .footer__address svg {
        width: 18px;
        height: 18px;
    }
}

.wrapper__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 1.4rem;
}

.footer__soc-link {
    border-radius: 50px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: linear-gradient(107.01deg, rgba(0, 0, 0, 0.41) 30.416%, rgba(0, 0, 0, 0.29) 101.259%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__soc-link:hover {
    background: var(--buttons-white);
}

.footer__icon {
    width: 18px;
    height: 18px;
}

.footer__soc-link:hover .footer__icon.dzen path {
    fill: #000;
}

.copy {
    background: var(--base-rich-black);
    padding-bottom: 4.5rem;
    color: #4E5661;
    font-size: 0.875em;
    font-weight: 500;
}

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

@media screen and (max-width: 767px) {
    .copy__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 3rem;
    }
}

.copy__link img {
    margin-left: 1rem;
}

@media screen and (max-width: 767px) {
    .copy__pic {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
    }
}

.header {
    position: fixed;
    width: 100%;
    z-index: 9;
    top: 0;
}

@media screen and (max-width: 767px) {
    .header {
        padding: 2rem 0;
    }
}

.header:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(56px);
    backdrop-filter: blur(56px);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(142deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0.8;
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .header__inner {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 1023px) {
    .header__home {
        position: absolute;
        top: 10px;
        left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .header__home {
        left: clamp(30px, 50vw, 200px);
        top: 0;
    }
}

@media screen and (max-width: 1400px) {
    .header__pic {
        width: 180px;
    }
}

@media screen and (max-width: 1023px) {
    .header__pic {
        width: 135px;
    }
}

@media screen and (max-width: 767px) {
    .header__pic {
        width: 85px;
    }
}

.header__info {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (max-width: 767px) {
    .header__info {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }
}

.header__top {
    padding-block: 1.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

@media screen and (max-width: 1023px) {
    .header__top {
        margin-left: 120px;
        padding-left: 30px;
    }
}

@media screen and (max-width: 767px) {
    .header__top {
        display: none;
    }
}

.header__top:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background: var(--base-cristal-white);
    opacity: 0.2;
}

.header__search {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1023px) {
    .header__search {
        width: 33%;
    }
}

.header__search svg {
    width: 15px;
    height: 15px;
    color: var(--base-cristal-white);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header__favourites svg,
.header__lk svg {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.header__favourites svg:hover,
.header__lk svg:hover {
    color: var(--brandbook-main);
}

.header__field {
    font-size: 1em;
    font-weight: 500;
    background: none;
    margin-left: 1rem;
    color: var(--base-cristal-white);
}

.header__field:-webkit-input-placeholder {
    color: var(--base-cristal-white);
}

.header__field:-moz-placeholder {
    color: var(--base-cristal-white);
}

.header__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.header__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.header__field:placeholder {
    color: var(--base-cristal-white);
}

.header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 5rem;
}

@media screen and (max-width: 1023px) {
    .header__contacts {
        gap: 1rem;
    }
}

.header__city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header__city svg {
    width: 18px;
    height: 18px;
    color: var(--base-cristal-white);
    opacity: 0.3;
}

.header__city-select {
    font: 500 1em var(--font-primary);
    background: none;
    border: none;
    color: var(--base-cristal-white);
}

.header__phone {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: var(--base-cristal-white);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.header__phone:hover {
    color: var(--brandbook-main);
}

.header__phone svg {
    width: 18px;
    height: 18px;
    opacity: 0.3;
}

.header__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 3rem;
    padding-right: 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
    .header__bottom {
        padding-right: 0;
    }
}

@media screen and (max-width: 1100px) {
    .header__bottom {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

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

.header__control svg {
    color: var(--base-cristal-white);
    width: 18px;
    height: 18px;
}

.header__basket.elms {
    position: relative;
}

.header__basket.elms:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    right: -2px;
    border-radius: 100%;
    z-index: 1;
    background: var(--brandbook-more);
}

.header__basket svg {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.header__basket svg:hover {
    color: var(--brandbook-main);
}

.header__burger {
    display: none;
}

@media screen and (max-width: 767px) {
    .header__burger {
        display: block;
    }
}

@media screen and (max-width: 700px) {
    .header__lk {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .nav {
        display: none;
    }
}

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

.nav__item {
    margin-bottom: 0;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .nav__item {
        display: none;
    }
}

.nav__item:hover .nav__dropdown {
    display: block;
}

@media screen and (max-width: 1100px) {
    .nav__item:nth-of-type(-n + 4) {
        display: block;
    }
}

.nav__link {
    font-size: 0.9375em;
    text-transform: uppercase;
    color: var(--base-cristal-white);
    font-weight: 600;
    padding: 1.75rem 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
    display: inline-block;
}

@media screen and (max-width: 1500px) {
    .nav__link {
        padding: 1.75rem;
    }
}

@media screen and (max-width: 1200px) {
    .nav__link {
        padding: 1.75rem 0.8rem;
    }
}

.nav__link:hover {
    background: rgba(2, 13, 30, 0.2);
}

.nav__dropdown {
    position: fixed;
    top: 13rem;
    left: 0;
    width: 100vw;
    background: var(--brandbook-main);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(56px);
    backdrop-filter: blur(56px);
    z-index: -2;
    padding-block: 3.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

.nav__drop-box {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7rem;
    width: fit-content;
}

.nav__level {
    display: flex;
    gap: 8rem;
    width: 100%;
}

.nav__banner {
    width: 334px;
    height: 190px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.nav__level-link {
    font-size: 1em;
    font-weight: 500;
    color: var(--base-cristal-white);
    display: inline-block;
    border-bottom: 1px solid transparent;
    line-height: 1.2;
    text-transform: uppercase;
}

.nav__level-link:hover {
    border-bottom-color: var(--base-cristal-white);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(56px);
    backdrop-filter: blur(56px);
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(142deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
    width: calc(100% - 3rem);
    z-index: 10;
    max-height: 100%;
    overflow: auto;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.mobile-nav.open {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.mobile-nav__search {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    gap: 1rem;
}

.mobile-nav__search svg {
    width: 15px;
    height: 15px;
    color: var(--base-cristal-white);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.mobile-nav__field {
    font-size: 1em;
    font-weight: 500;
    background: none;
    color: var(--base-cristal-white);
}

.mobile-nav__field:-webkit-input-placeholder {
    color: var(--base-cristal-white);
}

.mobile-nav__field:-moz-placeholder {
    color: var(--base-cristal-white);
}

.mobile-nav__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.mobile-nav__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.mobile-nav__field:placeholder {
    color: var(--base-cristal-white);
}

.mobile-nav__list {
    margin: 1rem 0;
}

.mobile-nav__item {
    margin: 0 2rem;
}

.mobile-nav__link {
    margin-bottom: 0;
    font-size: 0.9375em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--base-cristal-white);
    padding: 1.9rem 1.4rem;
    line-height: 1;
    display: inline-block;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.mobile-nav__link.open {
    background: rgba(2, 13, 30, 0.5);
}

.mobile-nav__dropdown {
    -webkit-backdrop-filter: blur(56px);
    backdrop-filter: blur(56px);
    background: var(--brandbook-main);
    padding: 3rem 2.6rem;
    margin: 0 -2rem;
    display: none;
}

.mobile-nav__level-item {
    margin-bottom: 2rem;
}

.mobile-nav__level-item:last-of-type {
    margin-bottom: 0;
}

.mobile-nav__level-link {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.5;
    color: var(--base-cristal-white);
}

.mobile-nav__level-link.active {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: revert;
    text-decoration-skip-ink: revert;
}

.mobile-nav__lk {
    padding: 3rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.875em;
    font-weight: 500;
    color: var(--base-cristal-white);
}

.mobile-nav__lk svg {
    width: 18px;
    height: 18px;
    color: var(--base-cristal-white);
}

.mobile-nav__city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 3rem 2.4rem;
}

.mobile-nav__city svg {
    width: 18px;
    height: 18px;
    color: var(--base-cristal-white);
    opacity: 0.3;
}

.mobile-nav__city-select {
    font: 500 1em var(--font-primary);
    background: none;
    border: none;
    color: var(--base-cristal-white);
}

.mobile-nav__phone {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: var(--base-cristal-white);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    margin: 3rem 0;
}

.mobile-nav__phone:hover {
    color: var(--brandbook-main);
}

.mobile-nav__phone svg {
    width: 18px;
    height: 18px;
    opacity: 0.3;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-inline: 2.4rem;
    gap: 1.4rem;
    margin-bottom: 3rem;
}

.mobile-nav__soc-link {
    border-radius: 50px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: linear-gradient(107.01deg, rgba(0, 0, 0, 0.41) 30.416%, rgba(0, 0, 0, 0.29) 101.259%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav__soc-link:hover {
    background: var(--buttons-white);
}

.mobile-nav__icon {
    width: 18px;
    height: 18px;
}

.mobile-nav__close {
    position: absolute;
    top: 2.3rem;
    right: 1.7rem;
}

.poster-type-one {
    position: relative;
}

.poster-type-one__pic {
    position: relative;
    z-index: -1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 395px;
}

@media screen and (max-width: 767px) {
    .poster-type-one__pic {
        height: 480px;
    }
}

.poster-type-one__outer-pic {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    bottom: 0;
    right: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
}

@media screen and (max-width: 1023px) {
    .poster-type-one__outer-pic {
        width: 130%;
        -o-object-position: bottom right;
        object-position: bottom right;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-one__outer-pic {
        width: 200%;
        -o-object-position: 100px bottom;
        object-position: 100px bottom;
    }
}

.poster-type-one__content {
    position: absolute;
    top: 6rem;
    left: max(4rem, 15.125vw);
    z-index: 4;
}

@media screen and (max-width: 1023px) {
    .poster-type-one__content {
        left: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-one__content {
        left: 2rem;
        top: 3.5rem;
        width: calc(100% - 4rem);
    }
}

.poster-type-one__sign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.6rem;
}

.poster-type-one__sign span {
    font-weight: 500;
    font-size: 1.125em;
}

.poster-type-one__sign_white {
    color: var(--base-cristal-white);
}

.poster-type-one__icon {
    width: 24px;
    height: 24px;
}

.poster-type-one__title {
    font-size: 2.5em;
    color: var(--base-cristal-white);
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .poster-type-one__title {
        font-size: 1.875em;
    }
}

.poster-type-one__title i {
    font-family: var(--font-secondary);
}

.poster-type-one__title span {
    font-weight: 700;
    display: block;
}

@media screen and (max-width: 767px) {
    .poster-type-one__title span {
        font-size: 1.125em;
    }
}

.poster-type-one__btn {
    margin-top: max(2rem, 4.5vw);
}

.poster-type-two {
    position: relative;
    box-sizing: border-box;
    padding: 12rem 0;
    background-image: url('../img/poster-5.webp');
    background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 1023px) {
    .poster-type-two {
        background-position: 70% top;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-two {
        background-position: 75% top;
    }
}

.poster-type-two:before {
    background: url(../icon/wave-2.svg) no-repeat center/100%;
    content: "";
    width: 100vw;
    height: 65vw;
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
}

.poster-type-two__inner {
}

.poster-type-two__title {
    margin: 3rem 0;
    font-size: 4.375em;
    line-height: 1;
    max-width: 650px;
    width: 100%;
    text-wrap: balance;
}

@media screen and (max-width: 1100px) {
    .poster-type-two__title {
        font-size: 3.125em;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-two__title {
        font-size: 2.5em;
    }
}

.poster-type-two__icon {
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .poster-type-two__icon {
        width: 100%;
    }
}

.poster-type-two__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 4rem;
    z-index: 2;
}

@media screen and (max-width: 1023px) {
    .poster-type-two__bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.poster-type-two__pic {
    margin-top: -12rem;
}

@media screen and (max-width: 1400px) {
    .poster-type-two__pic {
        width: 50%;
    }
}

@media screen and (max-width: 1023px) {
    .poster-type-two__pic {
        width: 70%;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-two__pic {
        width: 100%;
    }
}

.poster-type-two__subscribe {
    max-width: 605px;
    width: 50%;
}

@media screen and (max-width: 1023px) {
    .poster-type-two__subscribe {
        width: 100%;
        margin-right: 0;
        margin-left: auto;
    }
}

.poster-type-two__action {
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

@media screen and (max-width: 767px) {
    .poster-type-two__action {
        padding: 2rem 1.1rem;
        margin-bottom: 70px;
    }
}

.poster-type-two__field {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1;
    padding-left: 7rem;
    color: var(--base-cristal-white);
    background: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.poster-type-two__field:-webkit-input-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-two__field:-moz-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-two__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-two__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-two__field:placeholder {
    color: var(--base-cristal-white);
}

.poster-type-two__ic {
    position: absolute;
    left: 4rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--base-cristal-white);
}

.poster-type-two__submit {
    border-radius: 50px;
    background: rgb(130, 211, 26);
    padding: 1.6rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 1.125em;
    color: var(--base-cristal-white);
    line-height: 1;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .poster-type-two__submit {
        position: absolute;
        bottom: -60px;
        right: 0;
    }
}

.poster-type-two__submit:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#73b61c), to(#558813));
    background: linear-gradient(360deg, #73b61c 0%, #558813 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.poster-type-two__submit:hover:before {
    opacity: 1;
    visibility: visible;
}

.poster-type-two__txt {
    margin-top: 3.5rem;
    font-size: 1.875em;
    text-align: right;
    font-weight: 500;
}

.poster-type-two__txt b {
    font-style: italic;
    font-family: var(--font-secondary);
}

.poster-type-three {
    position: relative;
    z-index: 2;
}

.poster-type-three__inner {
    position: relative;
}

@media screen and (max-width: 1023px) {
    .poster-type-three__inner {
        padding: 0 1.6rem;
    }
}

.poster-type-three__pic {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 395px;
    border-radius: 8px;
}

@media screen and (max-width: 1023px) {
    .poster-type-three__pic {
        height: 420px;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-three__pic {
        height: 395px;
    }
}

.poster-type-three__content {
    position: absolute;
    top: 6rem;
    left: max(4rem, 6vw);
    z-index: 4;
}

@media screen and (max-width: 767px) {
    .poster-type-three__content {
        top: 4rem;
        left: 4rem;
        width: calc(100% - 8rem);
    }
}

.poster-type-three__sign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.8rem;
}

.poster-type-three__sign span {
    font-weight: 500;
    font-size: 1.125em;
}

.poster-type-three__icon {
    width: 24px;
    height: 24px;
}

.poster-type-three__title {
    font-size: 2.5em;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .poster-type-three__title {
        font-size: 1.875em;
    }
}

.poster-type-three__title i {
    font-family: var(--font-secondary);
}

.poster-type-three__title span {
    font-weight: 700;
    display: block;
}

@media screen and (max-width: 767px) {
    .poster-type-three__title span {
        font-size: 1.1875em;
    }
}

.poster-type-three__btn {
    margin-top: max(2rem, 4.5vw);
}

@media screen and (max-width: 767px) {
    .poster-type-three__btn {
        border-color: var(--base-cristal-white);
        color: var(--base-cristal-white);
    }
}

.poster-type-three__btn_right {
    position: absolute;
    right: 9rem;
    bottom: 5rem;
    margin-top: 0;
}

@media screen and (max-width: 1023px) {
    .poster-type-three__btn_right {
        right: auto;
        left: 3.2rem;
    }
}

.poster-type-four {
    padding: 5rem 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 20vh;
}

.poster-type-four__inner {
    position: relative;
    z-index: 2;
}

.poster-type-four__title {
    font-size: 4.375em;
    line-height: 1;
    margin-bottom: 3rem;
}

@media screen and (max-width: 1023px) {
    .poster-type-four__title {
        font-size: 3.4375em;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-four__title {
        font-size: 2.5em;
    }
}

.poster-type-four__sign {
    font-size: 1.875em;
    font-weight: 500;
    margin-bottom: 4.5rem;
}

@media screen and (max-width: 767px) {
    .poster-type-four__sign {
        font-size: 1.5em;
    }
}

.poster-type-five {
    background: url(../img/poster-3.png) no-repeat top;
    padding: 5rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.poster-type-five:before {
    background: url(../icon/wave-2.svg) no-repeat center/100%;
    content: "";
    width: 100vw;
    height: 65vw;
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
}

.poster-type-five__inner {
    position: relative;
    z-index: 2;
}

.poster-type-five__title {
    font-size: 4.375em;
    line-height: 1;
    margin-bottom: 3rem;
}

@media screen and (max-width: 900px) {
    .poster-type-five__title {
        font-size: 3.4375em;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-five__title {
        font-size: 2.5em;
    }
}

.poster-type-five__sign {
    font-size: 1.875em;
    font-weight: 500;
    margin-bottom: 4.5rem;
}

@media screen and (max-width: 900px) {
    .poster-type-five__sign {
        font-size: 1.625em;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-five__sign {
        font-size: 1.5em;
    }
}

.poster-type-five__subscribe {
    max-width: 605px;
    width: 50%;
    margin-right: 0;
    margin-left: auto;
    margin-top: 5rem;
}

@media screen and (max-width: 900px) {
    .poster-type-five__subscribe {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .poster-type-five__subscribe {
        width: 100%;
        margin-top: 8rem;
    }
}

.poster-type-five__action {
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

@media screen and (max-width: 767px) {
    .poster-type-five__action {
        padding: 2rem 1.1rem;
        margin-bottom: 70px;
    }
}

.poster-type-five__field {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1;
    padding-left: 7rem;
    color: var(--base-cristal-white);
    background: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.poster-type-five__field:-webkit-input-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-five__field:-moz-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-five__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-five__field:-ms-input-placeholder {
    color: var(--base-cristal-white);
}

.poster-type-five__field:placeholder {
    color: var(--base-cristal-white);
}

.poster-type-five__ic {
    position: absolute;
    left: 4rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--base-cristal-white);
}

.poster-type-five__submit {
    border-radius: 50px;
    background: rgb(130, 211, 26);
    padding: 1.6rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 1.125em;
    color: var(--base-cristal-white);
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .poster-type-five__submit {
        position: absolute;
        bottom: -60px;
        right: 0;
    }
}

.poster-type-five__txt {
    margin-top: 3.5rem;
    font-size: 1.875em;
    text-align: right;
    font-weight: 500;
}

.poster-type-five__txt b {
    font-style: italic;
    font-family: var(--font-secondary);
}

.poster-prod {
    position: relative;
    margin-bottom: 3.5rem;
}

.poster-prod__pic {
    width: 100%;
    vertical-align: middle;
    height: 425px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .poster-prod__pic {
        -o-object-position: -10vw;
        object-position: -10vw;
        height: auto;
        -o-object-position: 0;
        object-position: 0;
    }
}

.poster-prod__content {
    position: absolute;
    top: 4rem;
    left: clamp(2rem, 10vw, 30rem);
}

@media screen and (max-width: 900px) {
    .poster-prod__content {
        left: 4rem;
    }
}

@media screen and (max-width: 767px) {
    .poster-prod__content {
        width: calc(100% - 3.2rem);
        left: 1.6rem;
    }
}

.poster-prod__content_mod {
    width: 70vw;
    top: 10rem;
}

@media screen and (max-width: 1200px) {
    .poster-prod__content_mod {
        width: 80vw;
    }
}

@media screen and (max-width: 900px) {
    .poster-prod__content_mod {
        width: 90vw;
    }
}

.poster-prod__title {
    font-size: 4.375em;
    line-height: 1;
    margin-bottom: 2rem;
}

@media screen and (max-width: 900px) {
    .poster-prod__title {
        font-size: 3.4375em;
    }
}

@media screen and (max-width: 767px) {
    .poster-prod__title {
        font-size: min(40px, 12vw);
    }
}

.poster-prod__title_right {
    position: absolute;
    right: 0;
    text-align: right;
}

@media screen and (max-width: 900px) {
    .poster-prod__title_right {
        width: 40%;
        font-size: 3.125em;
    }
}

@media screen and (max-width: 767px) {
    .poster-prod__title_right {
        right: 1.6rem;
        width: 70%;
        font-size: min(40px, 12vw);
    }
}

.poster-prod__title b {
    font-style: italic;
    font-family: var(--font-secondary);
}

.poster-prod__sign {
    font-size: 1.875em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media screen and (max-width: 900px) {
    .poster-prod__sign {
        font-size: 1.875em;
    }
}

@media screen and (max-width: 767px) {
    .poster-prod__sign {
        font-size: min(30px, 6vw);
    }
}

.poster-prod__sign b {
    font-style: italic;
    font-family: var(--font-secondary);
}

@media screen and (max-width: 767px) {
    .poster-prod__list {
        display: none;
    }
}

.poster-prod__list li {
    background: url(../icon/icon-check.svg) no-repeat left/16px;
    padding-left: 3.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.125em;
    line-height: 1.5;
}

.catalog-type {
    position: relative;
    z-index: 3;
}

.catalog-type__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3.5rem;
    height: 711px;
    margin: 4rem 0;
}

@media screen and (max-width: 1500px) {
    .catalog-type__list {
        -webkit-transform: scale(0.9) translateX(-5%);
        -ms-transform: scale(0.9) translateX(-5%);
        transform: scale(0.9) translateX(-5%);
        margin: 0;
    }
}

@media screen and (max-width: 1360px) {
    .catalog-type__list {
        -webkit-transform: scale(0.8) translateX(-13%);
        -ms-transform: scale(0.8) translateX(-13%);
        transform: scale(0.8) translateX(-13%);
    }
}

@media screen and (max-width: 1100px) {
    .catalog-type__list {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: auto;
        margin: 4rem 0;
    }
}

.catalog-type__item {
    position: relative;
    max-height: 100%;
}

@media screen and (max-width: 767px) {
    .catalog-type__item {
        width: 100%;
    }
}

.catalog-type__item:hover .catalog-type__title {
    opacity: 1;
}

.catalog-type__item img {
    transition: all .3s ease-in-out;
    transform: scale(1.02);
}

.catalog-type__item:hover img {
    transform: scale(1.1);
}

.catalog-type__pic {
    border-radius: 8px;
}

@media screen and (max-width: 767px) {
    .catalog-type__pic {
        width: 100%;
    }
}

.catalog-type__title {
    position: absolute;
    bottom: 0;
    font-weight: 400;
    font-size: max(68px, 90%);
    line-height: 0.7;
    z-index: 3;
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.34)));
    background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.34));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-transform: uppercase;
    left: 0;
    padding: 3.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    -webkit-transition: 0.75s ease;
    transition: 0.75s ease;
}

@media screen and (max-width: 767px) {
    .catalog-type__title {
        font-size: 1.75em;
        padding: 2rem;
    }
}

.catalog-type__title b {
    text-transform: lowercase;
    display: block;
    font-size: 1.178125em;
}

.banner-sales {
    margin-top: 12.7rem;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 767px) {
    .banner-sales {
        margin-top: 6.5rem;
    }
}

.banner-sales__slide {
    position: relative;
}

.banner-sales__inner {
    position: absolute;
    top: 0;
    left: calc((100% - 1400px) / 2);
    padding-top: 3rem;
}

@media screen and (max-width: 1500px) {
    .banner-sales__inner {
        left: 6rem;
    }
}

@media screen and (max-width: 767px) {
    .banner-sales__inner {
        left: 1.6rem;
        width: calc(100% - 3.2rem);
    }
}

.banner-sales__title {
    font-size: 4.375em;
    line-height: 1;
    margin-bottom: 3.5rem;
}

@media screen and (max-width: 900px) {
    .banner-sales__title {
        font-size: 3.4375em;
    }
}

@media screen and (max-width: 767px) {
    .banner-sales__title {
        font-size: 2.5em;
        margin-bottom: 3rem;
    }
}

.banner-sales__sign {
    font-size: 1.875em;
    font-weight: 500;
    max-width: 750px;
}

@media screen and (max-width: 900px) {
    .banner-sales__sign {
        font-size: 1.625em;
    }
}

@media screen and (max-width: 767px) {
    .banner-sales__sign {
        font-size: 1.25em;
    }
}

.banner-sales__sign b {
    font-style: italic;
    font-family: var(--font-secondary);
}

.banner-sales__sign span {
    display: inline-block;
    font-weight: 700;
    color: var(--brandbook-main);
    padding: 0 0.5rem;
    background: var(--base-rich-black);
}

/* @media screen and (max-width: 900px) {
    .banner-sales__pic {
        height: 220px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
}

@media screen and (max-width: 767px) {
    .banner-sales__pic {
        height: 291px;
        -o-object-position: right;
        object-position: right;
    }
} */

.banner-sales__pic {
        width: 100%;
        max-width: 1920px;
    }

.banner-sales .slick-slide {
    height: auto;
}

.banner-sales .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

.banner-sales .slick-prev {
    display: none !important;
}

.banner-sales .slick-next {
    right: calc((100% - 1440px) / 2);
}

.banner-sales .slick-dots {
    position: absolute;
    bottom: 3.5rem;
    width: 100%;
    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;
    gap: 2rem;
}

@media screen and (max-width: 900px) {
    .banner-sales .slick-dots {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .banner-sales .slick-dots {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        bottom: 2rem;
    }
}

.banner-sales .slick-dots button {
    font-weight: 500;
    color: var(--base-cristal-white);
    font-size: 1em;
}

.banner-sales .slick-dots li {
    position: relative;
}

.banner-sales .slick-dots li.slick-active:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -40%;
    background: var(--base-cristal-white);
    border-radius: 100%;
    z-index: 2;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.banner-sales + .heading {
    margin-top: 3.5rem;
}

.products-list {
    padding-block: 6rem;
    position: relative;
}

.products-list__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
}

@media screen and (max-width: 1200px) {
    .products-list__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .products-list__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .products-list__list {
        grid-template-columns: 1fr;
    }
}

.prod-item {
    border-radius: 8px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    position: relative;
}

@media screen and (max-width: 767px) {
    .prod-item {
        -webkit-box-shadow: 0px 0px 30px 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 30px 6px rgba(0, 0, 0, 0.2);
        background: var(--base-cristal-white);
    }
}

.prod-item:hover {
    -webkit-box-shadow: 0px 0px 30px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 6px rgba(0, 0, 0, 0.2);
    background: var(--base-cristal-white);
}

.prod-item:hover .products-list__control {
    opacity: 1;
}

.prod-item__top {
    position: relative;
	background: #fff;
	border-radius: 8px;
}

.prod-item__pic {
    width: 100%;
    border-radius: 8px;
    vertical-align: middle;
}

.prod-item__control {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

@media screen and (max-width: 767px) {
    .prod-item__control {
        opacity: 1;
    }
}

.prod-item__btn {
    padding: 1.4rem;
    border-radius: 50px;
    background: rgb(130, 211, 26);
    color: var(--base-cristal-white);
}

.prod-item__btn svg {
    width: 18px;
    height: 18px;
}

.prod-item__favorite {
    color: #E2E9F1;
}

.prod-item__favorite svg {
    width: 24px;
    height: 24px;
}

.prod-item__bottom {
    padding: 0.8rem 1.6rem 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.prod-item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.prod-item__state {
    font-size: 0.75em;
    text-transform: lowercase;
}

.prod-item__stars svg {
    width: 10px;
    height: 10px;
    fill: #82D31A;
}

.product__stars svg {
    width: 15px;
    height: 15px;
    fill: #020D1E;
}

.prod-item__state_green {
    color: #82D31A;
}

.prod-item__state_red {
    color: var(--brandbook-more);
}

.prod-item__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

.prod-item__title {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.4;
}

.prod-item__prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.prod-item__old {
    font-size: 0.875em;
    color: #989090;
}

.prod-item__old:after {
    content: attr(data-sale);
    color: #FF0000;
    padding-left: 5px;
}

.prod-item__new {
    font-weight: 500;
    font-size: 1.25em;
}

.prod-item__numbers {
    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;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 767px) {
    .prod-item__numbers {
        height: auto;
        bottom: 0;
        top: auto;
        padding-block: 1rem;
    }
}

.prod-item__bt {
    background: var(--brandbook-main);
    width: 62px;
    height: 64px;
    border-radius: 100%;
    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;
    font-weight: 700;
    font-size: 1.25em;
    text-align: center;
    color: var(--base-cristal-white);
    line-height: 1;
    z-index: 1;
    position: relative;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .prod-item__bt {
        height: 52px;
        width: 52px;
    }
}

.prod-item__bt:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#73b61c), to(#558813));
    background: linear-gradient(360deg, #73b61c 0%, #558813 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.prod-item__bt:hover:before {
    opacity: 1;
    visibility: visible;
}

.prod-item__numb {
    text-align: center;
    width: 45px;
    font-size: 2em;
    padding: 0;
    background: none;
    -moz-appearance: textfield;
}

.prod-item__numb:-webkit-outer-spin-button,
.prod-item__numb:-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.prod-item__remove {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.125em;
    font-weight: 500;
    color: var(--brandbook-main);
    opacity: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    position: absolute;
    left: 0;
    bottom: -4rem;
}

.product {
    position: relative;
}

.product .heading {
    margin-top: 3.5rem;
    margin-bottom: 6rem;
}

.product .heading__title {
    font-size: 3.875em;
}

@media screen and (max-width: 1200px) {
    .product .heading__title {
        font-size: 2.9375em;
    }
}

@media screen and (max-width: 767px) {
    .product .heading__title {
        font-size: 1.5em;
        margin-bottom: 3.4rem;
    }
}

/*.product__slider-nav {*/
/*	position: absolute;*/
/*	width: 100%;*/
/*	top: 0;*/
/*	left: 0;*/
/*}*/

@media screen and (max-width: 900px) {
    .product__slider-nav {
        display: none;
    }
}

.product__slider-nav .slick-list {
    padding-left: calc((100% - 1440px) / 2);
}

.product__slider-nav .slick-slide {
    width: 293px;
    height: auto;
}

@media screen and (max-width: 1200px) {
    .product__slider-nav .slick-slide {
        width: 200px;
    }
}

.product__slider-nav .slick-current {
    width: 720px;
    height: 293px;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .product__slider-nav .slick-current {
        width: 50vw;
    }
}

.product__slider-nav .slick-current .product__pic {
    opacity: 0;
}

.product__slider-main {
    position: relative;
}

.product__slider-main .slick-slide {
    height: auto;
}

.product__slider-main .slick-arrow {
    position: absolute;
    bottom: 13rem;
    z-index: 3;
    border-color: rgba(188, 190, 195, 0.3);
}

.product__slider-main .slick-arrow:hover {
    border-color: var(--brandbook-main);
}

.product__slider-main .slick-arrow:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
    filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
}

.product__slider-main .slick-prev {
    left: 1.8rem;
}

.product__slider-main .slick-next {
    right: 1.8rem;
}

.product__slider-main .slick-dots {
    width: 100%;
    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;
    gap: 2rem;
    margin-top: 2rem;
}

.product__slider-main .slick-dots button {
    font-weight: 500;
    color: #b7b7b7;
    font-size: 1em;
}

.product__slider-main .slick-dots li {
    position: relative;
}

.product__slider-main .slick-dots li.slick-active:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -40%;
    background: #b7b7b7;
    border-radius: 100%;
    z-index: 2;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.product__pic {
    width: auto;
    height: 100%;
}

.product_wrapper {
    position: relative;
}

.product__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2rem;
    width: 100%;
}

@media screen and (max-width: 900px) {
    .product__inner {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .product__inner {
        margin-top: 3.4rem;
    }
}

.product__slider-main {
    width: 50%;
    max-width: 720px;
}

@media screen and (max-width: 900px) {
    .product__slider-main {
        width: 100%;
    }
}

.product__info {
    max-width: 630px;
    width: 50%;
    position: relative;
    z-index: 3;
	margin-top: 300px;
	gap: 7rem;
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 900px) {
    .product__info {
        width: 100%;
        max-width: 100%;
		margin-top: 40px;
    }
}

.product__top,
.product__middle,
.product__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1500px) {
	.product__info {
		gap: 3rem;
	}
}

@media screen and (max-width: 1100px) {
    .product__top,
    .product__middle,
    .product__foot {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
		flex-direction: column;
    }
	.product__info {
		gap: 1rem;
	}
	.product__stars {
		width: 100%;
	}
}

@media screen and (max-width: 900px) {
	.product__info {
		gap: 5rem;
	}
}

@media screen and (max-width: 767px) {
	.product__info {
		gap: 3rem;
	}
}

@media screen and (max-width: 767px) {
	.product__info {
		gap: 3rem;
	}
}

@media screen and (max-width: 767px) {
    .product__foot {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
		gap: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .product__left {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
		gap: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .product__right {
        width: 100%;
        text-align: right;
    }
}

.product__art {
    font-size: 1.125em;
    line-height: 156%;
    color: #949393;
    margin-bottom: 2rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .product__art {
        margin-bottom: 0;
    }
}

.product__holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
    margin-top: 2rem;
}

@media screen and (max-width: 767px) {
    .product__holder {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 0;
    }
}

.product__state {
    font-weight: 500;
    font-size: 1.125em;
    line-height: 156%;
    text-transform: lowercase;
}

.product__state_green {
    color: var(--brandbook-main);
}

.product__state_red {
    color: var(--brandbook-more);
}

.product__favorite {
    color: var(--brandbook-more);
    opacity: 0.8;
}

.product__favorite svg {
    width: 24px;
    height: 24px;
}

.product__old {
    font-size: 1.3125em;
    line-height: 130%;
    color: #949393;
    text-align: right;
}

.product__old:after {
    content: attr(data-sale);
    font-weight: 600;
    color: var(--brandbook-more);
    margin-left: 2.5rem;
}

.product__new {
    font-weight: 500;
    font-size: 3.75em;
    line-height: 100%;
    text-align: center;
    color: var(--base-rich-black);
}

@media screen and (max-width: 1100px) {
    .product__new {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 900px) {
    .product__new {
        font-size: 3.75em;
    }
}

@media screen and (max-width: 767px) {
    .product__new {
        font-size: 3.125em;
        text-align: right;
    }
}

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

.product__bt {
    background: var(--brandbook-main);
    width: 62px;
    height: 64px;
    border-radius: 100%;
    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;
    font-weight: 700;
    font-size: 1.25em;
    text-align: center;
    color: var(--base-cristal-white);
    line-height: 1;
    z-index: 1;
    position: relative;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    cursor: pointer;
}

.product__bt:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#73b61c), to(#558813));
    background: linear-gradient(360deg, #73b61c 0%, #558813 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.product__bt:hover:before {
    opacity: 1;
    visibility: visible;
}

.disabled .product__bt {
	opacity: 0.3;
	background:#a8aab0;
	cursor: default;
}
.disabled .product__bt:hover:before {
	background:#a8aab0;
	visibility: hidden;
}

.product__numb {
    text-align: center;
    width: 45px;
    font-size: 2em;
    padding: 0;
    background: none;
    -moz-appearance: textfield;
}

.product__numb:-webkit-outer-spin-button,
.product__numb:-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product__btn {
    border-radius: 50px;
    padding: 28px 0px;
    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;
    width: min(334px, 55%);
    gap: 2rem;
    color: var(--base-cristal-white);
    font-weight: 600;
    font-size: 1.125em;
    background: var(--brandbook-main);
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

@media screen and (max-width: 767px) {
    .product__btn {
        width: 100%;
    }
}

.product__btn svg {
    width: 18px;
    height: 18px;
}

.product__btn:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#73b61c), to(#558813));
    background: linear-gradient(360deg, #73b61c 0%, #558813 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.product__btn:hover:before {
    opacity: 1;
    visibility: visible;
}

.product__colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 1.5rem;
}

@media screen and (max-width: 1100px) {
    .product__colors {
        gap: 0.5rem;
    }
}

.product__hidden {
    display: none;
}

.product__hidden:checked + span:before {
    opacity: 1;
    visibility: visible;
}

.product__color-type {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .product__color-type {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .product__color-type {
        width: 52px;
        height: 52px;
    }
}
/* Основные цвета (светлый сверху -> темный снизу) */
.product__color-type.red {
	background: -webkit-linear-gradient(top, #ff6b6b 0%, #000 100%);
	background: linear-gradient(180deg, #ff6b6b 0%, #000 100%);
}

.product__color-type.blue {
	background: -webkit-linear-gradient(top, #6495ed 0%, #000 100%);
	background: linear-gradient(180deg, #6495ed 0%, #000 100%);
}

.product__color-type.green {
	background: -webkit-linear-gradient(top, #82d31a 0%, #000 100%);
	background: linear-gradient(180deg, #82d31a 0%, #000 100%);
}

.product__color-type.white {
	background: -webkit-linear-gradient(top, #ffffff 0%, #000 100%);
	background: linear-gradient(180deg, #ffffff 0%, #000 100%);
}

.product__color-type.black {
	background: -webkit-linear-gradient(top, #4d4d4d 0%, #000 100%);
	background: linear-gradient(180deg, #4d4d4d 0%, #000 100%);
}

.product__color-type.lightblue {
	background: -webkit-linear-gradient(top, #87cefa 0%, #000 100%);
	background: linear-gradient(180deg, #87cefa 0%, #000 100%);
}

.product__color-type.purple {
	background: -webkit-linear-gradient(top, #9370db 0%, #000 100%);
	background: linear-gradient(180deg, #9370db 0%, #000 100%);
}

.product__color-type.orange {
	background: -webkit-linear-gradient(top, #ffa500 0%, #000 100%);
	background: linear-gradient(180deg, #ffa500 0%, #000 100%);
}

.product__color-type.pink {
	background: -webkit-linear-gradient(top, #ff69b4 0%, #000 100%);
	background: linear-gradient(180deg, #ff69b4 0%, #000 100%);
}

.product__color-type.gray {
	background: -webkit-linear-gradient(top, #d3d3d3 0%, #000 100%);
	background: linear-gradient(180deg, #d3d3d3 0%, #000 100%);
}

.product__color-type.yellow {
	background: -webkit-linear-gradient(top, #ffff00 0%, #000 100%);
	background: linear-gradient(180deg, #ffff00 0%, #000 100%);
}

/* Дополнительные цвета */
.product__color-type.gold {
	background: -webkit-linear-gradient(top, #ffd700 0%, #000 100%);
	background: linear-gradient(180deg, #ffd700 0%, #000 100%);
}

.product__color-type.silver {
	background: -webkit-linear-gradient(top, #c0c0c0 0%, #000 100%);
	background: linear-gradient(180deg, #c0c0c0 0%, #000 100%);
}

.product__color-type.turquoise {
	background: -webkit-linear-gradient(top, #40e0d0 0%, #000 100%);
	background: linear-gradient(180deg, #40e0d0 0%, #000 100%);
}

.product__color-type.coral {
	background: -webkit-linear-gradient(top, #ff7f50 0%, #000 100%);
	background: linear-gradient(180deg, #ff7f50 0%, #000 100%);
}

.product__color-type.burgundy {
	background: -webkit-linear-gradient(top, #800020 0%, #000 100%);
	background: linear-gradient(180deg, #800020 0%, #000 100%);
}

/* Цвет "бук" (коричнево-серый) */
.product__color-type.buk {
	background: -webkit-linear-gradient(top, #bc6938 0%, #000 100%);
	background: linear-gradient(180deg, #bc6938 0%, #000 100%);
}

/* Цвет "Коричневый" (коричнево-серый) */
.product__color-type.korichnevyy {
	background: -webkit-linear-gradient(top, #bc6938 0%, #000 100%);
	background: linear-gradient(180deg, #bc6938 0%, #000 100%);
}
/* Цвет "Бук" (коричнево-серый) */
.product__color-type.buk {
    background: -webkit-linear-gradient(top, #bc6938 0%, #000 100%);
    background: linear-gradient(180deg, #bc6938 0%, #000 100%);
}


/* Фолбэк */
.product__color-type.color {
	background: -webkit-linear-gradient(top, #cccccc 0%, #000 100%);
	background: linear-gradient(180deg, #cccccc 0%, #000 100%);
}


.product-info {
    position: relative;
    z-index: 3;
    margin-top: 3rem;
}

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

@media screen and (max-width: 900px) {
    .product-info__shops {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .product-info__link {
        width: 100%;
    }
}

.product-info__link svg {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .product-info__link svg {
        height: 96px;
    }
}

.product-info__link:hover .oz-bg {
    fill: #2358f3;
}

.product-info__link:hover .oz-txt,
.product-info__link:hover .wb-text,
.product-info__link:hover .ya-over,
.product-info__link:hover .mm-txt {
    fill: var(--base-cristal-white);
}

.product-info__link:hover .wb-bg {
    fill: url(#wb-hover);
}

.product-info__link:hover .ya-bg {
    fill: #fa3f1d;
}

.product-info__link:hover .ya-letter {
    fill: #fa3f1d;
}

.product-info__link:hover .mm-bg {
    fill: #9553d1;
}

.product-info__text-box {
    padding: 5rem 0 0;
    /*font-weight: 500;*/
    /*font-size: 1.125em;*/
    /*line-height: 156%;*/
}

@media screen and (max-width: 767px) {
    .product-info__text-box {
        padding: 3rem 0;
    }
}

.product-info__text-box p {
    margin-bottom: 2rem;
}

.product-info__text-box p:last-of-type {
    margin-bottom: 15px;
}

.product-info__open-tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 5rem 1.5rem 2rem;
    gap: 2rem;
    position: relative;
    font-size: 1.125em;
    font-weight: 500;
    border-bottom: 1px solid var(--brandbook-main);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 5rem;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
    .product-info__open-tab {
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    .product-info__open-tab {
        width: 100%;
    }
}

.product-info__open-tab:after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.125 1.55957L8 7.5L1.875 1.55957' stroke='%23464646' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat 0 0/contain;
    content: "";
    width: 16px;
    height: 10px;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.product-info__open-tab.open:after {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-info__btn {
    margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
    .product-info__btn {
        margin: 3rem auto 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 282px;
    }
}

.product-slider {
    position: relative;
    z-index: 3;
    margin: 9rem 0;
}

@media screen and (max-width: 900px) {
    .product-slider {
        margin: 5rem 0;
    }
}

.product-slider__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4rem;
}

.product-slider__title {
    font-size: 4.5em;
    line-height: 1;
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    .product-slider__title {
        font-size: 3.5625em;
    }
}

@media screen and (max-width: 767px) {
    .product-slider__title {
        font-size: 1.5em;
    }
}

.product-slider__control {
	display: flex;
	width: fit-content;
	gap: 2rem;
	justify-content: end;
}

.product-slider .slick-arrow {
    border-color: rgba(185, 187, 193, 0.3);
    margin-left: 2rem;
}

.product-slider .slick-arrow:hover {
    border-color: var(--brandbook-main);
}

.product-slider .slick-arrow:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
    filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(521%) hue-rotate(44deg) brightness(98%) contrast(86%);
}

.product-slider .slick-slide {
    margin-right: 3.5rem;
    height: auto;
}

@media screen and (max-width: 767px) {
    .product-slider .slick-slide {
        margin-right: 0;
    }
}

.product-slider .slick-dots {
    width: 100%;
    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;
    gap: 1rem;
    margin-top: 2rem;
}

.product-slider .slick-dots button {
    font-weight: 500;
    color: #b7b7b7;
    font-size: 0.75em;
}

.product-slider .slick-dots li {
    position: relative;
}

.product-slider .slick-dots li.slick-active:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -40%;
    background: #b7b7b7;
    border-radius: 100%;
    z-index: 2;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.product-buy {
    position: relative;
    z-index: 3;
    padding-block: 5rem 7rem;
    background: #e5e5e5;
}

@media screen and (max-width: 767px) {
    .product-buy {
        padding-block: 3rem;
    }
}

.product-buy__title {
    font-size: 4.5em;
    line-height: 1;
    margin-bottom: 4rem;
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    .product-buy__title {
        font-size: 3.5625em;
    }
}

@media screen and (max-width: 767px) {
    .product-buy__title {
        font-size: 1.5em;
    }
}

.product-buy__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
}

@media screen and (max-width: 900px) {
    .product-buy__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .product-buy__list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .product-buy__list .prod-item:nth-of-type(3),
    .product-buy__list .prod-item:nth-of-type(4) {
        display: none;
    }
}

.product-buy__control {
    text-align: center;
    margin-top: 3rem;
}

@media screen and (max-width: 767px) {
    .product-buy__control {
        display: block;
    }
}

.category_wrapper {
    padding: 3rem 0 6rem;
}

.full_button {
    padding: 0.8rem 1.6rem 1rem;
    border-radius: 8px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    align-content: center;
}

.full_button > span {
    display: inline-block;
    border: 1px solid var(--base-rich-black);
    border-radius: 50px;
    padding: 1.3rem 2.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.5;
    font-size: 1em;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.banner-homepage .slick-track,
.banner-homepage .slick-slide {
    display: flex;
}

.banner-homepage .slick-slide > div {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
}

.banner__cover {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    height: 100vh;
    min-height: 960px;
}

.catalog-type__title {
    opacity: 1;
}

input:focus:placeholder {
    opacity: 0;
}

.poster-type-two__field:focus:placeholder,
.busket__field:focus:placeholder {
    opacity: 0;
}

.prod-item__top {
    overflow: hidden;
}

.prod-item__btn {
    width: 46px;
    height: 46px;
}

.prod-item__control {
    right: -6rem;
    opacity: 1;
}

.prod-item:hover .prod-item__control {
    right: 2rem;
}

.prod-item__favorite input {
    display: none;
}

.prod-item__favorite input + label {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-item__favorite input:checked + label, .prod-item__favorite:hover input + label {
    background: rgb(244, 247, 255);
    color: #F22A52;
}

.prod-item__favorite.product__favorite input:checked + label {
    background: #F22A52;
    color: #fff;
}

.prod-item__remove button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 18px;
    font-weight: 500;
    color: var(--brandbook-main);
}

.header__favourites {
    position: relative;
}

.header-count {
    position: absolute;
    top: -12px;
    right: -12px;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    width: 18px;
    height: 18px;
    background: #F22A52;
    color: #fff;
    border-radius: 50%;
}

.header__basket.elms:before {
    display: none;
}

.prod-item .prod-item__img {
    height: 0;
    display: block;
    padding-top: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.busket__wrap .busket__col {
    flex: 1;
}

.busket-success {
    margin-top: 0;
}

.busket__row:before {
    top: 0;
    display: none;
}

.busket {
    margin-top: 6.5rem;
}

@media only screen and (max-width: 767px) {
    .header__home {
        left: 60px;
        top: 0;
    }
}

.filter {
    margin-top: 0;
}

.filter__slider {
    display: flex;
    flex-direction: column;
}

.filter__slider-values .mse2_number_inputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

.filter__slider-values .filter__group {
    position: relative;
    top: auto;
    transform: none;
}

.filter__slider-values .mse2_number_inputs .filter__group input {
    max-width: 40px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.4em !important;
}

.ui-slider .ui-slider-handle {
    width: 1.5em !important;
    height: 1.5em !important;
    background: #000 !important;
    border-color: #000 !important;
}


#deliveryChooze {
    display: none;
}

.fixed-block {
    position: fixed;
    top: 25vh;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    background: rgb(0, 0, 0);
    background: linear-gradient(204deg, rgba(0, 0, 0, 0.35057773109243695) 0%, rgba(0, 0, 0, 0.14889705882352944) 100%);
}

.fixed-block .fixed-block__item {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 35px 20px;
    text-align: center;
}

.fixed-block .fixed-block__item:hover {
    background: rgb(0, 0, 0);
    background: linear-gradient(204deg, rgba(0, 0, 0, 0.35057773109243695) 0%, rgba(0, 0, 0, 0.14889705882352944) 100%);
}

.fixed-block .fixed-block__item ._small {
    font-size: 0.8em;
}

.fixed-block .fixed-block__img {
    margin-bottom: 10px;
}

.fixed-block .fixed-block__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 992px) {
    .fixed-block {
        display: none;
    }
}

.catalog-type__item {
    position: relative;
    overflow: hidden;
}

.catalog-type__marquee {
    position: absolute;
    background: rgb(0, 0, 0);
    background: linear-gradient(117deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.26) 45%, rgba(0, 0, 0, 0.15) 100%);
    bottom: 50%;
    left: -20px;
    right: -20px;
    transform: rotate(5deg);
    overflow: hidden;
    color: #fff;
    padding: 10px 0;
    z-index: 1;
    backdrop-filter: blur(50px);
}

.catalog-type__marquee .marquee-list {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.catalog-type__marquee .marquee-list span {
    display: block;
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
    white-space: nowrap;
}

.catalog-type__marquee .marquee-list span:after {
    width: 5px;
    height: 5px;
    content: '';
    position: absolute;
    top: 39%;
    right: -3px;
    border-radius: 50%;
    background: #fff;
}

.catalog-type__pic-front {
    position: absolute;
    top: 14%;
    left: 12%;
    z-index: 3;
}

.catalog-type__item.main-2 .catalog-type__pic-front {
    top: 20.5%;
    left: 5.5%;
}

.catalog-type__item.main-2 .catalog-type__marquee {
    transform: rotate(-5deg);
}

.catalog-type__item ._icon {
    position: absolute;
    z-index: 4;
    width: 90px;
    height: 90px;
    top: 35px;
    right: -100px;
    background: #82D31A url('../icon/icon-arrow-right.svg') no-repeat center;
    display: flex;
    border-radius: 50%;
    transition: all .3s ease;
}

.catalog-type__item:hover ._icon {
    right: 35px;
}

.catalog-type__item:hover .prod-item__control {
    right: 2rem;
}

.catalog-type__list .catalog-type__item:nth-child(1) {
    order: 1;
}

.catalog-type__list .catalog-type__item:nth-child(2) {
    order: 2;
}

.catalog-type__list .catalog-type__item:nth-child(3) {
    order: 3;
}

.catalog-type__list .catalog-type__item:nth-child(4) {
    order: 4;
}

.catalog-type__list .catalog-type__item:nth-child(5) {
    order: 5;
}

.swal2-popup {
    max-width: 420px;
    width: 100%;
    padding: 4rem;
    color: #020d1e;
    font-family: inherit;
    font-size: 1rem;
}

#swal2-title span {
    color: #545454;
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 2rem;
    display: block;
}

.swiper-discount {
    position: relative;
}

.poster-type-four:before {
    background: url(../icon/wave-3.svg) no-repeat center/100%;
    content: "";
    width: 100vw;
    height: 65vw;
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
}

.swiper-pagination-bullet-active {
    background: rgb(130, 211, 26);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

#mse2_mfilter .btn_more {
    width: 180px !important;
}

.color-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}
.color-option {
	transition: all .2s ease-out;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
}
.color-option:hover {
	transform: scale(1.07);
}

.color-option.active {
	border: 3px solid var(--brandbook-more);
}



.swiper-button-next, .swiper-button-prev {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 10rem;
    top: inherit;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
    transition: border 0.35s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    border: 1px solid rgba(255, 255, 255, 1);
    border-top-color: rgba(255, 255, 255, 1);
    border-right-color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(255, 255, 255, 1);
    border-left-color: rgba(255, 255, 255, 1);
}

.swiper-button-next {
    right: calc((100% - 1440px) / 2);
}

.swiper-button-prev {
    left: calc((100% - 1440px) / 2);
}

.swiper-button-prev:after, .swiper-button-next:after {
    content: '';
    background-image: url('../icon/icon-arrow-right.svg');
    width: 16px;
    height: 16px;
}

.swiper-button-prev:after {
    content: '';
    transform: rotate(180deg);
}

.banner-homepage .swiper-pagination {
    bottom: 11rem;
}

.banner-homepage .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: transparent;
    color: #fff;
    opacity: 1;
    font-weight: 500;
    font-size: 1em;
}

.banner-homepage .swiper-pagination-bullet-active {
    background: #fff;
}

@media screen and (max-width: 1480px) {
    .swiper-button-next {
        right: 2rem;
    }

    .swiper-button-prev {
        left: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .banner .swiper-pagination {
        display: none !important;
    }
}

.product__wrapper {
    position: relative;
}

.main-slider .swiper-slide, .banner-sales .swiper-slide {
    text-align: center;
}

.main-slider {
    position: relative;
    max-height: 239px;
}

.main-slider .swiper-slide {
    height: 239px;
	background: #fff;
}

.main-slider .swiper-slide-active {
    width: 720px !important;
    max-height: 239px;
    overflow: hidden;
}

.slider-container {
    margin: 0;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    max-height: 239px;
}

#product__gallery .swiper-button-prev {
    left: 2rem;
    border: 1px solid #BCBEC34D;
}

#product__gallery .swiper-button-next {
    right: 2rem;
    border: 1px solid #BCBEC34D;
}

#product__gallery .swiper-button-prev:after, #product__gallery .swiper-button-next:after {
    content: '';
    background-image: url('../icon/icon-arrow-right--gray.svg');
    transition: all 0.35s ease;
}

#product__gallery .swiper-button-prev:hover, #product__gallery .swiper-button-next:hover {
    border-color: #73B61C;
}

#product__gallery .swiper-button-prev:hover:after, #product__gallery .swiper-button-next:hover:after {
    content: '';
    background-image: url('../icon/icon-arrow-right-green.svg');
}


#product__gallery {
    width: 720px;
    height: 720px;
    background: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#product__gallery .swiper-slide {
	height: 720px;
}

#product__gallery img {
    opacity: 1;
    transition: all .2s linear;
}

#product__gallery .load {
    opacity: 0.1;
}

@media screen and (max-width: 900px) {
    .slider-container {
        display: none;
    }

    #product__gallery {
        width: 100%;
        height: auto;
    }

	.product__pic {
		width: 100%;
		height: auto;
	}
	#product__gallery .swiper-slide {
		height: auto;
	}
}

.product-slider__slider {
    overflow: hidden;
    padding: 40px;
    margin: -40px;
}

.btn.btn-more {
    width: fit-content;
    display: flex;
    margin:5rem auto 2rem;
    white-space:nowrap;
    transition:0.3s ease;
    gap:1rem;
}

.btn.btn-more:hover {
	border-color: var(--brandbook-main);
	color: var(--brandbook-main);
}


.swiper-button-rel-prev, .swiper-button-rel-next {
	width: 64px;
	height: 64px;
	border-radius:50px;
	border: 1px solid #BCBEC34D;
	transition: border 0.35s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.swiper-button-rel-prev:after {
	content: '';
	transform: rotate(180deg);
}

.swiper-button-rel-prev:hover, .swiper-button-rel-next:hover {
	border-color:#73B61C;
}

.swiper-button-rel-prev:after, .swiper-button-rel-next:after {
	content: '';
	width: 16px;
	height: 16px;
	background-image: url('../icon/icon-arrow-right--gray.svg');
	transition: all 0.35s ease;
	display: block;
	margin: 0 auto;
}

.swiper-button-rel-prev:hover:after, .swiper-button-rel-next:hover:after {
	content: '';
	background-image: url('../icon/icon-arrow-right-green.svg');
}

.mark-items {
	position: absolute;
	left: 2rem;
	top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 1;
}

.mark-items.full-cart {
	left: inherit;
	right: 2rem;
	align-items: end;
}

.mark {
	padding: 0.5rem 1rem;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 600;
	width: fit-content;
	border-radius: 2px;
}
.mark-items.full-cart .mark {
	font-size: 14px;
}

.mark-popular {
	background:rgba(255, 200, 211, 0.78);
	color: #F22A52;
}

.mark-new {
	background:rgba(216, 230, 198, 0.78);
	color: #73b61c;
}

.mark-favorite {
	background:rgba(184, 171, 251, 0.78);
	color: #7b61ff;
}



.tabs-accordion {
	margin: 20px auto;
}

.tabs-header {
	display: flex;
	width: fit-content;
}

.tab-btn {
	padding: 2rem 4rem;
	border: none;
	cursor: pointer;
	font-size: 18px;
	transition: 0.3s;
	flex: 1;
	text-align: center;
	background: transparent;
	font-weight: 600;
	border-bottom: 1px solid transparent;
	opacity: 0.8;
}

.tab-btn:last-child {
	border-right: none;
}

.tab-btn:hover {
	opacity: 1;
}

.tab-btn.active {
	background: transparent;
	border-bottom: 1px solid #4CAF50;
	opacity: 1;
}

.tab-content {
	display: none;
	padding: 4rem 0;
	animation: fadeEffect 0.3s;
}

.tab-content.active {
	display: block;
}

@keyframes fadeEffect {
	from {opacity: 0;}
	to {opacity: 1;}
}

@media (max-width: 600px) {
	.tabs-header {
		border-bottom: none;
	}

	.tab-btn {
		border-right: none;
		border-bottom: 3px solid transparent;
		text-align: left;
	}

	.tab-btn.active {
		border-bottom: 3px solid #4CAF50;
	}
}



.specs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.specs-list li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.product-info__link {
	transition:all .3s ease-out;
	overflow:hidden;
	border-radius:50px;
	background:#fff;
	display: flex;
	align-content: center;
	align-items: center;
	width: 100%;
	height: 72px;
}

.product-info__link:hover {
	transform: scale(1.07);
	box-shadow: 0px 0px 30px 6px rgba(0, 0, 0, 0.2);
}
.expandable-block {
	position: relative;
}

.expandable-content {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease;
}

.expandable-block.expanded .expandable-content {
	display: block;
	-webkit-line-clamp: unset;
}

.toggle-btn {
	position: absolute;
	left: 0;
	bottom: -40px;
	background:none;
	border:none;
	color: #4CAF50;
	font-weight: 500;
	cursor: pointer;
	padding:5px 0;
	display: flex;
	align-items: center;
	font-size: 16px;
}

.toggle-btn:hover {
	text-decoration: underline;
}

.toggle-btn .icon {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.expandable-block.expanded .toggle-btn .icon {
	transform: rotate(180deg);
}

.pagination-list {
    display: flex;
    gap:2rem;
    margin:0 auto;
    width: fit-content;
    align-items: center;
    transition: all 0.35s ease;
}
.pagination-list__link {
    opacity: 0.3;
}

.pagination-list__link:hover {
    opacity: 1;
}

.pagination-list__link.active {
    background:#020D1E;
    border-radius:30px;
    width: 2rem;
    height: 2rem;
    display: block;
    opacity: 1;
}

.mse2_pagination .pagination-list__link.next, .mse2_pagination .pagination-list__link.prev {
    border: 1px solid #020D1E;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.mse2_pagination .pagination-list__link.next:after, .mse2_pagination .pagination-list__link.prev:after {
    content: '';
    background-image: url('../icon/arrow-black.svg');
    transition: all 0.35s ease;
    width: 16px;
    height: 16px;
}

.mse2_pagination .pagination-list__link.next:after {
    transform: rotate(180deg);
}
.filter__col {
    margin-bottom: 2rem;
}

.filter__box {
    max-height: 235px;
    overflow-y: scroll;
}

.filter__box.filter__slider-values {
    padding:1rem 2rem;
}

.mse2_number_inputs input {
    width: fit-content;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
}

.mse2_number_inputs div {
    width: fit-content;
}

.mse2_number_inputs input {
    width: fit-content;
    max-width: 70px;
    font-size: 16px;
}

.ui-front {
    z-index: 9999;
}

.prod-item:hover .prod-item__remove {
    display: inline-flex;
}

@media (max-width: 600px) {
    .swiper-button-rel-prev, .swiper-button-rel-next, .swiper-button-prev, .swiper-button-next {
        width: 55px;
        height: 55px;
    }

    #product__gallery .swiper-button-next, #product__gallery .swiper-button-prev {
        bottom: 4rem;
    }
}

.product__inner .swiper-pagination {
    display: none;
    position: relative;
      text-align: center;
      transition:.3s opacity;
      transform: translate3d(0,0,0);
      z-index: 10;
      top: inherit;
      left: inherit;
      bottom: inherit;
    padding: 2rem 0 0;
}

.product__inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background:#B7B7B7;
}
.product__inner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background:transparent;
    color: #B7B7B7;
    opacity: 1;
    font-weight: 500;
    font-size: 1em;
}

@media (max-width: 900px) {
    .product__inner .swiper-pagination {
        display: block;
    }
}
.nav__dropdown .nav__dropdown {
    position: relative;
    top: inherit;
    left: inherit;
    box-shadow: none;
    z-index: 0;
    padding:0;
    padding-block:0;
    width: auto;
    margin-top: 2rem;
}

.nav__level .nav__level {
    gap: 1rem;
    flex-direction: column;
}

.nav__dropdown .nav__dropdown .nav__level-link  {
    text-transform: none;
}

.map_content {
    margin: 4rem auto;
}

.jGrowl {
    font-family: "Golos Text", Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
}

.jGrowl-notification {
    padding:2rem !important;
    border-radius: 8px !important;
}
.jGrowl-notification.alert.ui-state-highlight.ui-corner-all.ms2-message-success {
    background: rgb(130, 211, 26) !important;
    color: var(--base-cristal-white) !important;
}

.old_price_not_promo {
    display: flex;
    flex-direction: column;
    font-size: 0.75em;
    text-transform: lowercase;
}

.price {
    font-weight: 500;
    color: #f22a52;
    text-decoration:line-through;
    font-size: 1.25em;
}

.promo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    width: fit-content;
    font: 400 16px var(--font-primary);
}

.promo-code {
    font-weight: bold;
    color: #73b61c;
    border: 1px dashed #73b61c;
    padding: 1rem;
    border-radius: 4px;
    width: fit-content;
    font-size: 18px;
}

.delete-btn {
    color: #f44;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity .2s ease-out;
}

.delete-btn:hover {
    opacity: 1;
}

.requisites-card {
    margin: 0 auto;
    background: var(--card-bg);
    overflow: hidden;
}

.requisites-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.requisites-section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.requisites-section:last-child {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

.requisites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.requisites-item {
    display: flex;
    gap: 12px;
}

.requisites-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.requisites-content {
    flex-grow: 1;
}

.requisites-label {
    font-weight: 500;
    margin-bottom: 3px;
}

.requisites-value {
    word-break: break-word;
}

.bank-details {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

@media (min-width: 600px) {
    .requisites-grid {
        grid-template-columns: 1fr 1fr;
    }

    .requisites-header h1 {
        font-size: 1.75rem;
    }
}

a.requisites-value:hover {
    color: var(--brandbook-main);
}

.copy__inner__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.copy__inner__wrapper a:hover {
    color: var(--brandbook-main);
}

#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 13, 30, 0.82);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-link {
    color: rgb(130, 211, 26);
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-btn {
        width: 100%;
        margin-top: 15px;
        position: relative;
        bottom: inherit;
        right: inherit;
    }

    .cookie-text {
        padding-right: 0;
        min-width: 100%;
    }
}

.wrapper__social.contacts {
    justify-content: start;
    padding: 2rem;
}
.wrapper__social.contacts .footer__soc-link {
    background: #fff;
    transform: scale(1);
    transition: all .2s ease-out;
}
.wrapper__social.contacts .footer__soc-link:hover {
    transform: scale(1.1);
}

.wrapper__social.contacts .footer__soc-link .footer__icon.dzen path {
    fill: #000;
}

.partners_wrapper {
  padding: 2rem 0 6rem;
}

.partners {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 480px) {
    .partners {
      flex-direction: column;
    }
}

.partners > div {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}

.partners img {
  width: 100%;
  min-width: 100%;
}

.bg-img {
    width: 100%;
  z-index: -1;
}














