@media (min-width: 1600px) { :root {
	--column-width: 1280px;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-main: #5D2C6E;
	--color-main-hover: #6c4279;
	--gradient: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
	--color-black: #151515;
	--color-white: #FFFFFF;
	--color-grey: #888888;
	--color-stroke: #D5D5D5;
	--color-green: #35d87c;
    --color-red: #f8444d;
}

html {
	scroll-behavior: smooth;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition-disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.visuallyhidden {
	position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-main);
}

/* CSS KIT */

.mobile {
    display: none !important;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.j-center {
    justify-content: center;
}

.j-sb {
    justify-content: space-between;
}

.fd-column {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

a {
    text-decoration: none;
	color: var(--color-black);
}

.mb {
    margin-bottom: 100px;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
}

.with-line {
    position: relative;
}

.with-line:after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}

.with-line:hover::after {
    width: 100%;
}

.with-line.color-white::after {
    background: var(--color-white);
}

.hover-color-main {
	transition: .3s;
}

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

.hover-color-main.with-line::after {
	background: var(--color-main);
}

/* COLORS */

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

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.color-stroke {
	color: var(--color-wtroke);
}

.gradient {
	background: var(--gradient);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

/* TEXT */

.h1 {
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 70px;
}

.h2 {
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
}

.h3 {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px;
}

.h4 {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px;
}

.h5 {
	font-size: 19px;
	font-style: normal;
	font-weight: 600;
	line-height: 26px;
}

.main-text {
	font-family: 'Montserrat';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

/* 404 */

.error-404 {
	height: 720px;
	position: relative;
	background: var(--blue-gradient, linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%));
}

.error-404 .breadcrumbs {
	position: absolute;
	left: var(--offset);
	z-index: 1;
}

.error-404-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1440px;
	height: 100%;
	z-index: 0;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-404-inner {
	position: relative;
	z-index: 2;
	padding-top: 428px;
}

.error-404-title {
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.error-404-desc {
	margin-bottom: 30px;
	text-align: center;
}

.error-404-content .btn {
	width: 185px;
	height: 50px;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: 100px;
}

.error-404-content .btn-right {
	padding-right: 12px;
	padding-left: 35px;
	margin-right: 30px;
}

.error-404-content .btn svg {
	margin-left: 42px;
}

/* CONTENT */

.content h2 {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px; 
	margin: 20px 0;
	margin-top: 40px;
}

.content h2:first-child {
	margin-top: 0;
}

.content h3 {
	/* font-style: normal;
	font-weight: 600;
	font-size: 19px;
	line-height: 22px; */
	margin-bottom: 15px;
	margin-top: 30px;
}

.content p, 
.content li {
	font-family: 'Montserrat';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	margin: 15px 0;
}

.content ol li {
	margin-left: 15px;
	padding-left: 6px;
}

.content ol li::marker {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	color: var(--color-main);
} 

.content ul li {
	align-items: flex-start;
	list-style: none;
}

.content p span,
.content li span {
	display: inline-block;
}

.content li p {
	flex: 1;
}

.content ul li::marker {
	display: none;
	content: "";
}

.content ul li::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-main);
	flex-shrink: 0;
	margin-right: 10px;
	margin-top: 9px;
}

.content ul, 
.content ol {
	margin: 15px 0;
	display: flex;
	flex-direction: column;
}

.content a {
	display: inline;
	text-decoration: underline;
	color: var(--color-main);
}

.content li a {
	display: contents;
}

.content img {
	margin: 25px 0;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.content figure {
	margin: 0;
}

.content p:first-child {
	margin-top: 0;
}

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

.content table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px double var(--color-stroke);
}

.content table td {
	min-width: 2em;
	padding: 0.4em;
	border: 1px solid var(--color-stroke);
}

/* MODALS */

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: 8px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.closemodal svg,
.closemodal img {
    width: 16px;
    height: 16px;
}

/* counter */

.counter-inner {
    position: relative;
    width: 130px;
}

.counter.small .counter-inner {
    width: 101px;
}

.counter-input {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: 6px;
    width: 130px;
    height: 36px;
    text-align: center;
    cursor: pointer;
}

.counter.small .counter-input {
    width: 101px;
}

.counter-symbol {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: .3s;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    user-select: none;
    border: 1px solid var(--color-stroke);
    background: var(--color-white);
    border-radius: 6px;
}

.counter-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-plus {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-symbol:hover {
    color: var(--color-main);
}

.counter.small .counter-symbol {
    width: 32px;
} 

    .btn {
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .3s;
        border: none;
        text-align: center;
        height: 44px;
        font-family: 'Open Sans';
        padding: 0 20px;
        transition: .3s;
        position: relative;
    }

    .btn-left {
        padding-left: 12px;
    }

    .btn-left::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        left: 36px;
    }

    .btn-right {
        padding-right: 12px;
    }

    .btn-right::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        right: 36px;
    }

    .btn svg {
        width: 14px;
        height: 14px;
    }

    .btn-left svg {
        margin-right: 25px;
    }

    .btn-right svg {
        margin-left: 25px;
    }

    .btn-mobile {
        display: none;
    }

    .btn-100 {
        width: 100%;
    }

    .btn-240 {
        width: 240px;
    }

    .btn-290 {
        width: 290px;
    }

    .btn-200 {
        width: 200px;
    }

    .btn-340 {
        width: 340px;
    }

    .btn-260 {
        width: 260px;
    }

    .btn-415 {
        width: 415px;
    }

    .btn-210 {
        width: 210px;
    }

    .btn-175 {
        width: 175px;
    }

    .btn-cart {
        width: 46px;
        border-radius: 10px;
    }

    .btn-cart svg,
    .btn-cart img {
        width: 24px;
        height: 24px;
    }

    .btn-yellow {
        background: var(--color-main);
    }

    .btn-yellow:hover {
        background: var(--color-yellow);
    }

    .btn-white {
        background: var(--color-white);
        color: var(--color-main);
    }

    .btn-white:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-white:after {
        border-color: var(--color-main);
        transition: .3s;
    }

    .btn-white path {
        fill: var(--color-main);
        transition: .3s;
    }

    .btn-white:hover path {
        fill: var(--color-white);
    }

    .btn-white:hover::after {
        border-color: var(--color-white);
    }

    .btn-red {
        background: #FA580F;
    }

    .btn-red:hover {
        background: #ff7231;
    }

    .btn-main {
        background: var(--color-main);
    }

    .btn-main:hover {
        background: var(--color-main-hover);
    }

    .btn-gradient {
        background: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
        background-size: 130% 100%;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-gradient:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-empty {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-right svg {
        transition: .3s;
    }

    .btn-right:hover svg {
        transform: translateX(2px);
    }

    .btn-left svg {
        transition: .3s;
    }

    .btn-left:hover svg {
        transform: translateX(-2px);
    }

    .btn-empty:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-empty.btn-main {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-empty.btn-main:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-dark-main {
        color: var(--color-white);
        background: var(--color-text-main);
    }

    .btn-dark-main:hover {
        background: var(--color-main-hover);
        color: var(--color-white);
    }

    .btn-none {
        display: none;
    }
   
    .btn-inactive {
        background: var(--color-grey) !important;
        pointer-events: none;
    }


 
    /* Slider */
    .slick-slider
    {
        position: relative;

        display: block;
        box-sizing: border-box;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        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);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

    .slick-slide
    {
        display: none;
        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;
    }




    .index-banner-wrapper {
        position: relative;
        margin-bottom: 60px;
        margin-top: 40px;
        height: 500px;
        overflow: hidden;
    }

    .index-banner-item {
        position: relative;
        height: 500px;
        border-radius: 30px;
        overflow: hidden;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 80px;
    }

    .index-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .index-banner-item-subtitle {
        margin-top: 1px;
        margin-bottom: 30px;
    }

    .index-banner-item-desc {
        margin-bottom: 30px;
        width: 493px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .index-banner-item .btn {
        height: 50px;
        padding-left: 30px;
        padding-right: 16px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: 100px;
    }

    .index-banner-item .btn svg {
        width: 15px;
        height: 15px;
        margin-left: 39px;
    }

    .index-banner-item .btn:after {
        right: 47px;
    }

    .index-banner-arrows {
        position: absolute;
        right: 80px;
        bottom: 40px;
        display: flex;
        z-index: 2;
    }

    .index-banner-arrow {
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .index-banner-arrow path {
        fill: var(--color-main);
        transition: .3s;
    }

    .index-banner-arrow:hover path {
        fill: var(--color-white);
    }

    .index-banner-arrow circle {
        fill: var(--color-white);
        transition: .3s;
        stroke: var(--color-stroke);
    }

    .index-banner-arrow:hover circle {
        fill: var(--color-main);
        stroke: var(--color-main);
    }

    .index-banner-prev {
        margin-right: 30px;
    }

    .slick-dots {
        display: flex;
        position: absolute;
        bottom: 40px;
        left: 80px;
        width: 100%;
        align-items: center;
    }

    .slick-dots li button {
        background: var(--color-white);
        border: 1px solid var(--color-main) !important;
        border: none;
        font-size: 0; 
        border-radius: 50%; 
        padding: 0;
        width: 14px;
        height: 14px;
        transition: .3s;
        position: relative;
    }

    .slick-dots li {
        margin: 0 3.5px;
        list-style: none;
        display: flex;
        width: 14px;
        height: 14px;
    }

    /* .slick-dots .slick-active {
        width: 40px !important;
    } */

    .slick-dots button:after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-white);
        transition: .3s;
    }

    .slick-dots .slick-active button:after {
        background: var(--color-main);
    }

    li.slick-active {
        box-sizing: border-box;
        border-radius: 50%; 
        position: relative
    }


 

    .ticker {
        background: linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%);
        padding: 15px 0;
        width: 100%;
        overflow: hidden;
    }

    .ticker-item {
        font-family: 'Montserrat';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 25px;
        margin-right: 100px;
        white-space: nowrap;
    }

    .ticker-list {
        animation: ticker 30s infinite linear;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
  

 

    .product-card {
        width: 240px;
        border-radius: 20px;
        background: var(--color-white);
        box-shadow: 0px 4px 20px 2px #F0F0F0;
        margin-right: 20px;
    }

    .product-card-image {
        width: 240px;
        height: 280px;
        object-fit: contain;
    }

    .product-card:nth-child(5n) {
        margin-right: 0;
    }

    .product-card-content {
        padding: 10px 15px 15px;
        flex: 1;
    }

    .product-card-content-info {
        flex: 1;
    }

    .product-card-title {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 15px;
        transition: .3s;
        display: block;
    }

    .product-card:hover .product-card-title {
        color: var(--color-main);
    }

    .product-card-colors {
        margin-bottom: -5px;
    }

    .product-card-color {
        width: 16px;
        height: 16px;
        padding: 4px;
        border-radius: 50%;
        margin-right: 5px;
        margin-bottom: 5px;
        position: relative;
        cursor: pointer;
        border: 1px solid var(--color-stroke);
    }

    .product-card-color.active::after {
        content: "";
        display: block;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1px solid var(--color-black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-card-color.active {
        margin: 0 4px;
        margin-right: 8px;
    }

    .product-card-color:first-child {
        margin-left: 0;
    }

    .product-card-footer {
        margin-top: 16px;
        border-top: 1px solid var(--color-stroke);
        padding-top: 12px
    }

    .product-card-price {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .product-card-footer .btn {
        height: 40px;
        padding: 13px 20px;
        padding-right: 13px;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 13px;
    }

    .product-card-short-desc {
        font-family: 'Montserrat';
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 36px;
        display: none;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: 35px;
    }

    .product-items-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .product-items-inner .product-card {
        margin-bottom: 30px;
    }

    .products-items {
        margin-bottom: -30px;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: 35px;
    }

    .products-tags {
        margin-bottom: 35px;
    }

    .products-tag {
        padding: 10px 25px;
        border-radius: 100px;
        font-family: 'Montserrat';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        margin-right: 15px;
        background: transparent;
        transition: .3s;
        cursor: pointer;
    }

    .products-tag:last-child {
        margin-right: 0;
    }

    .products-tag.active {
        background: var(--color-main);
        color: var(--color-white);
    }

    .products-tag:not(.active):hover {
        color: var(--color-main);
    }

    .products-tags-items {
        display: none;
    }

    .products-tags-items.active {
        display: block;
    }


 

    .advantages-item {
        border-radius: 20px;
        background: var(--white, #FFF);
        box-shadow: 0px 4px 20px 2px #F0F0F0;
        padding: 25px 30px;
        width: 297px;
        margin-right: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .advantages-item:nth-child(4n) {
        margin-right: 0;
    }

    .advantages-image {
        margin-bottom: 15px;
        height: 56px;
    }

    .advantages-text {
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        width: 220px;
    }


 

    .service-banner {
        position: relative;
        height: 530px;
        width: 1440px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        object-fit: cover;
    }

    .service-banner-title {
        margin-bottom: 40px;
    }

    .service-banner-title span {
        color: var(--color-main);
    }

    .service-banner-subtitle {
        margin-bottom: 15px;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 34px;
    }

    .service-banner-description {
        text-align: center;
        font-family: 'Montserrat';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 25px;
        width: 400px;
    }

    .service-banner .btn {
        height: 50px;
        padding-left: 30px;
        padding-right: 16px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: 100px;
    }

    .service-banner .btn svg {
        width: 15px;
        height: 15px;
        margin-left: 39px;
    }

    .service-banner .btn:after {
        right: 47px;
    }


 

    .category-card {
        height: 350px;
        position: relative;
        padding: 25px;
        border-radius: 20px;
        overflow: hidden;
    }

    .category-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .category-card-content {
        position: relative;
        z-index: 1;
    }

    .category-card-description {
        font-family: 'Montserrat';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px;
    }

    .category-card-title {
        transition: .3s;
    }

    .category-card:hover .category-card-title {
        color: var(--color-main);
    }


 

    .categories {
        margin-bottom: 60px;
    }

    .categories .category-card {
        margin-bottom: 40px;
        margin-right: 40px;
    }

    .category-card,
    .category-card:nth-child(2n) {
        width: 620px;
        background: linear-gradient(109deg, #E9B9FF -272.17%, #F5F5F7 37.39%, #FFF 82.25%);
    }

    .category-card:nth-child(2n) {
        background: linear-gradient(251deg, #E8B9FF -99.38%, #F5F5F7 50.11%, #FFF 106.17%);
    }

    .category-card:nth-child(3n),
    .category-card:nth-child(4n),
    .category-card:nth-child(5n) {
        width: 400px;
    }

    .category-card:nth-child(3n) {
        background: linear-gradient(55deg, #F0DAFB -35.6%, #F5F5F7 57.26%, rgba(255, 255, 255, 0.00) 109.3%);
    }

    .category-card:nth-child(4n) {
        background: #F5F5F7;
    }

    .category-card:nth-child(5n) {
        background: linear-gradient(128deg, #F5F5F7 46.61%, #E9B9FF 242.44%);
    }

    .category-card:nth-child(6n) {
        width: 100%;
        height: 175px;
        background: linear-gradient(90deg, #F3E6FA -14.39%, #F5F5F7 47.3%, rgba(255, 255, 255, 0.00) 62.85%, #F4EAFA 102.89%);
    }

    .category-card:nth-child(2n),
    .category-card:nth-child(5n),
    .category-card:nth-child(6n) {
        margin-right: 0;
    }

    .category-card:nth-child(4n) {
        margin-right: 40px;
    }

    .category-card:nth-child(6n) .category-card-content {
        width: 50%;
        height: 100%;
        justify-content: center;
    }


 

    .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .input-wrapper-100 {
        width: 100%;
    }

    .input {
        width: 100%;
        border: none;
        color: var(--color-black);
        background: var(--color-white);
        height: 50px;
        border-radius: 100px;
        padding: 12px 20px;

    }

    .input::placeholder {
        color: var(--color-grey);
    }

    .textarea {
        height: 92px;
        border-radius: 12px;
        resize: none;
        padding: 13px 20px;
    }

    .textarea-wrapper {
        height: 92px;
    }

    .textarea::-webkit-input-placeholder {
        color: var(--color-grey);
    }

    .input-label {
        position: absolute;
        top: -11px;
        left: 20px;
        background: var(--color-white);
    }

    .input-grey, 
    .textarea-grey {
        border: 1px solid var(--color-stroke);
    }

    .pass-status {
        position: absolute;
        width: 22px;
        height: 22px;
        top: 13px;
        right: 20px;
        cursor: pointer;
        user-select: none;
    }

    .pass-status svg {
        width: 22px;
        height: 22px;
    }

    .pass-status .hide {
        display: none;
    }

    .pass-status.active .hide {
        display: block;
    }

    .input-error {
        display: none;
    }


 

    .contacts-form {
        padding: 50px 110px 40px;
        border-radius: 40px;
        overflow: hidden;
        position: relative;
        margin-bottom: 50px;
    }

    .contacts-form-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .contacts-form-title {
        margin-bottom: 15px;
    }

    .contacts-form-description {
        font-family: 'Montserrat';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        width: 640px;
        margin-bottom: 40px;
        text-align: center;
    }

    .contacts-form-form {
        width: 100%;
    }

    .contacts-form-form .btn,
    .contacts-form-form .input-wrapper {
        width: 340px;
    }

    .contacts-form-form .btn {
        height: 50px;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px;
    }

    .contacts-form-answer {
        margin-top: 10px;
        display: none;
    }

    .contacts-form-footer {
        width: 100%;
        margin-top: 40px;
    }

    .contacts-form-info-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }

    .contacts-form-info {
        font-family: 'Montserrat';
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        width: 340px;
        margin-right: 20px;
    }

    .contacts-form-social-image {
        width: 34px;
        height: 34px;
    }

    .contacts-form-social-link {
        margin-left: 15px;
    }


 

    .instagram {
        display: block;
        width: 100%;
        padding: 25px 0;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        margin-bottom: 60px;
    }

    .instagram-back {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .instagram-icon {
        width: 40px;
        height: 40px;
        margin-left: 17px;
    }


 

    .search-items {
        padding: 20px 0 50px;
    }

    .search-items-header {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 20px;
    }

    .search-items-header-title {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .search-items-header-count {
        margin-left: 15px;
        padding: 4px 10px;
        background: #E7E7E7;
        border-radius: 10px;
    }

    .search-items-header .btn {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 14px;
        height: 50px;
        padding-left: 25px;
        padding-right: 16px;
        border-radius: 100px;
    }

    .search-items-header .btn::after {
        right: 45px;
    }

    .search-items-header .btn svg {
        margin-left: 36px;
    }

    .search-products {
        margin-bottom: -10px;
    }

    .search-product {
        padding: 10px 0;
        width: 600px;
        margin-right: 80px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-product:nth-child(2n) {
        margin-right: 0;
    }

    .search-product-image {
        width: 95px;
        height: 95px;
        object-fit: cover;
        margin-right: 20px;
    }

    .search-product-title {
        margin-bottom: 15px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        width: 220px;
        transition: .3s;
    }

    .search-product:hover .search-product-title {
        color: var(--color-main);
    }

    .search-product-price {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .search-items-error {
        padding-top: 30px;
    }


 

    .search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-white);
        width: 100%;
    }

    .search-form {
        padding: 0 var(--offset);
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-icon {
        width: 30px;
        height: 30px;
    }

    .search-icon-close {
        cursor: pointer;
    }

    .search-input {
        padding: 25px 0;
        margin: 0 30px;
        flex: 1;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border: none;
    }


 

	.first-header {
		background: var(--color-white);
		padding: 8px 0;
		border-bottom: 1px solid var(--color-stroke);
	}

	.first-header-menu-item {
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: 18px;
		margin-right: 35px;
	}

	.first-header-phone {
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 18px;
		margin-right: 40px;
		transition: .3s;
	}

	.first-header-worktime {
		margin-right: 40px;
	}

	.currency {
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px;
		cursor: pointer;
	}

	.currency:after {
		content: "";
		display: block;
		height: 15px;
		width: 1px;
		background: var(--color-grey);
		margin: 0 8px;
	}

	.currency:last-child::after {
		display: none;
	}

	.header {
		/* padding: 20px 0; */
		box-shadow: 0px 6px 20px 0px rgba(30, 30, 30, 0.10);
		position: sticky;
		top: 0;
		z-index: 10000;
		background: var(--color-white);
	}

	.header.box-shadow-none {
		box-shadow: none;
	}

	.logo {
		width: 120px;
		height: 48px;
		margin-top: -8px;
		object-fit: contain;
		margin-right: 45px;
	}

	.menu-link {
		font-family: 'Montserrat';
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 25px;
		margin-right: 30px;
		padding: 28px 0;
		display: flex;
	}

	.menu-link::after {
		height: 3px;
	}

	.header-buttons .btn {
		font-family: 'Montserrat';
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-left: 20px;
		height: 40px;
	}

	.header-icon,
	.header-icon.svg {
		width: 30px;
		height: 30px;
		cursor: pointer;
		margin-left: 30px;
		position: relative;
	}

	.header-icon-cart svg {
		width: 25px;
		height: 25px;
	}

	.header-icon-cart-counter {
		color: var(--color-white);
		text-align: center;
		font-family: 'Montserrat';
		font-size: 10px;
		font-style: normal;
		font-weight: 600;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: var(--color-main);
		border: 1.5px solid var(--color-white);
		position: absolute;
		bottom: 0;
		right: -1px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.categories-menu-item-submenu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 24px 35px;
		background: var(--color-white);
		box-shadow: 0px 25px 20px 1px rgba(30, 30, 30, 0.1);
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		transition: .3s;
	}

	.categories-menu-item:hover .categories-menu-item-submenu {
		opacity: 1;
		pointer-events: all;
		visibility: visible;
		transition-delay: .3s;
	}

	.categories-submenu-image {
		width: 350px;
		height: 350px;
		border-radius: 20px;
	}

	.categories-submenu-items {
		width: 530px;
		margin: 0 32px;
		padding: 0 40px;
	}

	.categories-submenu-items.border-left {
		border-left: 1px solid var(--color-stroke);
	}

	.categories-submenu-items.border-right {
		border-right: 1px solid var(--color-stroke);
	}

	.categories-submenu-items-col {
		width: 200px;
	}

	.categories-submenu-link-title {
		margin-bottom: 10px;
		margin-top: 10px;
		display: block;
	}

	.categories-submenu-link-title:first-child {
		margin-top: 0;
	}

	.categories-submenu-link {
		margin-bottom: 10px;
		display: block;
	}


 

    .cart {
        margin-top: 20px;
        padding-bottom: 27px;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout {
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .cart-checkout .cart-product {
        width: 100%;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout .cart-product:last-child {
        border-bottom: none;
    }

    .cart-product {
        padding: 15px 0;
        width: 853px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cart-checkout .cart-product {
        align-items: flex-start;
        padding-right: 39px;
    }

    .cart-products {
        max-height: 240px;
        overflow: auto;
    }

    .cart-checkout .cart-products {
        padding-right: 20px;
        max-height: 280px;
    }

    .cart-products::-webkit-scrollbar {
        width: 2px;
    }

    .cart-products::-webkit-scrollbar-track {
        background: var(--color-grey);
    }

    .cart-products::-webkit-scrollbar-thumb {
        background: var(--color-main);
    }

    .cart-product-info-block {
        display: flex;
        align-items: center;
    }

    .cart-checkout .cart-product-info-block {
        align-items: flex-start;
    }

    .cart-product-info {
        margin-right: 100px;
        width: 250px;
        flex-shrink: 0;
    }

    .cart-product-title {
        width: 250px;
        margin-bottom: 3px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        transition: .3s;
    }

    .cart-product-desc {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .cart-product-title:hover {
        color: var(--color-main);
    }
    
    .cart-product-image-wrapper {
        margin-right: 15px;
        flex-shrink: 0;
    }

    .cart-product-image {
        width: 90px;
        height: 90px;
        border-radius: 6px;
        object-fit: contain;
    }

    .cart-checkout .cart-product-image {
        width: 80px;
        height: 80px;
        border-radius: 6px;
        object-fit: contain;
    }

    .cart-product-price-wrapper {
        margin-left: 40px;
        width: 150px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-price-wrapper {
        align-items: flex-start;
        margin: 0;
        margin-top: 6px;
    }

    .cart-product-counter {
        display: flex;
        align-items: center;
    }

    .cart-delete-product-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .cart-delete-product {
        cursor: pointer;
    }

    .cart-delete-product-svg {
        width: 24px;
        height: 24px;
    }

    .cart-delete-product path {
        transition: .3s;
    }

    .cart-delete-product:hover path{
        fill: var(--color-main);
    }

    .cart-checkout .cart-delete-product {
        position: absolute;
        top: 12px;
        right: 0;
    }

    .cart-checkout .cart-product-info {
        margin-right: 0;
    }

    .cart-checkout .cart-product-info-block {
        flex: 1;
    }

    .cart-checkout .cart-delete-product-wrapper {
        flex: 0;
    }

    .cart-checkout .cart-product-counter {
        width: 100%;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-counter .counter {
        margin-bottom: 10px;
    }


 

    .cart-info-items {
        padding: 20px 0;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 20px;
    }

    .cart-info-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
    }

    .cart-info-item-title,
    .cart-info-item-value {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .cart-info-item:last-child {
        margin-bottom: 0;
    }


 

    .container-modal-cart {
        width: 980px;
        border-radius: 20px;
        background: var(--color-white);
        padding: 30px 50px 35px;
    }

    .closemodal-cart {
        cursor: pointer;
        position: absolute;
        top: 18px;
        right: 18px;
    }

    .closemodal-cart svg {
        width: 16px;
        height: 16px;
    }

    .cart-title {
        align-self: flex-start;
    }

    .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

    #promocode-cart, 
    .modal-cart-block,
    #payment-cart,
    #modal-cart-info {
        width: 100%;
    }

    #modal-cart-info {
        margin-bottom: 30px;
    }

    .modal-cart-btns {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modal-cart-btns .btn {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }


 

	.footer {
		padding: 50px 0;
		box-shadow: 0px 6px 30px 0px rgba(30, 30, 30, 0.15);
	}

	.footer-logo {
		width: 120px;
		margin-bottom: 25px;
	}

	.copyright {
		font-family: 'Montserrat';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
		width: 190px;
		margin-bottom: 82px;
	}

	.probotiuk {
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
	}

	.footer-col-title {
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 22px;
		letter-spacing: 0.15px;
		margin-bottom: 15px;
	}

	.footer-link {
		font-family: 'Montserrat';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px;
		margin-bottom: 8px;
		max-width: 200px;
	}

	.footer-social {
		margin-top: 7px;
	}

	.footer-social-wrapper {
		margin-right: 20px;
	}

	.footer-social-icon {
		width: 34px;
		height: 34px;
	}

	.footer-social-icon:last-child {
		margin-right: 0;
	}


 }@media (max-width: 1600px) and (min-width: 1000px) { :root {
	--column-width: 88.8889vw;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-main: #5D2C6E;
	--color-main-hover: #6c4279;
	--gradient: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
	--color-black: #151515;
	--color-white: #FFFFFF;
	--color-grey: #888888;
	--color-stroke: #D5D5D5;
	--color-green: #35d87c;
    --color-red: #f8444d;
}

html {
	scroll-behavior: smooth;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.1111vw;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition-disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.visuallyhidden {
	position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0vw 99.9% 99.9%);
    clip-path: inset(0px 0vw 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-main);
}

/* CSS KIT */

.mobile {
    display: none !important;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.j-center {
    justify-content: center;
}

.j-sb {
    justify-content: space-between;
}

.fd-column {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

a {
    text-decoration: none;
	color: var(--color-black);
}

.mb {
    margin-bottom: 6.9444vw;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
}

.with-line {
    position: relative;
}

.with-line:after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}

.with-line:hover::after {
    width: 100%;
}

.with-line.color-white::after {
    background: var(--color-white);
}

.hover-color-main {
	transition: .3s;
}

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

.hover-color-main.with-line::after {
	background: var(--color-main);
}

/* COLORS */

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

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.color-stroke {
	color: var(--color-wtroke);
}

.gradient {
	background: var(--gradient);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

/* TEXT */

.h1 {
	font-size: 4.1667vw;
	font-style: normal;
	font-weight: 700;
	line-height: 4.8611vw;
}

.h2 {
	font-size: 2.3611vw;
	font-style: normal;
	font-weight: 700;
	line-height: 2.7778vw;
}

.h3 {
	font-size: 1.6667vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.3611vw;
}

.h4 {
	font-size: 1.3889vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.3611vw;
}

.h5 {
	font-size: 1.3194vw;
	font-style: normal;
	font-weight: 600;
	line-height: 1.8056vw;
}

.main-text {
	font-family: 'Montserrat';
	font-size: 1.1111vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8056vw;
}

/* 404 */

.error-404 {
	height: 50vw;
	position: relative;
	background: var(--blue-gradient, linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%));
}

.error-404 .breadcrumbs {
	position: absolute;
	left: var(--offset);
	z-index: 1;
}

.error-404-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	z-index: 0;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-404-inner {
	position: relative;
	z-index: 2;
	padding-top: 29.7222vw;
}

.error-404-title {
	font-size: 2.0833vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.7778vw;
	margin-bottom: 1.3889vw;
	text-align: center;
}

.error-404-desc {
	margin-bottom: 2.0833vw;
	text-align: center;
}

.error-404-content .btn {
	width: 12.8472vw;
	height: 3.4722vw;
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: 6.9444vw;
}

.error-404-content .btn-right {
	padding-right: 0.8333vw;
	padding-left: 2.4306vw;
	margin-right: 2.0833vw;
}

.error-404-content .btn svg {
	margin-left: 2.9167vw;
}

/* CONTENT */

.content h2 {
	font-size: 1.6667vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.3611vw; 
	margin: 1.3889vw 0;
	margin-top: 2.7778vw;
}

.content h2:first-child {
	margin-top: 0;
}

.content h3 {
	/* font-style: normal;
	font-weight: 600;
	font-size: 1.3194vw;
	line-height: 1.5278vw; */
	margin-bottom: 1.0417vw;
	margin-top: 2.0833vw;
}

.content p, 
.content li {
	font-family: 'Montserrat';
	font-size: 1.1111vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8056vw;
	margin: 1.0417vw 0;
}

.content ol li {
	margin-left: 1.0417vw;
	padding-left: 0.4167vw;
}

.content ol li::marker {
	font-size: 1.1111vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8056vw;
	color: var(--color-main);
} 

.content ul li {
	align-items: flex-start;
	list-style: none;
}

.content p span,
.content li span {
	display: inline-block;
}

.content li p {
	flex: 1;
}

.content ul li::marker {
	display: none;
	content: "";
}

.content ul li::before {
	content: "";
	display: inline-block;
	width: 0.4861vw;
	height: 0.4861vw;
	border-radius: 50%;
	background: var(--color-main);
	flex-shrink: 0;
	margin-right: 0.6944vw;
	margin-top: 0.625vw;
}

.content ul, 
.content ol {
	margin: 1.0417vw 0;
	display: flex;
	flex-direction: column;
}

.content a {
	display: inline;
	text-decoration: underline;
	color: var(--color-main);
}

.content li a {
	display: contents;
}

.content img {
	margin: 1.7361vw 0;
	width: 100%;
	height: auto;
	border-radius: 1.3889vw;
}

.content figure {
	margin: 0;
}

.content p:first-child {
	margin-top: 0;
}

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

.content table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px double var(--color-stroke);
}

.content table td {
	min-width: 2em;
	padding: 0.4em;
	border: 1px solid var(--color-stroke);
}

/* MODALS */

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: 0.5556vw;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.0833vw;
    position: absolute;
    top: 4.1667vw;
    left: 50%;
    transform: translateX(-50%);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 1.0417vw;
    right: 1.0417vw;
}

.closemodal svg,
.closemodal img {
    width: 1.1111vw;
    height: 1.1111vw;
}

/* counter */

.counter-inner {
    position: relative;
    width: 9.0278vw;
}

.counter.small .counter-inner {
    width: 7.0139vw;
}

.counter-input {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: 0.4167vw;
    width: 9.0278vw;
    height: 2.5vw;
    text-align: center;
    cursor: pointer;
}

.counter.small .counter-input {
    width: 7.0139vw;
}

.counter-symbol {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: .3s;
    display: flex;
    width: 2.5vw;
    height: 2.5vw;
    align-items: center;
    justify-content: center;
    user-select: none;
    border: 1px solid var(--color-stroke);
    background: var(--color-white);
    border-radius: 0.4167vw;
}

.counter-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-plus {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-symbol:hover {
    color: var(--color-main);
}

.counter.small .counter-symbol {
    width: 2.2222vw;
} 

    .btn {
        border-radius: 1.3889vw;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .3s;
        border: none;
        text-align: center;
        height: 3.0556vw;
        font-family: 'Open Sans';
        padding: 0 1.3889vw;
        transition: .3s;
        position: relative;
    }

    .btn-left {
        padding-left: 0.8333vw;
    }

    .btn-left::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        left: 2.5vw;
    }

    .btn-right {
        padding-right: 0.8333vw;
    }

    .btn-right::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        right: 2.5vw;
    }

    .btn svg {
        width: 0.9722vw;
        height: 0.9722vw;
    }

    .btn-left svg {
        margin-right: 1.7361vw;
    }

    .btn-right svg {
        margin-left: 1.7361vw;
    }

    .btn-mobile {
        display: none;
    }

    .btn-100 {
        width: 100%;
    }

    .btn-240 {
        width: 16.6667vw;
    }

    .btn-290 {
        width: 20.1389vw;
    }

    .btn-200 {
        width: 13.8889vw;
    }

    .btn-340 {
        width: 23.6111vw;
    }

    .btn-260 {
        width: 18.0556vw;
    }

    .btn-415 {
        width: 28.8194vw;
    }

    .btn-210 {
        width: 14.5833vw;
    }

    .btn-175 {
        width: 12.1528vw;
    }

    .btn-cart {
        width: 3.1944vw;
        border-radius: 0.6944vw;
    }

    .btn-cart svg,
    .btn-cart img {
        width: 1.6667vw;
        height: 1.6667vw;
    }

    .btn-yellow {
        background: var(--color-main);
    }

    .btn-yellow:hover {
        background: var(--color-yellow);
    }

    .btn-white {
        background: var(--color-white);
        color: var(--color-main);
    }

    .btn-white:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-white:after {
        border-color: var(--color-main);
        transition: .3s;
    }

    .btn-white path {
        fill: var(--color-main);
        transition: .3s;
    }

    .btn-white:hover path {
        fill: var(--color-white);
    }

    .btn-white:hover::after {
        border-color: var(--color-white);
    }

    .btn-red {
        background: #FA580F;
    }

    .btn-red:hover {
        background: #ff7231;
    }

    .btn-main {
        background: var(--color-main);
    }

    .btn-main:hover {
        background: var(--color-main-hover);
    }

    .btn-gradient {
        background: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
        background-size: 130% 100%;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-gradient:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-empty {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-right svg {
        transition: .3s;
    }

    .btn-right:hover svg {
        transform: translateX(2px);
    }

    .btn-left svg {
        transition: .3s;
    }

    .btn-left:hover svg {
        transform: translateX(-2px);
    }

    .btn-empty:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-empty.btn-main {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-empty.btn-main:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-dark-main {
        color: var(--color-white);
        background: var(--color-text-main);
    }

    .btn-dark-main:hover {
        background: var(--color-main-hover);
        color: var(--color-white);
    }

    .btn-none {
        display: none;
    }
   
    .btn-inactive {
        background: var(--color-grey) !important;
        pointer-events: none;
    }


 
    /* Slider */
    .slick-slider
    {
        position: relative;

        display: block;
        box-sizing: border-box;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        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);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

    .slick-slide
    {
        display: none;
        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;
    }




    .index-banner-wrapper {
        position: relative;
        margin-bottom: 4.1667vw;
        margin-top: 2.7778vw;
        height: 34.7222vw;
        overflow: hidden;
    }

    .index-banner-item {
        position: relative;
        height: 34.7222vw;
        border-radius: 2.0833vw;
        overflow: hidden;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 5.5556vw;
    }

    .index-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .index-banner-item-subtitle {
        margin-top: 1px;
        margin-bottom: 2.0833vw;
    }

    .index-banner-item-desc {
        margin-bottom: 2.0833vw;
        width: 34.2361vw;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.6667vw;
    }

    .index-banner-item .btn {
        height: 3.4722vw;
        padding-left: 2.0833vw;
        padding-right: 1.1111vw;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: 6.9444vw;
    }

    .index-banner-item .btn svg {
        width: 1.0417vw;
        height: 1.0417vw;
        margin-left: 2.7083vw;
    }

    .index-banner-item .btn:after {
        right: 3.2639vw;
    }

    .index-banner-arrows {
        position: absolute;
        right: 5.5556vw;
        bottom: 2.7778vw;
        display: flex;
        z-index: 2;
    }

    .index-banner-arrow {
        width: 2.7778vw;
        height: 2.7778vw;
        cursor: pointer;
    }

    .index-banner-arrow path {
        fill: var(--color-main);
        transition: .3s;
    }

    .index-banner-arrow:hover path {
        fill: var(--color-white);
    }

    .index-banner-arrow circle {
        fill: var(--color-white);
        transition: .3s;
        stroke: var(--color-stroke);
    }

    .index-banner-arrow:hover circle {
        fill: var(--color-main);
        stroke: var(--color-main);
    }

    .index-banner-prev {
        margin-right: 2.0833vw;
    }

    .slick-dots {
        display: flex;
        position: absolute;
        bottom: 2.7778vw;
        left: 5.5556vw;
        width: 100%;
        align-items: center;
    }

    .slick-dots li button {
        background: var(--color-white);
        border: 1px solid var(--color-main) !important;
        border: none;
        font-size: 0; 
        border-radius: 50%; 
        padding: 0;
        width: 0.9722vw;
        height: 0.9722vw;
        transition: .3s;
        position: relative;
    }

    .slick-dots li {
        margin: 0 0.2431vw;
        list-style: none;
        display: flex;
        width: 0.9722vw;
        height: 0.9722vw;
    }

    /* .slick-dots .slick-active {
        width: 2.7778vw !important;
    } */

    .slick-dots button:after {
        content: "";
        display: block;
        width: 0.5556vw;
        height: 0.5556vw;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-white);
        transition: .3s;
    }

    .slick-dots .slick-active button:after {
        background: var(--color-main);
    }

    li.slick-active {
        box-sizing: border-box;
        border-radius: 50%; 
        position: relative
    }


 

    .ticker {
        background: linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%);
        padding: 1.0417vw 0;
        width: 100%;
        overflow: hidden;
    }

    .ticker-item {
        font-family: 'Montserrat';
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.7361vw;
        margin-right: 6.9444vw;
        white-space: nowrap;
    }

    .ticker-list {
        animation: ticker 30s infinite linear;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
  

 

    .product-card {
        width: 16.6667vw;
        border-radius: 1.3889vw;
        background: var(--color-white);
        box-shadow: 0vw 0.2778vw 1.3889vw 2px #F0F0F0;
        margin-right: 1.3889vw;
    }

    .product-card-image {
        width: 16.6667vw;
        height: 19.4444vw;
        object-fit: contain;
    }

    .product-card:nth-child(5n) {
        margin-right: 0;
    }

    .product-card-content {
        padding: 0.6944vw 1.0417vw 1.0417vw;
        flex: 1;
    }

    .product-card-content-info {
        flex: 1;
    }

    .product-card-title {
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        margin-bottom: 1.0417vw;
        transition: .3s;
        display: block;
    }

    .product-card:hover .product-card-title {
        color: var(--color-main);
    }

    .product-card-colors {
        margin-bottom: -0.3472vw;
    }

    .product-card-color {
        width: 1.1111vw;
        height: 1.1111vw;
        padding: 0.2778vw;
        border-radius: 50%;
        margin-right: 0.3472vw;
        margin-bottom: 0.3472vw;
        position: relative;
        cursor: pointer;
        border: 1px solid var(--color-stroke);
    }

    .product-card-color.active::after {
        content: "";
        display: block;
        width: 1.5278vw;
        height: 1.5278vw;
        border-radius: 50%;
        border: 1px solid var(--color-black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-card-color.active {
        margin: 0 0.2778vw;
        margin-right: 0.5556vw;
    }

    .product-card-color:first-child {
        margin-left: 0;
    }

    .product-card-footer {
        margin-top: 1.1111vw;
        border-top: 1px solid var(--color-stroke);
        padding-top: 0.8333vw
    }

    .product-card-price {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
    }

    .product-card-footer .btn {
        height: 2.7778vw;
        padding: 0.9028vw 1.3889vw;
        padding-right: 0.9028vw;
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 500;
        line-height: 0.9028vw;
    }

    .product-card-short-desc {
        font-family: 'Montserrat';
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3889vw;
        margin-bottom: 2.5vw;
        display: none;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: 2.4306vw;
    }

    .product-items-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .product-items-inner .product-card {
        margin-bottom: 2.0833vw;
    }

    .products-items {
        margin-bottom: -2.0833vw;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: 2.4306vw;
    }

    .products-tags {
        margin-bottom: 2.4306vw;
    }

    .products-tag {
        padding: 0.6944vw 1.7361vw;
        border-radius: 6.9444vw;
        font-family: 'Montserrat';
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.5278vw;
        margin-right: 1.0417vw;
        background: transparent;
        transition: .3s;
        cursor: pointer;
    }

    .products-tag:last-child {
        margin-right: 0;
    }

    .products-tag.active {
        background: var(--color-main);
        color: var(--color-white);
    }

    .products-tag:not(.active):hover {
        color: var(--color-main);
    }

    .products-tags-items {
        display: none;
    }

    .products-tags-items.active {
        display: block;
    }


 

    .advantages-item {
        border-radius: 1.3889vw;
        background: var(--white, #FFF);
        box-shadow: 0vw 0.2778vw 1.3889vw 2px #F0F0F0;
        padding: 1.7361vw 2.0833vw;
        width: 20.625vw;
        margin-right: 2.0833vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .advantages-item:nth-child(4n) {
        margin-right: 0;
    }

    .advantages-image {
        margin-bottom: 1.0417vw;
        height: 3.8889vw;
    }

    .advantages-text {
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.6667vw;
        width: 15.2778vw;
    }


 

    .service-banner {
        position: relative;
        height: 36.8056vw;
        width: 100vw;
        margin-left: auto;
        margin-right: auto;
    }

    .service-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        object-fit: cover;
    }

    .service-banner-title {
        margin-bottom: 2.7778vw;
    }

    .service-banner-title span {
        color: var(--color-main);
    }

    .service-banner-subtitle {
        margin-bottom: 1.0417vw;
        font-size: 1.3889vw;
        font-style: normal;
        font-weight: 600;
        line-height: 2.3611vw;
    }

    .service-banner-description {
        text-align: center;
        font-family: 'Montserrat';
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.8056vw;
        margin-bottom: 1.7361vw;
        width: 27.7778vw;
    }

    .service-banner .btn {
        height: 3.4722vw;
        padding-left: 2.0833vw;
        padding-right: 1.1111vw;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: 6.9444vw;
    }

    .service-banner .btn svg {
        width: 1.0417vw;
        height: 1.0417vw;
        margin-left: 2.7083vw;
    }

    .service-banner .btn:after {
        right: 3.2639vw;
    }


 

    .category-card {
        height: 24.3056vw;
        position: relative;
        padding: 1.7361vw;
        border-radius: 1.3889vw;
        overflow: hidden;
    }

    .category-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .category-card-content {
        position: relative;
        z-index: 1;
    }

    .category-card-description {
        font-family: 'Montserrat';
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 400;
        line-height: 2.3611vw;
    }

    .category-card-title {
        transition: .3s;
    }

    .category-card:hover .category-card-title {
        color: var(--color-main);
    }


 

    .categories {
        margin-bottom: 4.1667vw;
    }

    .categories .category-card {
        margin-bottom: 2.7778vw;
        margin-right: 2.7778vw;
    }

    .category-card,
    .category-card:nth-child(2n) {
        width: 43.0556vw;
        background: linear-gradient(109deg, #E9B9FF -272.17%, #F5F5F7 37.39%, #FFF 82.25%);
    }

    .category-card:nth-child(2n) {
        background: linear-gradient(251deg, #E8B9FF -99.38%, #F5F5F7 50.11%, #FFF 106.17%);
    }

    .category-card:nth-child(3n),
    .category-card:nth-child(4n),
    .category-card:nth-child(5n) {
        width: 27.7778vw;
    }

    .category-card:nth-child(3n) {
        background: linear-gradient(55deg, #F0DAFB -35.6%, #F5F5F7 57.26%, rgba(255, 255, 255, 0.00) 109.3%);
    }

    .category-card:nth-child(4n) {
        background: #F5F5F7;
    }

    .category-card:nth-child(5n) {
        background: linear-gradient(128deg, #F5F5F7 46.61%, #E9B9FF 242.44%);
    }

    .category-card:nth-child(6n) {
        width: 100%;
        height: 12.1528vw;
        background: linear-gradient(90deg, #F3E6FA -14.39%, #F5F5F7 47.3%, rgba(255, 255, 255, 0.00) 62.85%, #F4EAFA 102.89%);
    }

    .category-card:nth-child(2n),
    .category-card:nth-child(5n),
    .category-card:nth-child(6n) {
        margin-right: 0;
    }

    .category-card:nth-child(4n) {
        margin-right: 2.7778vw;
    }

    .category-card:nth-child(6n) .category-card-content {
        width: 50%;
        height: 100%;
        justify-content: center;
    }


 

    .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .input-wrapper-100 {
        width: 100%;
    }

    .input {
        width: 100%;
        border: none;
        color: var(--color-black);
        background: var(--color-white);
        height: 3.4722vw;
        border-radius: 6.9444vw;
        padding: 0.8333vw 1.3889vw;

    }

    .input::placeholder {
        color: var(--color-grey);
    }

    .textarea {
        height: 6.3889vw;
        border-radius: 0.8333vw;
        resize: none;
        padding: 0.9028vw 1.3889vw;
    }

    .textarea-wrapper {
        height: 6.3889vw;
    }

    .textarea::-webkit-input-placeholder {
        color: var(--color-grey);
    }

    .input-label {
        position: absolute;
        top: -0.7639vw;
        left: 1.3889vw;
        background: var(--color-white);
    }

    .input-grey, 
    .textarea-grey {
        border: 1px solid var(--color-stroke);
    }

    .pass-status {
        position: absolute;
        width: 1.5278vw;
        height: 1.5278vw;
        top: 0.9028vw;
        right: 1.3889vw;
        cursor: pointer;
        user-select: none;
    }

    .pass-status svg {
        width: 1.5278vw;
        height: 1.5278vw;
    }

    .pass-status .hide {
        display: none;
    }

    .pass-status.active .hide {
        display: block;
    }

    .input-error {
        display: none;
    }


 

    .contacts-form {
        padding: 3.4722vw 7.6389vw 2.7778vw;
        border-radius: 2.7778vw;
        overflow: hidden;
        position: relative;
        margin-bottom: 3.4722vw;
    }

    .contacts-form-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .contacts-form-title {
        margin-bottom: 1.0417vw;
    }

    .contacts-form-description {
        font-family: 'Montserrat';
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.9444vw;
        width: 44.4444vw;
        margin-bottom: 2.7778vw;
        text-align: center;
    }

    .contacts-form-form {
        width: 100%;
    }

    .contacts-form-form .btn,
    .contacts-form-form .input-wrapper {
        width: 23.6111vw;
    }

    .contacts-form-form .btn {
        height: 3.4722vw;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.8056vw;
    }

    .contacts-form-answer {
        margin-top: 0.6944vw;
        display: none;
    }

    .contacts-form-footer {
        width: 100%;
        margin-top: 2.7778vw;
    }

    .contacts-form-info-icon {
        width: 2.4306vw;
        height: 2.4306vw;
        margin-right: 0.8333vw;
    }

    .contacts-form-info {
        font-family: 'Montserrat';
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 500;
        line-height: 1.8056vw;
        width: 23.6111vw;
        margin-right: 1.3889vw;
    }

    .contacts-form-social-image {
        width: 2.3611vw;
        height: 2.3611vw;
    }

    .contacts-form-social-link {
        margin-left: 1.0417vw;
    }


 

    .instagram {
        display: block;
        width: 100%;
        padding: 1.7361vw 0;
        border-radius: 1.3889vw;
        overflow: hidden;
        position: relative;
        margin-bottom: 4.1667vw;
    }

    .instagram-back {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .instagram-icon {
        width: 2.7778vw;
        height: 2.7778vw;
        margin-left: 1.1806vw;
    }


 

    .search-items {
        padding: 1.3889vw 0 3.4722vw;
    }

    .search-items-header {
        padding-bottom: 1.3889vw;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 1.3889vw;
    }

    .search-items-header-title {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .search-items-header-count {
        margin-left: 1.0417vw;
        padding: 0.2778vw 0.6944vw;
        background: #E7E7E7;
        border-radius: 0.6944vw;
    }

    .search-items-header .btn {
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 0.9722vw;
        height: 3.4722vw;
        padding-left: 1.7361vw;
        padding-right: 1.1111vw;
        border-radius: 6.9444vw;
    }

    .search-items-header .btn::after {
        right: 3.125vw;
    }

    .search-items-header .btn svg {
        margin-left: 2.5vw;
    }

    .search-products {
        margin-bottom: -0.6944vw;
    }

    .search-product {
        padding: 0.6944vw 0;
        width: 41.6667vw;
        margin-right: 5.5556vw;
        margin-bottom: 0.6944vw;
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-product:nth-child(2n) {
        margin-right: 0;
    }

    .search-product-image {
        width: 6.5972vw;
        height: 6.5972vw;
        object-fit: cover;
        margin-right: 1.3889vw;
    }

    .search-product-title {
        margin-bottom: 1.0417vw;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        width: 15.2778vw;
        transition: .3s;
    }

    .search-product:hover .search-product-title {
        color: var(--color-main);
    }

    .search-product-price {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
    }

    .search-items-error {
        padding-top: 2.0833vw;
    }


 

    .search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-white);
        width: 100%;
    }

    .search-form {
        padding: 0 var(--offset);
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-icon {
        width: 2.0833vw;
        height: 2.0833vw;
    }

    .search-icon-close {
        cursor: pointer;
    }

    .search-input {
        padding: 1.7361vw 0;
        margin: 0 2.0833vw;
        flex: 1;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border: none;
    }


 

	.first-header {
		background: var(--color-white);
		padding: 0.5556vw 0;
		border-bottom: 1px solid var(--color-stroke);
	}

	.first-header-menu-item {
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.25vw;
		margin-right: 2.4306vw;
	}

	.first-header-phone {
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.25vw;
		margin-right: 2.7778vw;
		transition: .3s;
	}

	.first-header-worktime {
		margin-right: 2.7778vw;
	}

	.currency {
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.8056vw;
		cursor: pointer;
	}

	.currency:after {
		content: "";
		display: block;
		height: 1.0417vw;
		width: 1px;
		background: var(--color-grey);
		margin: 0 0.5556vw;
	}

	.currency:last-child::after {
		display: none;
	}

	.header {
		/* padding: 1.3889vw 0; */
		box-shadow: 0vw 0.4167vw 1.3889vw 0vw rgba(30, 30, 30, 0.10);
		position: sticky;
		top: 0;
		z-index: 10000;
		background: var(--color-white);
	}

	.header.box-shadow-none {
		box-shadow: none;
	}

	.logo {
		width: 8.3333vw;
		height: 3.3333vw;
		margin-top: -0.5556vw;
		object-fit: contain;
		margin-right: 3.125vw;
	}

	.menu-link {
		font-family: 'Montserrat';
		font-size: 1.1111vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.7361vw;
		margin-right: 2.0833vw;
		padding: 1.9444vw 0;
		display: flex;
	}

	.menu-link::after {
		height: 3px;
	}

	.header-buttons .btn {
		font-family: 'Montserrat';
		font-size: 0.9028vw;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-left: 1.3889vw;
		height: 2.7778vw;
	}

	.header-icon,
	.header-icon.svg {
		width: 2.0833vw;
		height: 2.0833vw;
		cursor: pointer;
		margin-left: 2.0833vw;
		position: relative;
	}

	.header-icon-cart svg {
		width: 1.7361vw;
		height: 1.7361vw;
	}

	.header-icon-cart-counter {
		color: var(--color-white);
		text-align: center;
		font-family: 'Montserrat';
		font-size: 0.6944vw;
		font-style: normal;
		font-weight: 600;
		width: 1.25vw;
		height: 1.25vw;
		border-radius: 50%;
		background: var(--color-main);
		border: 0.1042vw solid var(--color-white);
		position: absolute;
		bottom: 0;
		right: -1px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.categories-menu-item-submenu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 1.6667vw 2.4306vw;
		background: var(--color-white);
		box-shadow: 0vw 1.7361vw 1.3889vw 1px rgba(30, 30, 30, 0.1);
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		transition: .3s;
	}

	.categories-menu-item:hover .categories-menu-item-submenu {
		opacity: 1;
		pointer-events: all;
		visibility: visible;
		transition-delay: .3s;
	}

	.categories-submenu-image {
		width: 24.3056vw;
		height: 24.3056vw;
		border-radius: 1.3889vw;
	}

	.categories-submenu-items {
		width: 36.8056vw;
		margin: 0 2.2222vw;
		padding: 0 2.7778vw;
	}

	.categories-submenu-items.border-left {
		border-left: 1px solid var(--color-stroke);
	}

	.categories-submenu-items.border-right {
		border-right: 1px solid var(--color-stroke);
	}

	.categories-submenu-items-col {
		width: 13.8889vw;
	}

	.categories-submenu-link-title {
		margin-bottom: 0.6944vw;
		margin-top: 0.6944vw;
		display: block;
	}

	.categories-submenu-link-title:first-child {
		margin-top: 0;
	}

	.categories-submenu-link {
		margin-bottom: 0.6944vw;
		display: block;
	}


 

    .cart {
        margin-top: 1.3889vw;
        padding-bottom: 1.875vw;
        margin-bottom: 1.7361vw;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout {
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .cart-checkout .cart-product {
        width: 100%;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout .cart-product:last-child {
        border-bottom: none;
    }

    .cart-product {
        padding: 1.0417vw 0;
        width: 59.2361vw;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cart-checkout .cart-product {
        align-items: flex-start;
        padding-right: 2.7083vw;
    }

    .cart-products {
        max-height: 16.6667vw;
        overflow: auto;
    }

    .cart-checkout .cart-products {
        padding-right: 1.3889vw;
        max-height: 19.4444vw;
    }

    .cart-products::-webkit-scrollbar {
        width: 2px;
    }

    .cart-products::-webkit-scrollbar-track {
        background: var(--color-grey);
    }

    .cart-products::-webkit-scrollbar-thumb {
        background: var(--color-main);
    }

    .cart-product-info-block {
        display: flex;
        align-items: center;
    }

    .cart-checkout .cart-product-info-block {
        align-items: flex-start;
    }

    .cart-product-info {
        margin-right: 6.9444vw;
        width: 17.3611vw;
        flex-shrink: 0;
    }

    .cart-product-title {
        width: 17.3611vw;
        margin-bottom: 3px;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        transition: .3s;
    }

    .cart-product-desc {
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3889vw;
    }

    .cart-product-title:hover {
        color: var(--color-main);
    }
    
    .cart-product-image-wrapper {
        margin-right: 1.0417vw;
        flex-shrink: 0;
    }

    .cart-product-image {
        width: 6.25vw;
        height: 6.25vw;
        border-radius: 0.4167vw;
        object-fit: contain;
    }

    .cart-checkout .cart-product-image {
        width: 5.5556vw;
        height: 5.5556vw;
        border-radius: 0.4167vw;
        object-fit: contain;
    }

    .cart-product-price-wrapper {
        margin-left: 2.7778vw;
        width: 10.4167vw;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-price-wrapper {
        align-items: flex-start;
        margin: 0;
        margin-top: 0.4167vw;
    }

    .cart-product-counter {
        display: flex;
        align-items: center;
    }

    .cart-delete-product-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .cart-delete-product {
        cursor: pointer;
    }

    .cart-delete-product-svg {
        width: 1.6667vw;
        height: 1.6667vw;
    }

    .cart-delete-product path {
        transition: .3s;
    }

    .cart-delete-product:hover path{
        fill: var(--color-main);
    }

    .cart-checkout .cart-delete-product {
        position: absolute;
        top: 0.8333vw;
        right: 0;
    }

    .cart-checkout .cart-product-info {
        margin-right: 0;
    }

    .cart-checkout .cart-product-info-block {
        flex: 1;
    }

    .cart-checkout .cart-delete-product-wrapper {
        flex: 0;
    }

    .cart-checkout .cart-product-counter {
        width: 100%;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-counter .counter {
        margin-bottom: 0.6944vw;
    }


 

    .cart-info-items {
        padding: 1.3889vw 0;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 1.3889vw;
    }

    .cart-info-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.4167vw;
    }

    .cart-info-item-title,
    .cart-info-item-value {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
    }

    .cart-info-item:last-child {
        margin-bottom: 0;
    }


 

    .container-modal-cart {
        width: 68.0556vw;
        border-radius: 1.3889vw;
        background: var(--color-white);
        padding: 2.0833vw 3.4722vw 2.4306vw;
    }

    .closemodal-cart {
        cursor: pointer;
        position: absolute;
        top: 1.25vw;
        right: 1.25vw;
    }

    .closemodal-cart svg {
        width: 1.1111vw;
        height: 1.1111vw;
    }

    .cart-title {
        align-self: flex-start;
    }

    .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2.0833vw;
    }

    #promocode-cart, 
    .modal-cart-block,
    #payment-cart,
    #modal-cart-info {
        width: 100%;
    }

    #modal-cart-info {
        margin-bottom: 2.0833vw;
    }

    .modal-cart-btns {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modal-cart-btns .btn {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.5278vw;
    }


 

	.footer {
		padding: 3.4722vw 0;
		box-shadow: 0vw 0.4167vw 2.0833vw 0vw rgba(30, 30, 30, 0.15);
	}

	.footer-logo {
		width: 8.3333vw;
		margin-bottom: 1.7361vw;
	}

	.copyright {
		font-family: 'Montserrat';
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.6667vw;
		width: 13.1944vw;
		margin-bottom: 5.6944vw;
	}

	.probotiuk {
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.6667vw;
	}

	.footer-col-title {
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.5278vw;
		letter-spacing: 0.0104vw;
		margin-bottom: 1.0417vw;
	}

	.footer-link {
		font-family: 'Montserrat';
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.7361vw;
		margin-bottom: 0.5556vw;
		max-width: 13.8889vw;
	}

	.footer-social {
		margin-top: 0.4861vw;
	}

	.footer-social-wrapper {
		margin-right: 1.3889vw;
	}

	.footer-social-icon {
		width: 2.3611vw;
		height: 2.3611vw;
	}

	.footer-social-icon:last-child {
		margin-right: 0;
	}


 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -910 + 1.3771);
                --offset: calc(4.0875vw * ((375 - 375 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { :root {
	--column-width: calc(92vw * var(--coef-w));
	--offset: calc(4vw * var(--coef-w));
	--color-main: #5D2C6E;
	--color-main-hover: #6c4279;
	--gradient: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
	--color-black: #151515;
	--color-white: #FFFFFF;
	--color-grey: #888888;
	--color-stroke: #D5D5D5;
	--color-green: #35d87c;
    --color-red: #f8444d;
}

html {
	scroll-behavior: smooth;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	font-size: calc(4.2667vw * var(--coef-w));
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition-disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.visuallyhidden {
	position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px calc(0vw * var(--coef-w)) 99.9% 99.9%);
    clip-path: inset(0px calc(0vw * var(--coef-w)) 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-mob {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-mob-none {
	padding: 0;
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-main);
}

/* CSS KIT */

.desktop {
    display: none !important;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.j-center {
    justify-content: center;
}

.j-sb {
    justify-content: space-between;
}

.fd-column {
    flex-direction: column;
}

.fd-column-mob {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

a {
    text-decoration: none;
	color: var(--color-black);
}

.body-wrapper {
    display: flex;
    flex-direction: column;
}

.mb {
    margin-bottom: calc(13.3333vw * var(--coef-w));
}

/* COLORS */

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

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.color-stroke {
	color: var(--color-wtroke);
}

.gradient {
	background: var(--gradient);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

/* TEXT */

.h1 {
	font-size: calc(7.4667vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(9.0667vw * var(--coef-w));
}

.h2 {
	font-size: calc(5.3333vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(6.4vw * var(--coef-w));
}

.h3 {
	font-size: calc(4.2667vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
}

.h5 {
	font-size: calc(3.4667vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
}

.main-text {
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w)); 
}

/* 404 */

.error-404 {
	height: calc(114.6667vw * var(--coef-w));
	position: relative;
	background: var(--blue-gradient, linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%));
}

.error-404 .breadcrumbs {
	position: absolute;
	left: var(--offset);
	z-index: 1;
}

.error-404-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 0;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-404-inner {
	position: relative;
	z-index: 2;
	padding-top: calc(65.0667vw * var(--coef-w));
}

.error-404-title {
	font-size: calc(5.3333vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(6.4vw * var(--coef-w));
	margin-bottom: calc(4vw * var(--coef-w));
	text-align: center;
}

.error-404-desc {
	margin-bottom: calc(5.3333vw * var(--coef-w));
	text-align: center;
}

.error-404-content .btn {
	width: calc(36.5333vw * var(--coef-w));
	height: calc(9.0667vw * var(--coef-w));
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: calc(8vw * var(--coef-w));
}

.error-404-content .btn-right {
	padding-right: calc(3.7333vw * var(--coef-w));
	padding-left: calc(5.0667vw * var(--coef-w));
	margin-right: calc(2.6667vw * var(--coef-w));
}

.error-404-content .btn svg {
	margin-left: calc(8vw * var(--coef-w));
}

/* CONTENT */

.content h2 {
	font-size: calc(4.2667vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
	margin: calc(4vw * var(--coef-w)) 0;
	margin-top: calc(5.3333vw * var(--coef-w));
}

.content h2:first-child {
	margin-top: 0;
}

.content h3 {
	font-size: calc(3.7333vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
	margin: calc(4vw * var(--coef-w)) 0;
	margin-top: calc(5.3333vw * var(--coef-w));
}

.content p, 
.content li {
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
	margin: calc(4vw * var(--coef-w)) 0;
}

.content ol li {
	margin-left: calc(4vw * var(--coef-w));
	padding-left: calc(1.6vw * var(--coef-w));
}

.content ol li::marker {
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
	color: var(--color-main);
} 

.content ul li {
	align-items: flex-start;
	list-style: none;
}

.content p span,
.content li span {
	display: inline-block;
}

.content li p {
	flex: 1;
}

.content ul li::marker {
	display: none;
	content: "";
	opacity: 0;
	visibility: hidden;
}

.content ul li::before {
	content: "";
	display: inline-block;
	width: calc(1.3333vw * var(--coef-w));
	height: calc(1.3333vw * var(--coef-w));
	border-radius: 50%;
	background: var(--color-main);
	flex-shrink: 0;
	margin-right: calc(2.6667vw * var(--coef-w));
	margin-top: calc(2.4vw * var(--coef-w));
}

.content ul, 
.content ol {
	margin: calc(4vw * var(--coef-w)) 0;
	display: flex;
	flex-direction: column;
}

.content a {
	display: inline;
	text-decoration: underline;
	color: var(--color-main);
}

.content li a {
	display: contents;
}

.content img {
	margin: calc(4vw * var(--coef-w)) 0;
	width: 100%;
	height: auto;
	border-radius: calc(5.3333vw * var(--coef-w));
}

.content figure {
	margin: 0;
}

.content p:first-child {
	margin-top: 0;
}

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

.content table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px double var(--color-stroke);
}

.content table td {
	min-width: 2em;
	padding: 0.4em;
	border: 1px solid var(--color-stroke);
}

/* MODALS */

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: calc(2.1333vw * var(--coef-w));
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(8vw * var(--coef-w));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: calc(4vw * var(--coef-w));
    right: calc(4vw * var(--coef-w));
}

.closemodal svg,
.closemodal img {
    width: calc(3.2vw * var(--coef-w));
    height: calc(3.2vw * var(--coef-w));
}

/* counter */

.counter-inner {
    position: relative;
    width: calc(27.2vw * var(--coef-w));
}

.counter.small .counter-inner {
    width: calc(27.2vw * var(--coef-w));
}

.counter-input {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: calc(1.6vw * var(--coef-w));
    width: calc(27.2vw * var(--coef-w));
    height: calc(8vw * var(--coef-w));
    text-align: center;
    cursor: pointer;
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
}

.counter.small .counter-input {
    width: calc(27.2vw * var(--coef-w));
}

.counter-symbol {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: .3s;
    display: flex;
    width: calc(8vw * var(--coef-w));
    height: calc(8vw * var(--coef-w));
    align-items: center;
    justify-content: center;
    user-select: none;
    border: 1px solid var(--color-stroke);
    background: var(--color-white);
    border-radius: calc(1.6vw * var(--coef-w));
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
	color: var(--color-main);
}

.counter-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-plus {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-symbol:hover {
    color: var(--color-main);
}

.counter.small .counter-symbol {
    width: calc(8vw * var(--coef-w));
} 

    .btn {
        border-radius: calc(5.3333vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .3s;
        border: none;
        text-align: center;
        height: calc(11.2vw * var(--coef-w));
        font-family: 'Open Sans';
        padding: 0 calc(2.6667vw * var(--coef-w));
        position: relative;
    }

    .btn-big-cart svg,
    .btn-product svg {
        width: calc(4.8vw * var(--coef-w));
        height: calc(4.8vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
    }

    .btn-mobile {
        display: flex;
    }

    .btn-desktop {
        display: none;
    }

    .btn-100 {
        width: 100%;
    }

    .btn-240 {
        width: calc(64vw * var(--coef-w));
    }

    .btn-290 {
        width: calc(77.3333vw * var(--coef-w));
    }

    .btn-200 {
        width: calc(53.3333vw * var(--coef-w));
    }

    .btn-340 {
        width: calc(90.6667vw * var(--coef-w));
    }

    .btn-170 {
        width: calc(45.3333vw * var(--coef-w));
    }

    .btn-cart {
        width: calc(9.6vw * var(--coef-w));
        height: calc(9.6vw * var(--coef-w));
        border-radius: calc(2.6667vw * var(--coef-w));
    }

    .btn-cart svg,
    .btn-cart img {
        width: calc(4.8vw * var(--coef-w));
        height: calc(4.8vw * var(--coef-w));
    }
    
    .btn-inactive {
        background: var(--color-grey) !important;
        pointer-events: none;
    }

    .btn-yellow {
        background: var(--color-main);
    }

    .btn-red {
        background: #FA580F;
    }

    .btn-main {
        background: var(--color-main);
    }

    .btn-empty {
        color: var(--color-text-main);
        border: 1px solid var(--color-text-main);
        background: transparent;
    }

    .btn-empty.btn-main {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-dark-main {
        color: var(--color-white);
        background: var(--color-text-main);
    }

    .btn-none {
        display: none;
    }

    .btn-gradient {
        background: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
    }

    .btn-left {
        padding-left: calc(3.2vw * var(--coef-w));
    }

    .btn-left::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        left: calc(9.6vw * var(--coef-w));
    }

    .btn-right {
        padding-right: calc(3.2vw * var(--coef-w));
    }

    .btn-right::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        right: calc(9.6vw * var(--coef-w));
    }

    .btn svg {
        width: calc(2.6667vw * var(--coef-w));
        height: calc(2.6667vw * var(--coef-w));
    }

    .btn-left svg {
        margin-right: calc(6.6667vw * var(--coef-w));
    }

    .btn-right svg {
        margin-left: calc(6.6667vw * var(--coef-w));
    }

    .btn-white {
        background: var(--color-white);
        color: var(--color-main);
    }

    .btn-white:after {
        border-color: var(--color-main);
        transition: .3s;
    }

    .btn-white path {
        fill: var(--color-main);
        transition: .3s;
    }


 
    /* Slider */
    .slick-slider
    {
        position: relative;

        display: block;
        box-sizing: border-box;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        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);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

    .slick-slide
    {
        display: none;
        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;
    }




    .index-banner-wrapper {
        position: relative;
        margin-bottom: calc(4vw * var(--coef-w));
        margin-top: calc(4vw * var(--coef-w));
        height: calc(129.3333vw * var(--coef-w));
        overflow: hidden;
    }

    .index-banner-item {
        position: relative;
        height: calc(129.3333vw * var(--coef-w));
        border-radius: calc(8vw * var(--coef-w));
        overflow: hidden;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 0 calc(4vw * var(--coef-w));
        padding-bottom: calc(14.1333vw * var(--coef-w));
    }

    .index-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: calc(8vw * var(--coef-w));
    }

    .index-banner-item-subtitle {
        margin-top: calc(1.3333vw * var(--coef-w));
        margin-bottom: calc(3.2vw * var(--coef-w));
    }

    .index-banner-item-desc {
        margin-bottom: calc(4vw * var(--coef-w));
        width: calc(76vw * var(--coef-w));
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w));
    }

    .index-banner-item .btn {
        height: calc(9.3333vw * var(--coef-w));
        padding-left: calc(5.0667vw * var(--coef-w));
        padding-right: calc(4vw * var(--coef-w));
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: calc(8vw * var(--coef-w));
    }

    .index-banner-item .btn svg {
        width: calc(2.4vw * var(--coef-w));
        height: calc(2.4vw * var(--coef-w));
        margin-left: calc(8vw * var(--coef-w));
    }

    .index-banner-item .btn:after {
        right: calc(10.1333vw * var(--coef-w));
    }

    .index-banner-arrows {
        
        display: none
    }

    .slick-dots {
        display: flex;
        position: absolute;
        bottom: calc(4vw * var(--coef-w));
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .slick-dots li button {
        background: var(--color-white);
        border: 1px solid var(--color-main) !important;
        border: none;
        font-size: 0; 
        border-radius: 50%; 
        padding: 0;
        width: calc(2.6667vw * var(--coef-w));
        height: calc(2.6667vw * var(--coef-w));
        transition: .3s;
        position: relative;
    }

    .slick-dots li {
        margin: 0 calc(1.3333vw * var(--coef-w));
        list-style: none;
        display: flex;
        width: calc(2.6667vw * var(--coef-w));
        height: calc(2.6667vw * var(--coef-w));
    }

    /* .slick-dots .slick-active {
        width: calc(10.6667vw * var(--coef-w)) !important;
    } */

    .slick-dots button:after {
        content: "";
        display: block;
        width: calc(1.6vw * var(--coef-w));
        height: calc(1.6vw * var(--coef-w));
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-white);
        transition: .3s;
    }

    .slick-dots .slick-active button:after {
        background: var(--color-main);
    }

    li.slick-active {
        box-sizing: border-box;
        border-radius: 50%; 
        position: relative
    }


 

    .ticker {
        background: linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%);
        padding: calc(1.3333vw * var(--coef-w)) 0;
        width: 100%;
        overflow: hidden;
    }

    .ticker-item {
        font-family: 'Montserrat';
        font-size: calc(2.6667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(6.6667vw * var(--coef-w));
        margin-right: calc(8vw * var(--coef-w));
        white-space: nowrap;
    }

    .ticker-list {
        animation: ticker 30s infinite linear;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
  

 

    .product-card {
        width: calc(43.2vw * var(--coef-w));
        border-radius: calc(2.6667vw * var(--coef-w));
        background: var(--color-white);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
        margin-right: calc(4vw * var(--coef-w));
    }

    .product-card-image {
        width: calc(32vw * var(--coef-w));
        height: calc(37.3333vw * var(--coef-w));
        object-fit: contain;
        margin: 0 auto;
    }

    .product-card:nth-child(2n) {
        margin-right: 0;
    }

    .product-card-content {
        padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w));
        flex: 1;
    }

    .product-card-content-info {
        flex: 1;
    }

    .product-card-title {
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.8vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
        transition: .3s;
        display: block;
    }

    .product-card-color {
        width: calc(3.2vw * var(--coef-w));
        height: calc(3.2vw * var(--coef-w));
        padding: calc(1.0667vw * var(--coef-w));
        border-radius: 50%;
        margin-right: calc(1.3333vw * var(--coef-w));
        margin-bottom: calc(1.3333vw * var(--coef-w));
        position: relative;
        cursor: pointer;
        border: 1px solid var(--color-stroke);
    }

    .product-card-color.active::after {
        content: "";
        display: block;
        width: calc(4.2667vw * var(--coef-w));
        height: calc(4.2667vw * var(--coef-w));
        border-radius: 50%;
        border: 1px solid var(--color-black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-card-color.active {
        margin: 0 calc(0vw * var(--coef-w));
        margin-right: calc(1.3333vw * var(--coef-w));
    }

    .product-card-color:first-child {
        margin-left: 0;
    }

    .product-card-footer {
        margin-top: calc(4vw * var(--coef-w));
        border-top: 1px solid var(--color-stroke);
        padding-top: calc(3.2vw * var(--coef-w));
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card-price {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .product-card-footer .btn {
        height: calc(8vw * var(--coef-w));
        padding: calc(1.8667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w));
        padding-right: calc(4vw * var(--coef-w));
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4vw * var(--coef-w));
    }

    .product-card-short-desc {
        font-family: 'Montserrat';
        font-size: calc(2.6667vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(3.7333vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
        display: none;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .product-items-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .product-items-inner .product-card {
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .products-items {
        margin-bottom: calc(-2.6667vw * var(--coef-w));
    }

    .products-items.products-items-slider .product-items-inner {
        overflow: auto;
        flex-wrap: nowrap;
        padding: calc(2.6667vw * var(--coef-w)) var(--offset);
        padding-right: 0;
    }

    .products-items.products-items-slider .product-items-inner::-webkit-scrollbar {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .products-items.products-items-slider .product-card {
        width: calc(40vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
        flex-shrink: 0;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .products-tags {
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .products-tag {
        padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w));
        border-radius: calc(26.6667vw * var(--coef-w));
        font-family: 'Montserrat';
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(3.7333vw * var(--coef-w));
        margin-right: calc(1.3333vw * var(--coef-w));
        background: transparent;
        transition: .3s;
        cursor: pointer;
    }

    .products-tag:last-child {
        margin-right: 0;
    }

    .products-tag.active {
        background: var(--color-main);
        color: var(--color-white);
    }

    .products-tags-items {
        display: none;
    }

    .products-tags-items.active {
        display: block;
    }


 

    .advantages-item {
        border-radius: calc(5.3333vw * var(--coef-w));
        background: var(--white, #FFF);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
        padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w)) calc(5.3333vw * var(--coef-w));
        width: calc(42.6667vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .advantages-item:nth-child(2n) {
        margin-right: 0;
    }

    .advantages-image {
        margin-bottom: calc(2.6667vw * var(--coef-w));
        height: calc(14.9333vw * var(--coef-w));
    }

    .advantages-text {
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(3.7333vw * var(--coef-w));
        display: inline;
    }

    .advantages-text br {
        display: none;
        margin: 0 calc(1.3333vw * var(--coef-w));
    }


 

    .service-banner {
        position: relative;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: calc(9.3333vw * var(--coef-w)) 0 calc(40.5333vw * var(--coef-w));
    }

    .service-banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        object-fit: cover;
    }

    .service-banner-title {
        margin-bottom: calc(5.3333vw * var(--coef-w));
        font-size: calc(5.3333vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(6.4vw * var(--coef-w));
    }

    .service-banner-title span {
        color: var(--color-main);
    }

    .service-banner-subtitle {
        margin-bottom: calc(2.6667vw * var(--coef-w));
        font-size: calc(4.2667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .service-banner-description {
        text-align: center;
        font-family: 'Montserrat';
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w));
        margin-bottom: calc(5.3333vw * var(--coef-w));
        width: calc(80vw * var(--coef-w));
    }

    .service-banner .btn {
        height: calc(9.0667vw * var(--coef-w));
        padding-left: calc(5.0667vw * var(--coef-w));
        padding-right: calc(3.7333vw * var(--coef-w));
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: calc(8vw * var(--coef-w));
    }

    .service-banner .btn svg {
        width: calc(2.6667vw * var(--coef-w));
        height: calc(2.6667vw * var(--coef-w));
        margin-left: calc(8vw * var(--coef-w));
    }

    .service-banner .btn:after {
        right: calc(10.1333vw * var(--coef-w));
    }


 

    .category-card {
        height: calc(50.6667vw * var(--coef-w));
        position: relative;
        padding: calc(4vw * var(--coef-w));
        border-radius: calc(5.3333vw * var(--coef-w));
        overflow: hidden;
    }

    .category-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .category-card-content {
        position: relative;
        z-index: 1;
    }

    .category-card-description {
        font-family: 'Montserrat';
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w));
        margin-top: calc(1.3333vw * var(--coef-w));
    }


 

    .categories {
        margin-bottom: calc(13.3333vw * var(--coef-w));
    }

    .categories .category-card {
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .category-card,
    .category-card:nth-child(2n) {
        background: linear-gradient(109deg, #E9B9FF -272.17%, #F5F5F7 37.39%, #FFF 82.25%);
    }

    .category-card:nth-child(2n) {
        background: linear-gradient(251deg, #E8B9FF -99.38%, #F5F5F7 50.11%, #FFF 106.17%);
    }

    .category-card:nth-child(3n) {
        background: linear-gradient(55deg, #F0DAFB -35.6%, #F5F5F7 57.26%, rgba(255, 255, 255, 0.00) 109.3%);
    }

    .category-card:nth-child(4n) {
        background: #F5F5F7;
    }

    .category-card:nth-child(5n) {
        background: linear-gradient(128deg, #F5F5F7 46.61%, #E9B9FF 242.44%);
    }

    .category-card:nth-child(6n) {
        background: linear-gradient(90deg, #F3E6FA -14.39%, #F5F5F7 47.3%, rgba(255, 255, 255, 0.00) 62.85%, #F4EAFA 102.89%);
    }

    .category-card:last-child {
        margin-bottom: 0;
    }


 

    .input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .input-wrapper-100 {
        width: 100%;
    }

    .input {
        width: 100%;
        border: none;
        color: var(--color-text);
        background: var(--color-white);
        height: calc(9.6vw * var(--coef-w));
        border-radius: calc(8vw * var(--coef-w));
        padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w));
    }

    .input::placeholder {
        color: var(--color-grey);
    }

    .textarea {
        height: calc(26.6667vw * var(--coef-w));
        border-radius: calc(2.1333vw * var(--coef-w));
        resize: none;
        padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w));
    }

    .textarea-wrapper {
        height: calc(26.6667vw * var(--coef-w));
    }

    .textarea::-webkit-input-placeholder {
        color: var(--color-grey);
    }

    .input-label {
        position: absolute;
        top: calc(-2.4vw * var(--coef-w));
        left: calc(4vw * var(--coef-w));
        background: var(--color-white);
    }

    .input-grey, 
    .textarea-grey {
        border: 1px solid var(--color-stroke);
    }

    .pass-status {
        position: absolute;
        width: calc(4.8vw * var(--coef-w));
        height: calc(4.8vw * var(--coef-w));
        top: calc(2.6667vw * var(--coef-w));
        right: calc(4vw * var(--coef-w));
        cursor: pointer;
        user-select: none;
    }

    .pass-status svg {
        width: calc(5.8667vw * var(--coef-w));
        height: calc(5.8667vw * var(--coef-w));
    }

    .pass-status .hide {
        display: none;
    }

    .pass-status.active .hide {
        display: block;
    }

    .input-error {
        display: none;
    }


 

    .contacts-form {
        padding: calc(8vw * var(--coef-w)) calc(6.1333vw * var(--coef-w));
        border-radius: calc(8vw * var(--coef-w));
        overflow: hidden;
        position: relative;
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .contacts-form-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .contacts-form-title {
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .contacts-form-description {
        font-family: 'Montserrat';
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w));
        margin-bottom: calc(5.3333vw * var(--coef-w));
        text-align: center;
    }

    .contacts-form-form {
        width: 100%;
        order: 3;
    }

    .contacts-form-form .btn,
    .contacts-form-form .input-wrapper {
        width: 100%;
    }

    .contacts-form-form .input-wrapper {
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .contacts-form-form .btn {
        font-size: calc(3.7333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
        height: calc(9.6vw * var(--coef-w));
        margin-top: calc(1.3333vw * var(--coef-w));
    }

    .contacts-form-answer {
        margin-top: calc(2.6667vw * var(--coef-w));
        display: none;
        order: 4;
        text-align: center;
    }

    .contacts-form-footer {
        width: 100%;
        order: 2;
        align-items: flex-start;
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .contacts-form-footer-info {
        margin-bottom: calc(2.6667vw * var(--coef-w));
        align-items: flex-start;
    }

    .contacts-form-info-icon {
        width: calc(6.9333vw * var(--coef-w));
        height: calc(6.9333vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
    }

    .contacts-form-info {
        font-family: 'Montserrat';
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w)); 
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .contacts-form-social-image {
        width: calc(6.9333vw * var(--coef-w));
        height: calc(6.9333vw * var(--coef-w));
    }

    .contacts-form-social-link {
        margin-right: calc(3.2vw * var(--coef-w));
    }


 

    .instagram {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: calc(4.5333vw * var(--coef-w)) 0;
        border-radius: calc(5.3333vw * var(--coef-w));
        overflow: hidden;
        position: relative;
        margin-bottom: calc(8vw * var(--coef-w));
    }

    .instagram-back {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .instagram-icon {
        width: calc(8vw * var(--coef-w));
        height: calc(8vw * var(--coef-w));
        margin-left: calc(2.6667vw * var(--coef-w));
    }

    .instagram-text {
        width: calc(66.6667vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        text-align: center;
    }


 

    .search-items {
        padding: calc(2.6667vw * var(--coef-w)) 0;
    }

    .search-items-header {
        padding-bottom: calc(2.6667vw * var(--coef-w));
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .search-items-header-title {
        font-family: 'Montserrat';
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w));
    }

    .search-items-header-count {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
        margin-left: calc(2.6667vw * var(--coef-w));
        padding: calc(1.0667vw * var(--coef-w)) calc(2.6667vw * var(--coef-w));
        background: #E7E7E7;
        border-radius: calc(2.6667vw * var(--coef-w));
    }

    .search-items-header .btn {
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        height: calc(9.0667vw * var(--coef-w));
        padding-left: calc(5.0667vw * var(--coef-w));
        padding-right: calc(3.7333vw * var(--coef-w));
        border-radius: calc(8vw * var(--coef-w));
    }

    .search-items-header .btn::after {
        right: calc(10.1333vw * var(--coef-w));
    }

    .search-items-header .btn svg {
        margin-left: calc(8vw * var(--coef-w));
    }

    .search-products {
        margin-bottom: calc(-2.6667vw * var(--coef-w));
    }

    .search-product {
        padding: calc(1.3333vw * var(--coef-w)) 0;
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-product:nth-child(n + 6) {
        display: none;
    }

    .search-product-image {
        width: calc(21.3333vw * var(--coef-w));
        height: calc(24.8vw * var(--coef-w));
        object-fit: cover;
        margin-right: calc(5.3333vw * var(--coef-w));
    }

    .search-product-title {
        margin-bottom: calc(2.6667vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        width: calc(58.6667vw * var(--coef-w));
    }

    .search-product-price {
        font-size: calc(3.7333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .search-items-error {
        padding: calc(2.6667vw * var(--coef-w)) 0;
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
    }


 

    .search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-white);
        width: 100%;
    }

    .search-form {
        padding: 0 var(--offset);
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-icon {
        width: calc(5.3333vw * var(--coef-w));
        height: calc(5.3333vw * var(--coef-w));
    }

    .search-icon-close {
        cursor: pointer;
    }

    .search-input {
        padding: calc(4.8vw * var(--coef-w)) 0;
        margin: 0 calc(2.6667vw * var(--coef-w));
        flex: 1;
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        border: none;
    }


 

	.logo-wrapper {
		margin-left: calc(10.6667vw * var(--coef-w));
	}
	
	.logo {
		width: calc(22.6667vw * var(--coef-w));
		height: calc(9.0667vw * var(--coef-w));
		object-fit: contain;
	}

	.header {
		padding: calc(3.2vw * var(--coef-w)) 0;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.6vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(30, 30, 30, 0.10);
		position: sticky;
		top: 0;
		z-index: 10000;
		background: var(--color-white);
	}

	.header-inner {
		width: 100%;
	}

	.header.box-shadow-none {
		box-shadow: none;
	}

	.header-icon,
	.header-icon.svg {
		width: calc(6.6667vw * var(--coef-w));
		height: calc(6.6667vw * var(--coef-w));
		cursor: pointer;
		margin-left: calc(4vw * var(--coef-w));
		position: relative;
	}

	.header-icon-cart svg {
		width: calc(6.6667vw * var(--coef-w));
		height: calc(6.6667vw * var(--coef-w));
	}

	.header-icon-cart-counter {
		color: var(--color-white);
		text-align: center;
		font-family: 'Montserrat';
		font-size: calc(2.1333vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		width: calc(3.7333vw * var(--coef-w));
		height: calc(3.7333vw * var(--coef-w));
		border-radius: 50%;
		background: var(--color-main);
		border: calc(0.4vw * var(--coef-w)) solid var(--color-white);
		position: absolute;
		bottom: -2px;
		right: -2px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.toggle-item {
		width: calc(7.4667vw * var(--coef-w));
		height: 1px;
		background: var(--color-main);
		border-radius: 2px;
		margin: calc(1.8667vw * var(--coef-w)) 0;
		transition: .3s;
	}

	.toggle-item:nth-child(1) {
		margin-top: 0;
	}

	.toggle-item:nth-child(2) {
		width: calc(5.3333vw * var(--coef-w));
	}

	.toggle-item:nth-child(3) {
		margin-bottom: 0;
	}

	header.active .toggle-item:nth-child(2) {
		opacity: 0;
		visibility: hidden;
		margin: 0;
		height: 0;
	}

	header.active .toggle-item {
		margin: 0;
	}

	header.active .toggle-item:nth-child(1) {
		transform: rotate(45deg);
		margin-bottom: -2px;
	}

	header.active .toggle-item:nth-child(3) {
		transform: rotate(-45deg);
		margin-top: -2px;
	}




	.menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: calc(5.3333vw * var(--coef-w)) var(--offset);
		background: var(--color-white);
		border-top: 1px solid var(--color-stroke);
		box-shadow: calc(0vw * var(--coef-w)) calc(2.6667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(30, 30, 30, 0.10);
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: .3s;
	}

	header.active .menu {
		opacity: 1;
		pointer-events: all;
		visibility: visible;
	}

	.menu-items {
		border-bottom: 1px solid var(--color-stroke);
		padding: calc(2.6667vw * var(--coef-w)) 0;
	}

	.menu-items:first-child {
		padding-top: 0;
	}

	.categories-menu-item-wrapper {
		margin-bottom: calc(4vw * var(--coef-w));
		width: 100%;
	}

	.categories-menu-item {
		width: 100%;
		font-family: 'Montserrat';
		font-size: calc(3.7333vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5.3333vw * var(--coef-w));
	}

	.categories-menu-item-wrapper:last-child {
		margin-bottom: 0;
	}

	.first-header-menu-item {
		font-size: calc(3.2vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.8vw * var(--coef-w));
		margin-bottom: calc(4vw * var(--coef-w));
	}

	.first-header-menu-item:last-child {
		margin-bottom: 0;
	}

	.first-header-phone {
		font-size: calc(3.2vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(4.8vw * var(--coef-w));
		margin-bottom: calc(2.6667vw * var(--coef-w));
		margin-top: calc(4vw * var(--coef-w));
	}

	.first-header-worktime {
		font-size: calc(3.2vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(6.9333vw * var(--coef-w));
		margin-bottom: calc(2.6667vw * var(--coef-w));
	}

	.currency {
		font-size: calc(3.7333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(6.9333vw * var(--coef-w));
		cursor: pointer;
	}

	.currency:after {
		content: "";
		display: block;
		height: calc(4vw * var(--coef-w));
		width: 1px;
		background: var(--color-grey);
		margin: 0 calc(2.1333vw * var(--coef-w));
	}

	.currency:last-child::after {
		display: none;
	}

	.categories-submenu-link {
		margin-top: calc(2.6667vw * var(--coef-w));
	}

	.categories-submenu-items-col-models {
		margin-bottom: calc(4vw * var(--coef-w));
	}

	.categories-menu-item-submenu {
		display: none;
	}

	header.menu-active .menu-items-main,
	header.menu-active .menu-items-info,
	header.menu-active .categories-menu-item-wrapper{
		display: none;
	}

	header.menu-active .categories-menu-item-wrapper.active {
		display: block;
		margin-bottom: 0;
	}

	header.menu-active .menu-items {
		border: none;
	}

	.categories-menu-item-wrapper.active .categories-menu-item-submenu {
		display: flex;
		margin-top: calc(4vw * var(--coef-w));
	}

	.categories-menu-item-wrapper.active .categories-menu-item {
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.categories-menu-item-wrapper.active .categories-menu-item svg {
		transform: rotate(180deg);
		margin-right: calc(2.6667vw * var(--coef-w));
	}


 

    .cart {
        margin-top: calc(4vw * var(--coef-w));
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout {
        padding-bottom: 0;
        margin-top: 0;
    }

    .cart-checkout .cart-product {
        width: 100%;
    }

    .cart-checkout .cart-product:last-child {
        border-bottom: none;
    }

    .cart-product {
        margin-top: calc(5.3333vw * var(--coef-w));
        width: 100%;
        display: flex;
        position: relative;
    }

    .cart-product:first-child {
        margin-top: 0;
    }

    .cart-checkout .cart-product {
        align-items: flex-start;
    }

    .cart-products {
        max-height: calc(66.6667vw * var(--coef-w));
        overflow: auto;
        padding-right: calc(1.0667vw * var(--coef-w));
        margin-bottom: calc(4vw * var(--coef-w));
    }

    .cart-checkout .cart-products {
        max-height: calc(66.6667vw * var(--coef-w));
    }

    .cart-products::-webkit-scrollbar {
        width: 2px;
    }

    .cart-products::-webkit-scrollbar-track {
        background: var(--color-stroke);
    }

    .cart-products::-webkit-scrollbar-thumb {
        background: var(--color-main);
    }

    .cart-product-info-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }

    .cart-checkout .cart-product-info-block {
        align-items: flex-start;
    }

    .cart-product-title {
        display: block;
        width: calc(44.5333vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
    }

    .cart-product-desc {
        font-family: 'Montserrat';
        font-size: calc(2.6667vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(3.7333vw * var(--coef-w));
        margin-top: calc(1.0667vw * var(--coef-w));
    }

    .cart-product-image-wrapper {
        flex-shrink: 0;
    }

    .cart-product-image {
        width: calc(21.3333vw * var(--coef-w));
        height: calc(21.3333vw * var(--coef-w));
        border-radius: calc(1.6vw * var(--coef-w));
        object-fit: contain;
    }

    .cart-product-price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-price-wrapper {
        align-items: flex-start;
        margin: 0;
        margin-top: calc(1.6vw * var(--coef-w));
    }

    .cart-product-price {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .cart-product-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: calc(5.3333vw * var(--coef-w));
    }

    .cart-delete-product-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        position: absolute;
        top: 0;
        right: 0;
    }

    .cart-product:first-child .cart-delete-product-wrapper {
        top: 0;
    }

    .cart-delete-product {
        cursor: pointer;
    }

    .cart-delete-product-svg {
        width: calc(6.4vw * var(--coef-w));
        height: calc(6.4vw * var(--coef-w));
    }

    .cart-product:first-child .cart-delete-product-wrapper {
        top: 0;
    }

    .cart-checkout .cart-product-info {
        margin-right: 0;
    }

    .cart-checkout .cart-product-info-block {
        flex: 1;
    }

    .cart-checkout .cart-product-counter {
        width: 100%;
        margin-top: calc(1.3333vw * var(--coef-w));
    }


 

    .cart-info-items {
        padding: calc(4vw * var(--coef-w)) 0;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: calc(4vw * var(--coef-w));
    }

    .cart-info-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: calc(1.6vw * var(--coef-w));
    }

    .cart-info-item-title,
    .cart-info-item-value {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .cart-info-item:last-child {
        margin-bottom: 0;
    }


 

    .container-modal-cart {
        width: var(--column-width);
        border-radius: calc(5.3333vw * var(--coef-w));
        background: var(--color-white);
        padding: calc(5.3333vw * var(--coef-w)) calc(4vw * var(--coef-w));
    }

    .closemodal-cart {
        cursor: pointer;
        position: absolute;
        top: calc(4vw * var(--coef-w));
        right: calc(4vw * var(--coef-w));
    }

    .closemodal-cart svg {
        width: calc(3.2vw * var(--coef-w));
        height: calc(3.2vw * var(--coef-w));
    }

    .cart-title {
        align-self: flex-start;
    }

    .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #promocode-cart, 
    .modal-cart-block,
    #payment-cart,
    #modal-cart-info {
        width: 100%;
    }

    #modal-cart-info {
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    #mini-cart {
        margin-bottom: calc(4vw * var(--coef-w));
    }

    .modal-cart-btns {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .modal-cart-btns .btn {
        width: 100%;
        margin-bottom: calc(2.6667vw * var(--coef-w));
        height: calc(9.0667vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4vw * var(--coef-w));
    }

    .modal-cart-btns .btn:last-child {
        margin-bottom: 0;
    }


 

	.footer {
		padding: calc(8vw * var(--coef-w)) 0;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.6vw * var(--coef-w)) calc(8vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(30, 30, 30, 0.15);
	}

	.footer-logo {
		width: calc(32vw * var(--coef-w));
		margin-bottom: calc(8vw * var(--coef-w));
	}

	.copyright {
		font-family: 'Montserrat';
		font-size: calc(2.9333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.2667vw * var(--coef-w));
		margin-bottom: calc(4vw * var(--coef-w));
		margin-top: calc(8vw * var(--coef-w));
	}

	.probotiuk {
		font-size: calc(3.7333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(6.4vw * var(--coef-w));
	}

	.footer-col-title {
		font-size: calc(3.4667vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(4.8vw * var(--coef-w));
		letter-spacing: calc(0.0347vw * var(--coef-w));
		padding: calc(2.6667vw * var(--coef-w)) 0;
		width: 100%;
	}

	.footer-col-title svg {
		width: calc(2.4vw * var(--coef-w));
		height: calc(2.4vw * var(--coef-w));
		transition: .3s;
	}

	.footer-col.active .footer-col-title svg {
		transform: rotate(180deg);
	}

	.footer-col-links {
		border-top: 1px solid #EDEDED;
	}

	.footer-links {
		display: none;
	}

	.footer-col.active .footer-links {
		display: flex;
	}

	.footer-link {
		font-family: 'Montserrat';
		font-size: calc(2.9333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.2667vw * var(--coef-w)); 
		margin-bottom: calc(2.1333vw * var(--coef-w));
	}

	.footer-social {
		margin-top: calc(1.8667vw * var(--coef-w));
	}

	.footer-social-wrapper {
		margin-right: calc(4vw * var(--coef-w));
	}

	.footer-social-icon {
		width: calc(6.9333vw * var(--coef-w));
		height: calc(6.9333vw * var(--coef-w));
	}

	.footer-social-icon:last-child {
		margin-right: 0;
	}


 }