@import url(reset.css);
/* @import url(fonts.css); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Roboto:wght@300;400;700&display=swap');

button, i, img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

::-webkit-scrollbar{
    width:8px;
    height: 8px;
}

::-webkit-scrollbar-thumb{
    border: none;
    background-color: var( --site-color );
    border-radius: 4px;
    transition: background-color 0.5s;
}

::-webkit-scrollbar-thumb:hover{
    background-color: var( --site-color );
}

::-webkit-scrollbar-track{
    border-width:0;
    background: var( --site-bg-color );
}

* {
	-webkit-overflow-scrolling:touch;
    appearance: none;
	-webkit-appearance: none;
}

a, label, button, i, * {
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s, background-color 0.3s, opacity 0.3s;
	color: inherit;
}

a:hover {
    color: var( --site-hover-color );
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.2s;
    -webkit-user-drag: none;
}

sup {
	vertical-align: top;
}

input:focus,
input:active,
select {
	outline: none;
}

select {
	cursor: pointer;
}

input,
textarea {
    appearance: none;
	-webkit-appearance: none;
	outline: none;
}

.mar-b-none {
	margin-bottom: 0!important;
}

.clear {
	clear: both;
	display: block;
}

.hover-trans {
	transition: 0.2s;
}

.hover-trans:hover {
    --scale: 0.9;
	transform: scale(var( --scale ));
	-webkit-transform: scale(var( --scale ));
	-moz-transform: scale(var( --scale ));
	-o-transform: scale(var( --scale ));
	-ms-transform:scale(var( --scale ));
}

.def-bt {
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none!important;
	padding: 0;
	margin: 0;
	color: transparent;
	cursor: pointer;
	position: relative;
	transition: transform 0.3s, color 0.3s, height 0.3s;
}

.table-block {
	display: table;
	height: 100%;
}

	.table-block > * {
		display: table-cell;
		vertical-align: middle;
	}

.bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.image-block {
	width: 100%;
	position: relative;
	overflow: hidden;
}

	.image-block::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	
	.image-block > * {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
	}

.h-100 {
	height: 100%;
}

.w-100 {
    width: 100%;
}

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

strong {
	font-weight: bold;
}

em {
    font-style: italic;
}

.FA {
	font-family: var( --fa );
}

/* Preloader Start */
.preloader {
  --preloader-logo-h: 35px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: -70px;
  padding-bottom: 70px;
  transform: translateY(70px);
  background: var( --site-bg-color );
  z-index: 10000001;
}

.preloader .preloader_logo {
    width: 100%;
    height: auto;
    max-height: var( --preloader-logo-h );
    padding: 0 15px;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center bottom;
    position: absolute;
    top: calc( 45% - var( --preloader-logo-h ) );
    left: 0;
}

.preloader__row {
  position: relative;
  top: calc( 48% + var( --preloader-logo-h ) );
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: var( --site-color );
  border-radius: 100%;
  width: 30px;
  height: 30px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}
/* Preloader End */

/* ####################################### */

:root {
    --site-text-color: #000000;
    --site-text-color-2: #ffffff;
    --site-hover-color: #FF6B4A;

    --site-color: #115718;
    
    --site-bg-color: #ffffff;
    --site-bg-color-2: #F7F7F7;

    --input-color: #807F82;
    
    
    --cont-pad: 40px;
    
    --header-h: 70px;

    --f-50: 50px;
    --f-26: 26px;
    --f-40: 40px;
    --f-27: 27px;
    --f-25: 25px;
    --f-22: 22px;
    --f-20: 20px;
    --f-18: 18px;
    --f-16: 16px;

    --success-color: green;
    --notice-color: #FDBB59;
    --error-color: red;
    
    --fa: "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 5 Pro";
    --font-1: "Roboto", sans-serif;
    --font-2: "Montserrat", sans-serif;
}

html {
	width: 100%;
	min-width: 320px;
	max-width: 100%;
	height: 1px;
	min-height: 100%;
	overflow-x: hidden;
    font-family: var( --font-1 );
    line-height: normal;
    color: var( --site-text-color );
    background: var( --site-bg-color );
    background: var( --site-color );
}

    html * {
        line-height: inherit;
    }

body {
	width: 100%;
	min-width: 320px;
	position: relative;
    
}

.section-container {
	width: 100%;
    height: 100%;
	max-width: calc( 1180px + var( --cont-pad ) * 2 ); /* 1180px */
    box-sizing: border-box;
	padding: 0 var( --cont-pad );
	margin: 0 auto;
	position: relative;
    z-index: 2;
}

#header {
    font-family: var( --font-2 );
    color: var( --site-text-color-2 );
    user-select: none;
}

    .header-wrapper {
        height: calc( var( --header-h ) + 5px );
        padding: 15px 0 10px 0;
        background: var( --site-color );
        box-sizing: border-box;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000000;
        transform: translateY( -5px );
        transition: background-color 0.3s;
        box-shadow: 0 4px 6px 0px rgba( 0, 0, 0, 0.2 );
    }

    .header-wrapper.transparent-header {
        background: transparent;
        box-shadow: none;
    }

        .header-wrapper__menu-bt {
            flex: 0 0 auto;
            width: auto;
        }

            .mob-menu-bt {
                --w: 24px;
                width: var( --w );
                height: var( --w );
                position: relative;
            }

                .mob-menu-bt > span {
                    width: 100%;
                    height: 2px;
                    display: block;
                    background: #ffffff;
                    position: absolute;
                    left: 0;
                }

                .mob-menu-bt .line-1 {
                    top: 4px;
                }

                .mob-menu-bt .line-2 {
                    top: calc( 50% - 1px );
                }

                .mob-menu-bt .line-3 {
                    bottom: 4px;
                    width: 50%;
                    transition: width 0.3s;
                }

                .mob-menu-bt:hover .line-3 {
                    width: 100%;
                }

        .header-wrapper__logo {
            height: calc( var( --header-h ) - 32px );
        }

            .header-wrapper__logo a {
                display: inline-block;
                height: 100%;
                transition: transform 0.3s;
            }

            .header-wrapper__logo a:hover {
                transform: scale( 1.05 );
            }

                .header-wrapper__logo img {
                    width: auto;
                    max-width: 100%;
                    height: 100%;
                }
        
        .header-wrapper__nav {
            text-align: right;
        }

            .header-wrapper__nav li {
                display: inline-block;
                margin: 3px 11px;
                font-size: 15px;
                font-weight: 400;
            }

            .header-wrapper__nav li.current-menu-item > a, 
            .header__mob-menu-body li.current-menu-item > a
            /* .footer-top__nav li.current-menu-item > a */{ 
                opacity: 0.5;
                transition: opacity 0.3s, color 0.3s;
            }

            .header-wrapper__nav li.current-menu-item > a:hover, 
            .header__mob-menu-body li.current-menu-item > a:hover,
            .footer-top__nav li.current-menu-item > a:hover {
                opacity: 1;
            }
        
        .header-wrapper__right {
            flex: 0 0 auto;
            width: auto;
            text-align: right;
        }

            .header-wrapper__tel-link {
                font-size: 16px;
                font-weight: 400;
                position: relative;
            }

            .header-wrapper__tel-link:hover {
                color: inherit;
                opacity: 0.5;
            }

                .header-wrapper__tel-link::after {
                    content: var( --text );
                    display: block;
                    font-size: 10px;
                    position: absolute;
                    right: 0;
                }

                .header-wrapper__tel-link i {
                    margin-right: 7px;
                }

            .header-wrapper__right .select-block {
                margin: 0 20px;
            }

    .header__mob-menu {
        position: fixed;
        top: -70px;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        padding-bottom: 70px;
        transform: translateY( calc( ( 110vh + 70px ) * -1 ) );
        transition: transform 0.6s;
        will-change: transform;
        overflow: auto;
        z-index: 10000001;
        background-color: rgba( 0, 0, 0, 0.5 )!important;
        background-blend-mode: multiply;
    }

    .mob-menu-active .header__mob-menu {
        transform: translateY( 70px );
    }

        .header__mob-menu .header-wrapper {
            position: static;
            background: transparent;
            box-shadow: none;
        }

            .close-mob-menu-bt {
                vertical-align: middle;
            }

                .close-mob-menu-bt svg {
                    display: block;
                }

        .header__mob-menu-body {
            text-align: center;
            padding: 10vh 0 150px 0;
        }

            .header__mob-menu-body nav li {
                padding: 18px 0;
                font-size: 20px;
                text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
            }

            .header__mob-menu-footer {
                padding-top: 50px;
            }

                .header__mob-menu-footer .select-block {
                    margin-bottom: 30px;
                }

                .header__mob-menu-footer .select-block .selected-el,
                .header__mob-menu-footer .header-wrapper__tel-link {
                    font-size: 20px;
                    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
                }

                .header__mob-menu-footer .header-wrapper__tel-link {
                    margin-bottom: 15px;
                }

                .header__mob-menu-footer .header-wrapper__tel-link::after {
                    width: 80%;
                }
            
            .header__mob-menu-footer .social-links {
                margin-top: 35px;
            }

                .social-links a {
                    font-size: 26px;
                    margin: 0 8px;
                }

.main-title {
    font-family: var( --font-2 );
    font-size: var( --f-50 );
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var( --font-2 );
    font-weight: 700;
}

h1 {
    font-size: var( --f-40 );
    margin-bottom: 60px;
}

h2 {
    font-size: var( --f-40 );
    margin-bottom: 60px;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
    margin-top: 60px;
}

.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
    font-size: var( --f-27 );
    font-weight: 600;
    margin-bottom: 60px;
}

.content-block a {
    text-decoration: underline;
}

.content-block p,
.content-block li {
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px;
    line-height: 1.3;
}

.content-block ul {
    list-style-type: disc;
    padding-left: 25px;
}

.content-block ol {
    list-style-type: decimal;
    padding-left: 25px;
}

.content-block .short-text {
    --text-w: 80%;
    max-width: var( --text-w );
    margin-left: auto;
    margin-right: auto;
}

/*.content-block .short-text p,
.content-block .short-text ol,
.content-block .short-text ul,
.content-block .short-text h1,
.content-block .short-text h2,
.content-block .short-text h3,
.content-block .short-text h4,
.content-block .short-text h5,
.content-block .short-text h6,
.content-block .short-text form {
    max-width: var( --text-w );
    margin-left: auto;
    margin-right: auto;
}*/

.content-block img,
.content-block video,
.content-block iframe {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 55vh;
    border-radius: 20px;
    display: block;
    margin: 60px auto;
    object-fit: cover;
}

.content-block video {
    background: #000;
}

.content-block iframe { 
    width: 100%;
    height: 55vw;
}

.content-block .video-block {
    --play-bt-w: 50px;
    position: relative;
}

    .content-block .video-block > div::after {
        content: "";
        display: block;
        width: var(--play-bt-w);
        height: var(--play-bt-w);
        background: url(../images/youtube-play-bt.svg) center no-repeat;
        background-size: contain;
        position: absolute;
        top: calc( 50% - ( var( --play-bt-w ) / 2 ) );
        left: calc( 50% - ( var( --play-bt-w ) / 2 ) );
        z-index: 1;
        pointer-events: none;
    }

.content-block .main-img {
    width: 100%;
}

.content-block > :first-child,
.content-block .short-text > :first-child,
.content-block > :first-child form,
.content-block > :first-child > video,
.content-block > :first-child > iframe  {
    margin-top: 0!important;
}

.content-block > :last-child,
.content-block .short-text > :last-child,
.content-block > :last-child form,
.content-block > :last-child > video,
.content-block > :last-child > iframe  {
    margin-bottom: 0!important;
}

.content-block > :first-child img,
.content-block .short-text > :first-child img  {
    margin-top: 0!important;
}

.content-block > :last-child img,
.content-block .short-text > :last-child img  {
    margin-bottom: 0!important;
}

.content-block table {
    display: block;
    overflow: auto;
    width: 100%;
    font-family: var( --font-2 );
    font-size: 14px;
    font-weight: 400;
    margin: 60px 0;
}

    .content-block table strong {
        font-weight: 600;
    }

    .content-block table tbody,
    .content-block table thead,
    .content-block table tfoot {
        display: flex;
        flex-direction: column;
    }

        .content-block table tr {
            display: flex;
            justify-content: space-between;
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 5px;
            border-radius: 10px;
            padding: 13px;
            background: #C4E0BE;
        }

        .content-block table tr:nth-of-type( 2n ) {
            background: #F3FFF4;
        }

        .content-block table tr:last-of-type {
            margin-bottom: 0;
        }

            .content-block table tr td {
                min-width: 33%;
            }

.content-block form {
    width: 100%;
    padding: 45px;
    box-sizing: border-box;
    background: var( --site-bg-color-2 );
    border-radius: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

    .content-block form br,
    .hystmodal__window form br {
        display: none;
    }

.hystmodal__window .content-block h1,
.hystmodal__window .content-block h2,
.hystmodal__window .content-block h3,
.hystmodal__window .content-block h4,
.hystmodal__window .content-block h5,
.hystmodal__window .content-block h6 {
    margin-bottom: 40px;
}

.hystmodal__window .mar-top {
    margin-top: 40px;
}

.page-gallery {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
    --mar-v: 60px;
    margin-top: calc( var( --mar-v ) - var( --bs-gutter-y ) );
    margin-bottom: var( --mar-v );
}

    .page-gallery .image-block::before {
        padding-top: 56%;
    }

        .page-gallery .image-block a {
            display: block;
            border-radius: 20px;
            overflow: hidden;
        }

            .page-gallery .image-block img {
                width: 100%;
                height: 100%;
                max-height: none;
                margin: 0;
                border-radius: 0;
            }

            .page-gallery .image-block a:hover img {
                transform: scale( 1.1 );
            }

.page-gallery.column-3,
.page-gallery.column-4,
.two-cols-content .page-gallery {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

    .page-gallery.column-3 .image-block::before,
    .page-gallery.column-4 .image-block::before {
        padding-top: 75%;
    }

.page-slider {
    padding: 60px 50px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.20)!important;
    background-blend-mode: multiply;
    color: var( --site-text-color-2 );
}

.content-block .page-slider {
    margin-top: 60px;
    margin-bottom: 60px;
}

    .page-slider * {
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .page-slider .content-block {
        max-width: 600px;
    }

        .page-slider h1,
        .page-slider h2,
        .page-slider h3,
        .page-slider h4,
        .page-slider h5,
        .page-slider h6 {
            margin-top: 40px;
            margin-bottom: 40px;
        }

.two-cols-content {
    --bs-gutter-x: 90px;
    --bs-gutter-y: 0px;
    --mar-v: 60px;
    margin-top: calc( var( --mar-v ) - var( --bs-gutter-y ) );
    margin-bottom: var( --mar-v );
}

.two-cols-content-gray {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
    --mar-v: 60px;
    margin-top: var( --mar-v );
    margin-bottom: var( --mar-v );
}

    .two-cols-content-gray > div:nth-of-type( 1 ),
    .two-cols-content-gray > div:nth-of-type( 2 ) {
        margin-top: 0;
    }

    .two-cols-content-gray .content-block {
        height: 100%;
        background: var( --site-bg-color-2 );
        border-radius: 20px;
        box-sizing: border-box;
        padding: 25px;
    }

    .two-cols-content-gray h1,
    .two-cols-content-gray h2,
    .two-cols-content-gray h3,
    .two-cols-content-gray h4,
    .two-cols-content-gray h5,
    .two-cols-content-gray h6 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .two-cols-content-gray .contacts-address,
    .two-cols-content-gray .contacts-phones,
    .two-cols-content-gray .contacts-working-time {
        padding-left: 30px;
        position: relative;
    }

        .two-cols-content-gray .contacts-address a,
        .two-cols-content-gray .contacts-phones a {
            text-decoration: none;
        }

        .two-cols-content-gray .contacts-address i,
        .two-cols-content-gray .contacts-phones i,
        .two-cols-content-gray .contacts-working-time i {
            position: absolute;
            left: 0;
            top: 0;
            color: var( --site-hover-color );
            font-size: 18px;
        }

.form-content {
    --text-w: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.form-content.pad-v {
    padding: 15px 0;
}

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

.input {
    width: 100%;
    display: inline-block;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 29px;
    font-family: var( --font-2 );
}

    .input .input_title,
    .wcus-checkout-fields .form-row-wide .woocommerce-input-wrapper .input_title {
        display: inline-block;
        line-height: 1.4;
        font-size: 10px;
        color: var( --input-color );
        opacity: 0;
        position: absolute;
        bottom: 100%;
        transition: opacity 0.3s;
    }

    .input.no-empty .input_title,
    .wcus-checkout-fields .form-row-wide .woocommerce-input-wrapper .input_title {
        opacity: 1;
    }

    .input input,
    .input textarea,
    .input select,
    .woocommerce .zen-ui-select__value,
    .woocommerce .zen-ui-select__search-input,
    .woocommerce .woocommerce-input-wrapper input,
    .select2-container.select2-container--default .select2-search--dropdown .select2-search__field,
    .woocommerce .select2-container .select2-selection--single .select2-selection__rendered,
    .woocommerce-checkout-payment .payment_method_privat_join select {
        box-sizing: border-box;
        width: 100%;
        padding: 10px 0;
        outline: none;
        border: none;
        border-bottom: 1px solid var( --input-color );
        border-radius: 0;
        background: transparent;
        color: var( --input-color );
        font-family: var( --font-2 );
        font-size: var( --f-16 );
        letter-spacing: 0.5px;
        transition: border-color 0.3s, color 0.3s;
    }

    .input textarea {
        resize: none;
        height: 70px!important;
        padding-top: 0;
        margin-top: 10px;
    }

    .input input::placeholder,
    .input textarea::placeholder,
	.woocommerce .zen-ui-select__value::placeholder,
	.woocommerce .zen-ui-select__search-input::placeholder,
	.woocommerce .woocommerce-input-wrapper input::placeholder,
	.woocommerce .select2-container--default .select2-selection--single .select2-selection__placeholder	{
        font-family: var( --font-2 );
        font-size: 14px;
        letter-spacing: 0.5px;
        color: var( --input-color );
        transition: color 0.3s;
    }
    
    .input textarea::placeholder {
        padding-top: 3px;
    }

    .input .wpcf7-not-valid-tip,
    .wcus-checkout-fields .wpcf7-not-valid-tip {
        display: block;
        width: 100%;
        font-size: 10px;
        color: var( --error-color );
        position: absolute;
        left: 0;
        bottom: 1px;
    }

/* Tel inputs Start */
.iti--allow-dropdown {
    width: 100%;
}

.iti__country-list {
    list-style: none!important;
    padding-left: 0!important;
    width: 100%;
    white-space: normal!important;
}

    .iti__country-list li {
        margin-top: 0!important;
    }

    .iti__country {
        padding: 10px!important;
    }

.iti-mobile .iti--container {
    z-index: 10000000001!important;
}

.iti__flag-container {
    width: 100%;
}

.iti.iti--allow-dropdown {
    pointer-events: none;
}

    .iti.iti--allow-dropdown .iti__selected-flag {
        width: 52px;
    }

    .iti.iti--allow-dropdown input,
    .iti.iti--allow-dropdown * {
        pointer-events: auto;
    }

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent!important;
}

.input .intl-tel-input {
    width: 100%;
}

.input .intl-tel-input .country-list,
.input .iti .iti__country-list {
    background-color: var( --site-bg-color );
    border-color: var( --input-color );
}
    
    .input .intl-tel-input .country-list li,
    .input .iti .iti__country-list li {
        font-size: 14px;
        margin-bottom: 0;
    }

.input .intl-tel-input .country-list .divider,
.input .iti .iti__country-list .iti__divider,
.iti__divider {
    border-color: var( --input-color );
    padding: 0!important;
}

.input .intl-tel-input .country-list .country .dial-code,
.input .iti__country-list .iti__dial-code {
    color: var( --site-text-color );
    opacity: 0.6;
}

.input .iti {
    width: 100%;
}

    .input .iti .iti__country-list {
        /* min-width: 280px; */
        padding-left: 0;
        list-style: none;
        z-index: 100000;
    }

.input .intl-tel-input .wpcf7-not-valid-tip,
.input .iti .wpcf7-not-valid-tip {
    bottom: -16px;
}

/* Tel inputs End */

.bg-img {
    background: var( --bg-img-pc ) no-repeat;
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed;
}

.button {
    min-height: 45px!important;
    position: relative!important;
    padding: 10px 24px!important;
    border-radius: 30px!important;
    border: none!important;
    color: #ffffff!important;
    font-family: var( --font-2 )!important;
    font-weight: 700!important;
    font-size: 16px!important;
    overflow: hidden!important;
    transition: transform 0.3s!important;
    z-index: 1!important;
    outline: none!important;
    cursor: pointer!important;
}

.button::before,
.button::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.button::before {
    background: radial-gradient(4126.96% 75.43% at 11.91% 50.79%, #FF5D39 0%, #FF6B4A 51%, #FC7253 100%);
    opacity: 1;
    z-index: -2;
}

.button::after {
    background: linear-gradient(90deg, #FF2E00 0%, #FF5632 100%);
    opacity: 0;
    z-index: -1;
}

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

.button:active {
    transform: scale( 0.98 );
}

button.link-bt {
    position: relative;
}

    button.link-bt > a {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.button-left {
    --h: 45px;
    min-height: var( --h );
    position: relative;
    padding: 0;
    border-radius: 30px;
    color: var( --site-text-color );
    font-family: var( --font-2 );
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    z-index: 1;
}

    .button-left::before {
        content: "\f053";
        display: inline-block;
        border-radius: 100%;
        width: var( --h );
        height: var( --h );
        line-height: var( --h );
        font-family: var( --fa );
        color: #ffffff;
        text-align: center;
        background: var( --site-hover-color );
        margin-right: 13px;
        transition: background-color 0.3s;
    }

    .button-left:hover::before {
        background: var( --site-color );
    }

.tag-bt {
    --h: 42px;
    min-height: var( --h );
    position: relative;
    padding: 5px 20px;
    border-radius: 20px;
    background: var( --site-bg-color-2 );
    color: var( --site-text-color );
    font-family: var( --font-2 );
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    transition: transform 0.3s, color 0.3s;
    z-index: 1;
    white-space: nowrap;
}

.tag-bt.active {
    background: #c9c9c9!important;
    color: var( --site-text-color )!important;
}

.tag-bt:hover {
    color: var( --site-hover-color );
}

    .tag-bt img {
        width: 100%;
        height: auto;
        max-width: 24px;
        max-height: 24px;
        vertical-align: middle;
        margin-right: 5px;
    }

    .tag-bt span {
        vertical-align: middle;
    }

.tag-bt {
    margin: 0 calc( 10px - 0.36em ) 10px 0;
}

.cart-bt-img {
    --w: 40px;
    height: var( --w );
    width: var( --w );
    color: var( --site-color );
    background: #ffffff;
    border-radius: var( --w );
    position: relative;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.cart-bt-img:hover {
    background: var( --site-hover-color );
    color: #ffffff;
}

    .cart-bt-img i {
        transition: transform 0.3s;
    }

    .cart-bt-img:active i {
        transform: scale( 1.1 );
    }

    .cart-bt-img .cart-count {
        --w: 20px;
        height: var( --w );
        min-width: var( --w );
        display: block;
        box-sizing: border-box;
        border-radius: var( --w );
        padding: 0 5px;
        position: absolute;
        bottom: -7px;
        left: calc( 100% - var( --w ) + 7px );
        background: var( --site-hover-color );
        text-align: center;
        line-height: var( --w );
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        box-shadow: 0 0 5px 0 rgba( 0, 0, 0, 0.3 );
        transition: background-color 0.3s, color 0.3s;
    }

    .cart-bt-img:hover .cart-count {
        color: var( --site-color );
        background: #ffffff;
    }

.checkbox-wrapper {
    color: var( --input-color );
    display: inline-block;
    font-family: var( --font-2 );
    font-size: var( --f-16 );
    font-weight: 400;
    position: relative;
    line-height: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

    .checkbox-wrapper::before {
        content: "";
        display: block;
        width: 9px;
        height: 9px;
        position: absolute;
        top: 4px;
        left: 3px;
        background: var( --site-hover-color );
        opacity: 0;
    }

    .checkbox-wrapper:has( input:checked )::before {
        opacity: 1;
    }

    .checkbox-wrapper input {
        display: inline-block;
        width: 15px;
        height: 15px;
        border: 1px solid var( --site-text-color );
        background: transparent;
        margin: 0 5px 0 0;
        vertical-align: bottom;
        border-radius: 3px;
        margin-bottom: 1px;
        transform: translateY( 1px );
    }

    .checkbox-wrapper.checkbox-required input {
        border-color: var( --error-color );
        border-width: 2px;
    }

    .checkbox-wrapper input:checked {
        background: var( --site-hover-color );
        border-color: var( --site-text-color );
        border-width: 1px;
    }

    .checkbox-wrapper:has( input:checked ) input {
        background: transparent;
    }

    @-moz-document url-prefix() {
        .checkbox-wrapper input:checked {
            background: var( --site-hover-color )!important;
        }
    }


    .checkbox-wrapper span {
        font-size: 14px;
        opacity: 1;
        transition: opacity 0.3s;
    }

    .checkbox-wrapper:hover span {
        opacity: 1;
    }

.select-block {
    --disc-w: 5px;
    position: relative;
    display: inline-block;
}

    .select-block .selected-el {
        padding-left: calc( 15px + var(--disc-w) + 6px );
        position: relative;
        font-size: 16px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .select-block.active .selected-el span {
        pointer-events: none;
    }

        .select-block .selected-el span {
            text-transform: uppercase;
            color: inherit;
            transition: opacity 0.3s;
        }

        .select-block .selected-el:hover span {
            opacity: 0.5;
        }

            .select-block .selected-el i {
                margin-left: -24px;
                margin-right: 4px;
            }

    .select-block .select-container,
    .select-block .woocommerce-shipping-methods {
        color: var( --site-text-color );
        display: block;
        max-width: 160px;
        box-sizing: border-box;
        padding: 8px 0;
        border-radius: 10px;
        position: absolute;
        top: calc( 100% + 10px );
        left: 0;
        background: var( --site-bg-color );
        box-shadow: 0 0 5px 0 rgba( 0, 0, 0, 0.3 );
        z-index: 1001;
        transition: opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }

    .select-block.active .select-container,
    .select-block.active .woocommerce-shipping-methods {
        opacity: 1;
        pointer-events: auto;
    }

    .select-block .select-container li::before {
        content: "";
        display: block;
        width: var(--disc-w);
        height: var(--disc-w);
        background: var(--site-text-color);
        border-radius: 100%;
        position: absolute;
        left: 15px;
        top: calc( 50% - ( var( --disc-w ) / 2 ) );
        pointer-events: none;
        transition: background-color 0.3s;
    }

    .select-block .select-container li.current-lang::before,
    .select-block .select-container li.active::before {
        background: var(--site-hover-color);
    }

        .select-block .select-container li,
        .select-block .woocommerce-shipping-methods li {
            position: relative;
            line-height: 1;
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            transition: opacity 0.3s;
        }

        .select-block .select-container li.current-lang,
        .select-block .select-container li.active {
            font-weight: 700;
        }

            .select-block .select-container li a {
                display: block;
                padding: 5px 15px 5px calc( 15px + var(--disc-w) + 6px );
                line-height: 1;
            }

            .select-block .select-container li a:hover {
                opacity: 1;
                color: var( --site-hover-color );
            }

.section {
    --pad-v: 100px;
    padding: var( --pad-v ) 0;
    background-color: var( --site-bg-color );
    position: relative;
}

.section.gray {
    background-color: var( --site-bg-color-2 );
}

.section.top-section {
    padding-top: calc( var( --header-h ) + 25px );
}

    .section .section-anchor {
        position: absolute;
        top: calc( var( --header-h ) * -1 );
    }

.min-page-height {
    min-height: 80vh;
    background-color: var( --site-bg-color );
}

/* Breadcrumbs Section Start */
.breadcrumbs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}
    
    .breadcrumbs-wrapper .breadcrumbs {
        overflow-x: auto;
        overflow-y: hidden;
        min-width: 100%;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
        .breadcrumbs-wrapper .breadcrumbs > span {
            position: relative;
            font-size: 12px;
        }
        
            .breadcrumbs-wrapper .breadcrumbs > span::after {
                content: " / ";
                opacity: 0.6;
                margin: 0 5px;
            }
            
            .breadcrumbs-wrapper .breadcrumbs > span:last-of-type::after {
                display: none;
            }
            
            .breadcrumbs-wrapper .breadcrumbs > span:last-of-type > a {
                opacity: 1;
            }
    
            .breadcrumbs-wrapper .breadcrumbs > span a {
                opacity: 0.6;
            }
            
            .breadcrumbs-wrapper .breadcrumbs > span a:hover {
                opacity: 1;
            }
            
                .breadcrumbs-wrapper .breadcrumbs > span i {
                    margin-right: 3px;
                }
            
                .breadcrumbs-wrapper .breadcrumbs > span a * {
                    color: inherit;
                }
/* Breadcrumbs Section End */

.product-items-v1 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

    .product-items-v1__item > div {
        background: var( --site-bg-color-2 );
        border-radius: 20px;
        padding: 34px 20px;
        box-sizing: border-box;
        height: 100%;
        position: relative;
        font-family: var( --font-2 );
    }

        .product-items-v1__item-cols {
            --bs-gutter-x: 16px;
            --bs-gutter-y: 16px;
        }

            .product-items-v1__item-cols .image-block {
                overflow: visible;
            }

                .product-items-v1__item-cols .image-block a {
                    transition: transform 0.3s;
                }

                .product-items-v1__item-cols .image-block a:hover {
                    transform: scale( 1.05 );
                }

            .product-items-v1__title {
                font-family: var( --font-2 );
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 20px;
            }

            .product-items-v1__list li {
                list-style: none;
                font-size: 14px;
                margin-bottom: 12px;
                vertical-align: middle;
            }

            .product-items-v1__list li:last-of-type {
                margin-bottom: 0;
            }

                .product-items-v1__list li strong {
                    font-family: var( --font-2 );
                    font-size: 16px;
                    font-weight: 500;
                    margin-right: 5px;
                }

            .product-items-v1__footer {
                --bs-gutter-y: 20px;
                margin-top: 15px;
            }

                .product-items-v1__sale-label {
                    --w: 74px;
                    display: block;
                    width: var( --w );
                    height: var( --w );
                    line-height: var( --w );
                    background: var( --site-color );
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: 10;
                    border-radius: 10px 60px 60px 60px;
                    text-align: center;
                    color: #ffffff;
                    font-size: 24px;
                    font-weight: 700;
                    user-select: none;
                }

                .product-items-v1__price {
                    color: var( --site-hover-color );
                    font-family: var( --font-2 );
                    font-size: 18px;
                    font-weight: 600;

                    display: inline-block;
                    direction: rtl;
                }

                .product-items-v1__item .product-items-v1__price {
                    display: inline;
                }

                    .product-items-v1__item .product-items-v1__price .new {
                        margin-right: 7px;
                    }

                    .product-items-v1__price * {
                        text-decoration: inherit;
                    }

                    .product-items-v1__price > * {
                        display: inline-block;
                        direction: initial;
                    }

                    .product-items-v1__price span {
                        white-space: nowrap;
                    }

                    .product-items-v1__price .old,
                    .product-items-v1__price del .woocommerce-Price-amount {
                        color: #A7A6A6;
                        font-size: 16px;
                        display: inline-block;
                        text-decoration: line-through;
                    }

                .product-items-v1__footer .button {
                    min-height: 35px!important;
                    font-size: 14px!important;
                }

.product-items-v2 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 60px;
    --f-18: 18px;
}

    .product-items-v2__item > div {
        box-sizing: border-box;
        height: 100%;
        position: relative;
        font-family: var( --font-2 );
        font-size: var( --f-18 );
    }

        .product-items-v2__item .image-block a {
            display: block;
            border-radius: 10px;
            overflow: hidden;
        }

            .product-items-v2__item .image-block a img {
                object-fit: cover;
                height: 100%;
            }

            .product-items-v2.rev-hover .product-items-v2__item .image-block a img {
                object-fit: contain;
            }

            .product-items-v2__item .image-block a:hover img {
                transform: scale( 1.1 );
            }

            .product-items-v2.rev-hover .product-items-v2__item .image-block a:hover img {
                transform: scale( 0.95 );
            }

        .product-items-v2__title {
            display: inline-block;
            margin: 10px 0 32px 0;
            font-size: var( --f-18 );
            font-weight: 500;
        }

        .product-items-v2__footer .product-items-v1__price {
            position: absolute;
            left: 0;
            bottom: 0;
        }

        .product-items-v2__item .product-items-v1__price {
            font-size: var( --f-18 );
            margin-left: 0;
        }

        .product-items-v2__item .product-items-v1__price span {
            margin-right: 3px;
        }

        .product-items-v2__item .product-items-v1__price .old,
        .product-items-v2__item .product-items-v1__price del .woocommerce-Price-amount {
            display: inline-block;
            margin-right: 0;
        }

.product-prev-bottom-labels {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0!important;
    padding: 10px 10px 0 80px;
    text-align: right;
    position: absolute;
    top: 0;
    z-index: 1;
}

.product-block__left .product-prev-bottom-labels {
    width: calc( 100% - var( --prew-w ) );
}

    .product-prev-bottom-labels > span {
        display: inline-block;
        background: var( --site-color );
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        padding: 3px 10px 3px 10px;
        margin-left: 5px;
        margin-bottom: 5px;
        box-shadow: 0px 0px 10px 1px rgba( 1, 1, 1, 0.3 );
        border-radius: 20px;
    }

    .product-prev-bottom-labels .new-label {
        background: #0258e4;
    }

    .product-prev-bottom-labels .popular-label {
        background: var( --site-hover-color )
    }

.slick-slider * {
    outline: none!important;
}

html {
    --fancybox-scrollbar-compensate: 0!important;
}

.fancybox__container {
    z-index: 10000000!important;
    --fancybox-bg:rgba(0, 0, 0, 0.75) !important;
}

.fancybox-image,
.f-thumbs__slide__img {
    background: #ffffff!important;
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 120px!important;
    --f-thumb-clip-width: 60px!important;
    --f-thumb-height: 90px!important;
    --f-thumb-extra-gap: 12px!important;
}

.hystmodal {
    z-index: 1000000001!important;
}

.hystmodal__shadow {
    z-index: 1000000000!important;
    height: calc( 100% + 70px )!important;
    bottom: auto!important;
    top: -70px!important;
    transform: translateY(70px)!important;
    padding: 0 0 70px 0!important;
}

.hystmodal__window {
    padding: 55px 45px 45px 45px;
    background-color: var( --site-bg-color-2 )!important;
    border-radius: 20px;
    width: 500px!important;
    max-width: 95%!important;
    overflow: hidden !important;
}

.hystmodal__window  .hystmodal__close {
    width: 22px;
    height: 22px;
    top: 15px;
    right: 15px;
    padding: 0;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E") no-repeat;
    transition: transform 0.3s;
}

.hystmodal__window  .hystmodal__close:hover {
    transform: scale( 1.1 );
}

.hystmodal__window .hystmodal__close:focus {
    outline: none;
}

.mar-top {
    margin-top: 60px;
}

.mar-bottom {
    margin-bottom: 60px;
}

.mar-bottom-0 {
    margin-bottom: 0!important;
}

.mar-top-100 {
    margin-top: 100px;
}

.pad-top-0 {
    padding-top: 0!important;
}

.pad-top-60 {
    padding-top: 60px!important;
}

.pad-bottom-0 {
    padding-bottom: 0!important;
}

.pad-bottom-60 {
    padding-bottom: 60px!important;
}

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

.max-w-650 {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.blog-items {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

    .blog-items__item > div {
        height: 100%;
        border-radius: 20px;
        border: 1px solid #E7E7E7;;
        overflow: hidden;
        box-sizing: border-box;
    }

        .blog-items__item .image-block::before {
            padding-top: 60%;
        }

            .blog-items__item .image-block img {
                object-fit: cover;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
            }

            .blog-items__item .image-block a:hover img {
                transform: scale( 1.1 );
            }

        .blog-items__item-content {
            box-sizing: border-box;
            padding: 20px;
            padding-top: 22px;
        }

            .blog-items__item-content > a {
                display: inline-block;
                height: 30px;
                overflow: hidden;
                font-family: var( --font-2 );
                font-size: 14px;
                line-height: 15px;
                font-weight: 600;
            }

            .blog-items__item-content p {
                max-height: 66px;
                margin-bottom: 0px;
                font-size: 14px;
                font-weight: 300;

                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }

.paginate-block {
    --r-w: 40px;
    min-height: var( --r-w );
    padding-right: calc( ( var( --r-w ) + 15px ) * 2 );
    box-sizing: border-box;
    position: relative;
    margin-top: 60px;
    user-select: none;
}

    .paginate-block .page-numbers {
        display: inline-block;
        background: transparent;
        width: calc( var( --r-w ) / 1.5 );
        height: var( --r-w );
        line-height: var( --r-w );
        text-align: center;
    }
    
    .paginate-block .page-numbers.current {
        font-weight: 900;
        color: var( --site-hover-color );
    }

    .paginate-block .prev.page-numbers,
    .paginate-block .next.page-numbers {
        position: absolute;
        top: 0;
        width: var( --r-w );
        height: var( --r-w );
        line-height: var( --r-w );
        font-size: calc( var( --r-w ) / 2 );
        font-weight: 900;
        color: #ffffff;
        background: var( --site-hover-color );
        border-radius: 100%;
        margin-left: 15px;
        transition: background-color 0.3s;
    }
    
    .paginate-block .prev.page-numbers {
        right: calc( var( --r-w ) + 15px );
    }
    
    .paginate-block .next.page-numbers {
        right: 0;
    }
    
    .paginate-block.last-p .prev.page-numbers {
        right: 0;
    }
    
    .paginate-block .prev.page-numbers:hover,
    .paginate-block .next.page-numbers:hover {
        background: var(--site-color );
    }
    
        .paginate-block .prev.page-numbers i {
            margin-left: -2px;
            line-height: var( --r-w );
        }
        
        .paginate-block .next.page-numbers i {
            margin-right: -2px;
            line-height: var( --r-w );
        }

.help-block {
    --img-w: 310px;
    --pad-v: 60px;
    --pad-h: 50px;
    padding-bottom: 75px;
    position: relative;
}

    .help-block__image {
        width: var( --img-w );
        height: var( --img-w );
        display: block;
        position: absolute;
        bottom: 0;
        right: var( --pad-h );
        z-index: 2;
    }

    .help-block__content {
        padding: var( --pad-v ) calc( var( --img-w ) + var( --pad-h ) * 1.5 ) var( --pad-v ) var( --pad-h );
        background: var( --site-bg-color-2 );
        border-radius: 20px;
        overflow: hidden;
    }

        .help-block__content h2 {
            margin-bottom: 30px;
        }

.contacts-info-rows {
    font-family: var( --font-2 );
}

.content-block .contacts-info-rows {
    margin-top: 60px;
    margin-bottom: 60px;
}

    .contacts-info-rows > div {
        --bs-gutter-x: 0;
        min-height: 76px;
        padding: 15px 25px;
        box-sizing: border-box;
        background: #C4E0BE;
        border-radius: 10px;
        margin-top: 10px;
        overflow: hidden;
    }

    .contacts-info-rows > div:first-of-type {
        margin-top: 0;
    }

    .contacts-info-rows > div:nth-of-type( 2n ) {
        background: #F3FFF4;
    }

        .contacts-info-rows p {
            margin: 0;
            font-weight: 600;
            font-size: var( --f-16 );
        }

        .contacts-info-rows a {
            text-decoration: none;
            font-size: var( --f-16 );
        }

        .contacts-info-rows .col-sm-7 {
            padding-right: 20px;
        }

        .contacts-info-rows .col-sm-5 > .row {
            --bs-gutter-y: 5px;
        }
        
        .contacts-info-rows .col-sm-5 .col-12:last-of-type {
            text-align: right;
        }

.error-404-bg {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 35px auto;
    background: var( --site-color );
    border-radius: 30px 50% 50% 50%;
    color: var( --site-text-color-2 );
}

    .error-404-bg h1 {
        margin: 0;
        font-size: 150px;
        line-height: 1.1;
    }

        .error-404-bg h1 span {
            display: block;
            font-size: 30px;
            font-weight: 400;
        }

.faq-block__img {
    padding-top: 110px;
    padding-right: 10%;
}

.faq-block__item {
    box-sizing: border-box;
    border-radius: 20px;
    background: var( --site-bg-color );
    padding: 24px 30px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.faq-block__items .faq-block__item:first-of-type {
    margin-top: 0;
}

.faq-block__items.gray .faq-block__item {
    background: var( --site-bg-color-2 );
}

    .faq-block__item .anchor {
        position: absolute;
        top: calc( ( var( --header-h ) + 10px ) * -1 );
    }

    .faq-block__title {
        padding-right: 30px;
        margin-bottom: 0;
        font-size: var( --f-18 );
        font-weight: 500;
        position: relative;
        cursor: pointer;
        transition: color 0.3s;
        user-select: none;
    }

    .faq-block__title:hover {
        color: var( --site-hover-color );
    }

        .faq-block__title::before {
            content: "";
            display: block;
            position: absolute;
            top: -24px;
            right: -30px;
            bottom: -24px;
            left: -30px;
        }

        .faq-block__title::after {
            content: "";
            display: block;
            width: 17px;
            height: 10px;
            position: absolute;
            top: calc( 50% - 5px );
            right: 0;
            background: url( '../images/arrow-bottom.svg' ) center no-repeat;
            background-size: contain;
            transition: transform 0.3s;
        }

        .faq-block__item.active .faq-block__title::after {
            transform: rotate( 180deg );
        }

    .faq-block__item .faq-block__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s;
        will-change: max-height;
        transform: translateZ(0);
    }

    .faq-block__item.active .faq-block__content {
        max-height: 800px;
        transition: max-height 0.8s;
    }

    .faq-block__item.scroll .faq-block__content {
        overflow: auto;
    }

        .faq-block__item .faq-block__content p,
        .faq-block__item .faq-block__content li,
        .faq-block__item .faq-block__content table  {
            margin-top: 20px!important;
            font-size: 14px;
            font-weight: 300;
            line-height: 1.3;
        }

footer {
    font-family: var( --font-2 );
    background: var( --site-color );
    color: #ffffff;
}

    .footer-top {
        padding: 70px 0;
    }

        .footer-top p {
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 20px;
            line-height: 1.3;
        }

            .footer-top p strong {
                font-weight: 600;
            }

        footer .header-wrapper__logo {
            height: calc(var(--header-h) - 20px);
        }

        .footer-top__nav li {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 25px;
        }
        
        .footer-top .footer-top__main-phone {
            margin-bottom: 25px;
        }

        .footer-top__contacts a:hover {
            opacity: 0.5;
            color: inherit;
        }

        .footer-top__contacts .social-links {
            margin-left: -8px;
        }

        .footer-top__lang {
            margin-bottom: 20px;
            margin-left: -3px;
        }

        .footer-top__phone a {
            margin-right: 5px;
        }

        .footer-top__phone i {
            font-size: 16px;
        }

    .footer-bottom {
        padding: 15px 0;
        border-top: 1px solid #ffffff;
    }

        .footer-bottom .row {
            --bs-gutter-y: 15px;
        }

            .footer-bottom .col-12:last-of-type {
                text-align: right;
            }

            .footer-bottom p {
                font-size: 14px;
                font-weight: 300;
            }

                .footer-bottom a {
                    margin-right: 50px;
                    display: inline-block;
                }

                .footer-bottom a:last-of-type {
                    margin-right: 0;
                }

                .footer-bottom a:hover {
                    color: inherit;
                    opacity: 0.5;
                }

.product-cat-slider {
    position: relative;
}

    .product-cat-slider .slick-track {
        display: flex!important;
    }

    .product-cat-slider .slick-arrow {
        --w: 32px;
        --f-s: 16px;
        position: absolute;
        z-index: 5;
        background: var(--site-hover-color);
        width: var(--w);
        height: var(--w);
        line-height: var(--w);
        padding: 0;
        border-radius: 50%;
        border: none;
        overflow: hidden;
        color: transparent;
        cursor: pointer;
        box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
        transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
    }

    .product-cat-slider .slick-prev {
        top: calc(50% - (var(--w) / 2));
        left: -15px;
    }

    .product-cat-slider .slick-next {
        top: calc(50% - (var(--w) / 2));
        right: -15px;
    }

        .product-cat-slider .slick-arrow::before {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            line-height: var(--w);
            text-align: center;
            font-family: var(--fa);
            font-size: var(--f-s);
            font-weight: 900;
            color: #ffffff;
        }

        .product-cat-slider .slick-prev::before {
            content: "\f053";
        }

        .product-cat-slider .slick-next::before {
            content: "\f054";
        }

    .product-cat-slider__item {
        height: auto!important;
    }

        .product-cat-slider__item > div {
            color: var( --site-text-color-2 );
            height: 100%;
            padding: 30px;
            box-sizing: border-box;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .product-cat-slider__item.image-block > div {
            position: absolute;
        }

        .product-cat-slider__item.image-block::before {
            padding-top: var( --image-pad-pc );
        }

            .product-cat-slider__item > div > a {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
            }

            .product-cat-slider__item .content-block * {
                text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            }

            .product-cat-slider__item h1,
            .product-cat-slider__item h2,
            .product-cat-slider__item h3,
            .product-cat-slider__item h4,
            .product-cat-slider__item h5,
            .product-cat-slider__item h6 {
                margin-top: 20px;
                margin-bottom: 20px;
            }

            .product-cat-slider__item .content-block .bts-block {
                margin-top: 20px;
            }

                .product-cat-slider__item .content-block .button {
                    text-shadow: none;
                }

@media (hover: none) and (pointer: coarse) {
    .cart-bt-img:active i,
    .header-wrapper__logo a:hover,
    .product-items-v1__item-cols .image-block a:hover,
    .product-items-v2__item .image-block a:hover img,
    .product-items-v2.rev-hover .product-items-v2__item .image-block a:hover img,
    .blog-items__item .image-block a:hover img,
    .hystmodal__window  .hystmodal__close:hover,
    .page-gallery .image-block a:hover img {
        transform: scale( 1 );
    }

    .header-wrapper__tel-link:hover,
    .select-block .selected-el:hover span {
        opacity: 1;
    }

    ::-webkit-scrollbar {
        height: 0;
    }

    .bg-fixed {
        background-attachment: scroll;
    }

    .faq-block__title:hover {
        color: inherit;
    }
}

@media all and (max-width: 1399px) {
    .header-wrapper__nav li {
        font-size: 14px;
    }
}

@media all and (max-width: 1199px) {
    .product-items-v1 {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .product-items-v1__title,
    .product-items-v1__footer {
        text-align: center;
    }

    .product-items-v2 {
        --f-18: 14px;
    }

    .product-items-v2__item .product-items-v1__price .old,
    .product-items-v2__item .product-items-v1__price del .woocommerce-Price-amount {
        font-size: 12px;
    }

    .product-items-v2__title {
        margin-bottom: 26px;
    }

    .contacts-info-rows .col-sm-5 .col-12 {
        text-align: right;
    }
}

@media all and (max-width: 991px) {
    :root {
        --f-50: 36px;
        --f-40: 26px;
        --f-27: 24px;
        --f-26: 18px;
        --f-25: 18px;
        --f-22: 18px;
        --f-20: 16px;
        --f-18: 14px;
    }

    h1,
    h2,
    .content-block h3,
    .content-block h4,
    .content-block h5,
    .content-block h6  {
        margin-bottom: 40px;
    }

    .breadcrumbs-wrapper {
        margin-bottom: 35px;
    }

    .paginate-block {
        margin-top: 40px;
    }

    .content-block h1,
    .content-block h2,
    .content-block h3,
    .content-block h4,
    .content-block h5,
    .content-block h6 {
        margin-top: 40px;
    }

    .content-block form {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .content-block img,
    .content-block video,
    .content-block iframe {
        margin: 40px auto;
    }

    .page-gallery {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
        --mar-v: 40px;
    }

    .two-cols-content {
        --bs-gutter-x: 40px;
        --bs-gutter-y: 0px;
        --mar-v: 40px;
        margin-top: 40px;
    }

    .content-block .contacts-info-rows {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .content-block table {
        margin: 40px 0;
    }

    .page-slider {
        padding: 40px 30px;
    }

    .content-block .page-slider {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .two-cols-content-gray {
        --mar-v: 40px;
    }

    .section {
        --pad-v: 50px;
    }

    .mar-top {
        margin-top: 40px;
    }

    .mar-bottom {
        margin-bottom: 40px;
    }

    .mar-top-100 {
        margin-top: 50px;
    }

    .pad-top-60 {
        padding-top: 40px!important;
    }

    .pad-bottom-60 {
        padding-bottom: 40px!important;
    }

    .product-items-v1__item.mob-hide {
        display: none;
    }

    footer .header-wrapper__logo  {
        margin-bottom: 50px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .product-items-v2 {
        --bs-gutter-x: 60px;
        --bs-gutter-y: 30px;
        --f-18: 18px;
    }

    .product-items-v2__item .product-items-v1__price .old,
    .product-items-v2__item .product-items-v1__price del .woocommerce-Price-amount {
        font-size: 16px;
    }

    .product-items-v2__title {
        margin-bottom: 32px;
    }

    .form-content.pad-v {
        padding: 0;
    }

    .help-block {
        --img-w: 250px;
        --pad-v: 50px;
        --pad-h: 35px;
        padding-bottom: 50px;
    }

    .faq-block__img {
        padding-top: 0;
        padding-right: 0;
    }

    .faq-block__img img {
        display: block;
        max-width: 280px;
        margin: 0 auto 50px auto;
    }

    .faq-block__items h2,
    .faq-block__items .bts-block {
        text-align: center;
    }

    .page-gallery.column-3,
    .page-gallery.column-4 {
        --bs-gutter-x: 10px!important;
        --bs-gutter-y: 10px!important;
    }
}

@media all and (max-width: 767px) {
    .content-block .short-text {
        --text-w: 100%;
    }

    .product-items-v1__title,
    .product-items-v1__footer {
        text-align: left;
    }

    .footer-top {
        padding-top: 40px;
        text-align: center;
    }

    .footer-top__contacts {
        margin-top: 50px;
    }

    .footer-top__contacts .social-links,
    .footer-top__lang {
        margin-left: 0;
    }

    .footer-bottom,
    .footer-bottom .col-12:last-of-type {
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 5px;
    }

    .product-items-v2 {
        --bs-gutter-x: 40px;
    }

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

    .help-block {
        --pad-v: 40px;
        --pad-h: 18px;
        padding-bottom: 0;
    }

    .help-block__content {
        padding-right: var( --pad-h );
    }

    .help-block__image {
        position: static;
        margin-bottom: 40px;
        max-width: 175px;
        width: 100%;
        height: auto;
    }

    .two-cols-content {
        --bs-gutter-x: 0px;
        --bs-gutter-y: 40px;
    }

    .two-cols-content > .col-12:first-of-type {
        margin-top: 0;
    }

    .two-cols-content.flex-column-reverse > .col-12:first-of-type {
        margin-top: var( --mar-v );
    }

    .two-cols-content.flex-column-reverse > .col-12:last-of-type {
        margin-top: 0;
    }

    .two-cols-content-gray {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }
    
    .two-cols-content-gray > div:nth-of-type( 2 ) {
        margin-top: var( --bs-gutter-y );
    }

    .faq-block__item {
        padding: 14px 15px;
        margin-top: 10px;
    }

    .faq-block__title::before {
        top: -14px;
        right: -15px;
        bottom: -14px;
        left: -15px;
    }

    .faq-block__title::after {
        content: "";
        display: block;
        width: 13px;
        height: 8px;
        position: absolute;
        top: calc( 50% - 4px );
    }
}

@media all and (max-width: 575px) {
    :root {
        --f-16: 14px;
        --cont-pad: 20px;
    }

    .bg-img {
        background: var( --bg-img-mob ) no-repeat;
        background-size: cover;
    }

    .header-wrapper__menu-bt,
    .header-wrapper__right {
        width: 64px;
    }

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

    .product-items-v1 {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 30px;
    }

    .product-items-v1__title,
    .product-items-v1__footer {
        text-align: center;
    }

    .product-items-v1__item-cols .image-block::before {
        padding-top: 75%;
    }

    .product-items-v1__list li strong {
        font-size: 14px;
        margin-right: 5px;
    }

    .product-items-v1__footer {
        --bs-gutter-y: 15px;
        margin-top: 0;
    }

    .content-block form {
        padding: 35px 24px;
    }

    .input {
        margin-bottom: 25px;
    }

    .hystmodal__window {
        padding: 55px 24px 24px 24px;
    }

    .paginate-block {
        padding-right: 0;
        padding-top: calc( var( --r-w ) + 5px );
        text-align: center;
    }
    
    .paginate-block .next.page-numbers {
        right: calc( 50% - var( --r-w ) - 7.5px );
    }
    
    .paginate-block .prev.page-numbers {
        right: calc( 50% + 7.5px );
    }
    
    .paginate-block.first-p .next.page-numbers,
    .paginate-block.last-p .prev.page-numbers {
        right: calc( 50% - ( var( --r-w ) / 2 ) );
    }

    .product-items-v2 {
        --bs-gutter-x: 10px;
        --f-18: 14px;
    }

    .product-items-v2__item .product-items-v1__price .old,
    .product-items-v2__item .product-items-v1__price del .woocommerce-Price-amount {
        font-size: 12px;
    }

    .product-items-v2__title {
        margin-bottom: 26px;
    }

    .product-items-v2__item .product-items-v1__price span {
        margin-right: 3px;
    }

    .product-items-v2 .product-items-v1__sale-label {
        --w: 56px;
        font-size: 16px;
    }

    .page-slider {
        padding: 40px 18px;
    }

    .contacts-info-rows .col-sm-5 {
        margin-top: 20px;
    }

    .contacts-info-rows .col-sm-5 .col-12 {
        text-align: left!important;
    }

    .error-404-bg h1 {
        margin: 0;
        font-size: 100px;
    }

    .error-404-bg h1 span {
        font-size: 26px;
    }

    .content-block table {
        font-size: 12px!important;
    }

    .content-block table tr {
        padding: 10px;
    }

    .content-block .video-block {
        --play-bt-w: 42px;
    }

    .product-cat-slider__item.image-block::before {
        padding-top: var( --image-pad-mob );
    }

    .product-block__left .product-prev-bottom-labels {
        width: 100%;
        padding-top: var( --cont-pad );
        padding-right: var( --cont-pad );
    }

    .product-items-v2__item .product-prev-bottom-labels {
        padding: 6px 6px 0 66px;
    }

    .product-items-v2__item .product-prev-bottom-labels > span {
        font-size: 12px;
        padding: 3px 8px 3px 8px;
    }
}

@media all and (max-width: 374px) {
    .product-items-v2__item {
        width: 100%!important;
    }
}