html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.nowrap {
    white-space: nowrap;
}

.space {
    height: 1rem;
}

.space-2x {
    height: 2rem;
}

.bold {
    font-weight: 600;
}


.container {
    max-width: 1430px;
    margin: auto;
    box-sizing: border-box;
    padding: 0 20px;
}

.container-big {
    /* box-sizing: border-box; */
    /* padding-left: 80px; */
    /* padding-right: 80px; */
    max-width: 1430px;
    margin: auto;
}


.padded {
    padding-top: 6rem;
    padding-bottom: 7rem;
}

.dark {
    color: #fff;
}


.heading-main {
    font-size: 2.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}

.heading-main a {
    color: inherit;
    border-bottom: 1px dashed;
    text-decoration: none;
}


.section-heading {
    font-size: 2.1rem;
    margin-top: 0;
    font-weight: 600;
}




.heading-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
}

input[type="submit"].btn,
button.btn {
    border: 0;
}

.btn {
    display: inline-block;
    padding: 1.45rem 2rem;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    text-align: center;
}

.btn--smaller {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn--min170 {
    min-width: 170px;
}

.btn--full {
    padding-left: 0;
    padding-right: 0;
    display: block;
}

input.btn--full {
    width: 100%;
}

.btn > span {
    position: relative;
    z-index: 2;
}

.btn + .btn {
    margin-left: 1.5rem;
}


.btn--secondary {
    color: #000;
    background-color: #ddd;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn--secondary:hover {
    /* background-color: #dbdbdb; */
    background-color: #ccc;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
}

.btn--light {
    color: #000;
    background-color: #efefef;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn--light:hover {
    /* background-color: #dbdbdb; */
    background-color: #f6f6f6;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
}

.btn--white {
    color: #000;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn--white:hover {
    /* background-color: #dbdbdb; */
    background-color: #ddd;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
}

.btn--whatsapp {
    color: #000;
    background-image: linear-gradient(45deg, #98e3a3, #8dd9b9);
    box-shadow: 0 0 30px 0 rgb(1 141 73 / 30%);
    transition: box-shadow 0.3s;
}

.btn--whatsapp::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: inherit;
    will-change: opacity;
    transition: opacity 0.3s;
    background-image: linear-gradient(242deg, #7def8d, #37dd9d);
}

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

.btn--whatsapp:hover {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.0);
}


.btn--main {
    /* color: #FFF; */
    /* background-image: linear-gradient(45deg, #9d5ec5 0%, #d76e6e 50%, #e1af68 100%);; */
    /* background-image: linear-gradient(45deg, #ef441d 0%, #eb6348 50%, #e99630 100%); */
    /* box-shadow: 0 0 30px 0 rgb(75 1 141 / 30%); */

    background-color: #FFD255;
    box-shadow: 0 0 30px 0 rgb(141 139 1 / 30%);
    color: #000;
    transition: box-shadow 0.3s;
}

.btn--main::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: inherit;
    will-change: opacity;
    transition: opacity 0.3s;
    /* background-image: linear-gradient(207deg, #ff3a0d 0%, #ff5735 50%, #ff8843 100%); */
    background-color: #ffaa3a;
}

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

.btn--main:hover {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.0);
}

.btn--calc {
    color: #000;
    background-image: linear-gradient(45deg, #efcfe8, #b3e9cb);
}

.btn--calc::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: inherit;
    will-change: opacity;
    transition: opacity 0.3s;
    background-image: linear-gradient(195deg, #fbafea, #7fffb8);
}

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

.btn--icon > span {
    display: flex;
    align-items: center;
}

.btn--icon > span > svg {
    margin-left: 0.4rem;
}

.centered {
    text-align: center;
}

@keyframes btn--effect {
    0% {
        left: -30%;
        opacity: 0;
    }

    70% {
        left: -30%;
        opacity: 0.5;
    }

    85% {
        left: 130%;
        opacity: 0.5;
    }

    86% {
        left: 130%;
        opacity: 0;
    }


}



/* mobile callback start */
.callback-mobile {
    display: none;
    position: fixed;
    z-index: 60;
    left: 15px;
    bottom: 15px;
    right: 15px;
    justify-content: space-between;
}

.callback-mobile__item {
    min-width: 43%;
}

.callback-mobile .btn {
    display: block;
    text-align: center;
}
/* mobile callback end */




.classic-form {
    max-width: 500px;
    margin: 0 auto;
}

.classic-form label {
    display: block;
    margin-bottom: 30px;
}


.classic-form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.classic-form input:not([type=submit]) {
    display: block;
    width: 100%;
    height: 50px;
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    border: 0 solid #e2e2e2;
    background-color: #f0f0f0;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
}

.classic-form input:-moz-read-only {
    background-color: #9cd27a;
}

.classic-form input:read-only {
    background-color: #9cd27a;
}

.classic-form textarea {
    width: 100%;
    resize: none;
    display: block;
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    border: 0 solid #e2e2e2;
    background-color: #f0f0f0;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 10px;
    height: 100px;
}

.classic-form input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    border: 0;
}

.contacts__form-heading {
    margin-bottom: 20px;
}


.contacts__form-description {
    font-size: 1.1em;
    line-height: 1.4;
    margin-bottom: 1.4em;
    opacity: 0.8;
}

.contact__divider {
    display: block;
    height: 1px;
    background-color: #e8e8e8;
    margin-bottom: 60px;
    margin-top: 20px;
}





/* Burger */
.burger {
    display: inline-block;
    /* background-color: #f0f0f0; */
}

.burger__line {
    display: block;
    height: 2px;
    background: #000;
}

.burger__top {
    width: 30px;
    margin-bottom: 6px;
}

.burger__middle {
    width: 30px;
    margin-bottom: 6px;
}

.burger__bottom {
    width: 15px;
}

/* Header */
.header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 50;
    height: 90px;
    /* color: #fff; */
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
    transition: all 0.3s;
}

.header__container {
    height: inherit;
}

.header__inner {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__burger-wrapper {
    width: 66px;
}

.header__logo-wrapper {
    width: 140px;
    margin-right: 10px;
}

.logo {
    background: -webkit-linear-gradient(317deg,#ffa841 -8.39%,#ec9550 20.92%,#ff9f2a 91.99%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
}


.logo-circle {
    display: none;
}



.header__mobile {
    display: none;
}


/* .header__mastercall-wrapper {

}

.header__mastercall {
    text-align: center;
    box-sizing: border-box;
    padding-top: 0.5rem;
}

.header__mastercall__btn {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
    background-image: linear-gradient(45deg, #ef441d 0%, #eb6348 50%, #e99630 100%);
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.1rem;
}

.header__mastercall__text {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.8;
} */

.header__left {
    display: flex;
    align-items: center;
    height: inherit;
}

.header__right {
    /* max-width: 700px; */
    display: flex;
    align-items: center;
    height: inherit;
}

.header__right nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header__right nav ul li {
    display: inline-block;
}

.header__right nav ul li:not(:last-child) {
    margin-right: 1.4rem;
}

.header__right__vk {
    /* display: flex; */
    /* align-items: center; */
}


.header__right__vk > svg {
    margin-right: 0.5rem;
    fill: #275595;
    width: 1.3rem;
    height: 1.3rem;
}


.header__right__ig > svg {
    width: 1.3rem;
    height: 1.3rem;
}

.header__right__ig > svg .st0{fill:url(#SVGID_1_);}  
.header__right__ig > svg .st1{fill:url(#SVGID_2_);}  
.header__right__ig > svg .st2{fill:#654C9F;}

.header__right nav ul li a {
    color: inherit;
    text-decoration: none;
}

.header__phone {
    margin-left: 2.4rem;
    text-align: right;
}

.header__phone__value {
    color: inherit;
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 0.4rem;
    margin-top: 0.2rem;
    white-space: nowrap;
}

.header__phone__text {
    font-size: 0.7rem;
    opacity: 0.8;
}

.header__phone__text > span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #0da90d;
    border-radius: 50%;
    position: relative;
    top: -2px;
    margin-right: 5px;
}




html:not(.menu-opened) .header.sticky {
    height: 70px;
    position: fixed;
    z-index: 101;
    top: 0;
    color: #000;
    background-color: #fff;
    box-shadow: 0 16px 22px rgb(0 0 0 / 10%);
}



html:not(.menu-opened) .header.sticky .header__logo svg .white-control-blue {
    fill: #145f94;
}

html:not(.menu-opened) .header.sticky .header__logo svg .white-control-green {
    fill: #19a650;
}

html:not(.menu-opened) .header.sticky .burger__line {
    background-color: #000;
}



/* Opened Menu */

.nav-opened {
    position: fixed;
    inset: 0;
    /* background-image: linear-gradient(45deg, #14174c, #0a0e3e); */
    /* background-image: linear-gradient(310deg, #115ead, #0c86d7); */
    background-image: linear-gradient(233deg, #d8c888, #ffed9c);
    z-index: 101;
    transform: translateX(-100%);
    transition: transform 0.3s;
    color: #000;
}

.nav-opened > .container-big {
    height: 100%;
}

.nav-opened__menu {
    height: 100%;
}

html.menu-opened .nav-opened {
    transform: translateX(0);
    box-sizing: border-box;
    padding-top: 20vh;
}

html.menu-opened,
html.menu-opened body {
    overflow: hidden;
}

html.menu-opened .header {
    position: fixed;
    height: 90px;
    z-index: 105;
}

html.menu-opened .header {
    /* filter: brightness(0) invert(1); */
}



.nav-opened__menu__line {
    display: flex;
    min-height: 6rem;
    /* border-bottom: 1px solid rgba(255,255,255,0.1); */
}

.nav-opened__menu__line:not(:last-child) {
    margin-bottom: 3rem;
}

.nav-opened__menu__category {
    width: 300px;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-opened__menu__nav {
    width: calc(100% - 300px);
}

.nav-opened__menu__line:not(:last-child) .nav-opened__menu__nav {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-opened__menu__nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.nav-opened__menu__nav ul li {
    /* display: inline-block; */
    /* margin-right: 2.5rem; */
    margin-bottom: 1rem;
    width: 33.3%;
}

.nav-opened__menu__nav ul li::before {
    /* content: '\2192  '; */
    content: '— ';
    opacity: 0.6;
}

.nav-opened__menu__nav ul li a {
    color: inherit;
    text-decoration: none;
}



/* Intro */
/* .intro {
    height: 600px;
    color: #fff;
    overflow: hidden;
}
 */
.intro-slider {
    height: 100%;
    position: relative;
}

.intro-slider__item {
    height: 100%;
    position: relative;
    display: flex;
}

.intro-slider__item__cover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* background-image: linear-gradient(306deg, #5eb2c5 0%, #77e5d3 50%, #bdf1cb 100%); */
    /* opacity: 0.9; */
    /* background-image: linear-gradient(44deg, #90c9a9 0%, #6e96d7 50%, #68e1a4 100%); */
    background-image: linear-gradient(220deg, #ffffee 8%, #fffbec 60%, #fffefa 160%);
    /* background-color: rgba(0,0,0,0.4); */
    z-index: 2;
}

.intro-slider__item__bg {
    position: absolute;
    inset: 0;
    /* background-image: linear-gradient(306deg, #5eb2c5 0%, #77e5d3 50%, #bdf1cb 100%); */
    /* display: flex; */
}

.start-slider-swiper .swiper-slide-active .intro-slider__item__bg {
    animation: startSliderBgScale 5s infinite;
}


@keyframes startSliderBgScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* https://stackoverflow.com/questions/10797632/simulate-background-sizecover-on-video-or-img */
.intro-slider__item__bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    /*-webkit-transform: translateX(-50%) translateY(-50%);*/
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
}

.intro-slider__item__container {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
}

.intro-slider__item__inner {
    width: 100%;
    margin-top: -2rem;
    display: flex;
    align-items: center;
}

.intro-slider__item__before {
    font-size: 1.2rem;
}

.intro-slider__item__content {
    width: 60%;
    position: relative;
}

.intro-slider__item__heading {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.intro-slider__item__heading a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed;
}

.intro-slider__item__text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}



.intro-slider__item__text > div + div {
    margin-top: 0.5rem;
}

.intro-slider__item__heading span {
    /* color: #c9d9ff; */
}


.intro-slider__item__image-wrapper {
    width: 40%;
}

.intro-slider__item__image {
    display: block;
    width: 100%;
    margin: auto;
}

.intro-slider__item__image--absolute {
    position: absolute;
    left: 51%;
    bottom: 0;
    height: 84%;
    width: auto !important;
}

.swiper-slide.swiper-slide-active .intro-slider__item__image {
    /* animation: appearPic 3s; */
    animation: appearPic 1s;

}


@keyframes appearPic {

    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }

}


.intro-slider__bottom {
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: 100px;
    left: 0;
    display: flex;
    justify-content: space-between;
    /* text-align: center; */
}

.intro-slider__bottom__item {
    max-width: 20%;
}

.intro-slider__bottom__item__big {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.intro-slider__bottom__item__small {
    font-size: 0.9rem;
}



/* Start */
.start {
    height: 630px;
    background-color: #fff;
    position: relative;
}

.start-slider {
    width: 100%;
    height: 100%;
    color: #000;
}

.start-slider .swiper-slide {
    background-color: #000;
    height: 100%;
}

.start-slider-pagination {
    position: absolute;
    width: revert !important;
    right: 0 !important;
    bottom: 60px !important;
    left: 0 !important;
    z-index: 2 !important;
    display: flex !important;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 20px;
}

.start-slider-pagination .swiper-pagination-bullet {
    display: block;
    width: 22% !important;
    background: none !important;
    opacity: 0.8;
    margin: 0 !important;
    height: revert;
}

.start-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.start-slider-pagination .heading {
    font-size: 1rem;
    font-weight: 500;
}

.start-slider-pagination .progress {
    width: 100%;
    height: 2px;
    margin-top: 0.5rem;
    position: relative;
}

.start-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #FFD255;
    animation: progressBar 5s;
    width: 100%;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}



/*  */
.main__grid {
    /* width: 70%; */
    display: flex;
    margin: -1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.main__grid__item-wrapper {
    width: 25%;
    box-sizing: border-box;
    padding: 1rem;
}

.main__grid__item {
    padding-top: 100%;
    border-radius: 6px;
    position: relative;
    background-color: #000;
    color: #FFF;
    overflow: hidden;
    text-decoration: none;
    display: block;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.main-grid__item__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image: linear-gradient(45deg, black, rgba(0,0,0,0));
    will-change: opacity;
    transition: opacity 0.3s;
}

.main__grid__item:hover .main-grid__item__overlay {
    opacity: 0.5;
    transition: opacity 3s;
}

.main-grid__item__bg {
    inset: 0;
    /* display: flex; */
    position: absolute;
    z-index: 1;
    transition: transform 0.3s;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    will-change: transform;
}

.main-grid__item__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main__grid__item:hover .main-grid__item__bg {
    transform: scale(1.2);
    transition: transform 9s;
}

/*.main-grid__item__bg video {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    !*-webkit-transform: translateX(-50%) translateY(-50%);*!*/
/*    transform: translateX(-50%) translateY(-50%);*/
/*    min-width: 100%;*/
/*    min-height: 100%;*/
/*    width: auto;*/
/*    height: auto;*/
/*    z-index: -1000;*/
/*    overflow: hidden;*/
/*}*/

.main__grid__item__inner {
    position: absolute;
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;

}

.main__grid__item__heading {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.main__grid__item__text {
    font-size: 0.9rem;
    line-height: 1.5;
}


/* FEATURES */
.features {
    /* background-image: linear-gradient(45deg, #e3f5ff, #dce9ff); */
    /* background-image: linear-gradient(45deg, #e3f2ff, #dcddff); */
    background-color: #f6f6f6;
    display: none;
}

.features-slider {
    /* display: flex; */
    /* margin: -1.5em; */
    /* position: relative; */
    /* margin-top: 2rem; */
}

/* .features-slider__item-wrapper {
    box-sizing: border-box;
    padding: 1.5rem;

} */

.features-slider__item-wrapper {
    color: #fff;
    display: block;
}

.features-slider .swiper-slide {
    width: calc(19% - 10px) !important;
}

.features-slider__item {
    padding-top: 390px;
    box-sizing: border-box;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.features-slider__item__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #5d0d7e, #772fa9);
}

.features-slider__item__bg__img {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.features-slider__item__inner {
    position: absolute;
    inset: 1.5rem;
}

.slider__arrows {
    display: flex;
    gap: 0 1rem;
}

.features-slider__item__heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    line-height: 1.4;
}

.features-slider__item__text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.features-slider__item__text a {
    color: inherit;
    text-decoration: none;
}

.features-slider__item__text a > span {
    border-bottom: 1px dashed;
}

/* SINGLE OFFER START */
main.single-offer a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed;
}

main.single-offer {
    font-size: 1rem;
}

.offers-contacts {
    margin-top: 3rem;
}

.offers-contacts__heading {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.divider {
    height: 1px;
    background-color: #f0f0f0;
}
/* SINGLE OFFER END */



/* Numbers */

.gradient-heading {
    /* background: -webkit-linear-gradient(320deg,#005ab7 0.92%,#00b345 91.99%); */
    /* background: -webkit-linear-gradient(320deg,#ac00df -8.39%,#047fa5 40.92%,#26ea9c 91.99%); */
    /* background: -webkit-linear-gradient(320deg,#80afdf 0.92%,#a5e3bd 91.99%); */
    background: -webkit-linear-gradient(239deg,#db8b2d 0.92%,#ed9d49 91.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.3rem;
    margin-top: 0;
    font-weight: 800;
}

.numbers {
    /* height: 500px; */
    overflow: hidden;
    position: relative;
    background-color: #282828;
    color: #fff;
    /* background-image: url("data:image/svg+xml,%3Csvg width='3713' height='3755' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23a)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2798.85 2948.28c270.88-190.55 531.79-444.61 579.72-773.67 44.88-308.15-113.32-619.9-341.75-832.33-228.44-212.44-519.66-342-808.69-457.686-300.22-120.176-614.61-231.252-936.81-216.786-397.159 17.818-778.679 240.066-990.197 576.802-44.976 71.58-83.266 150.06-91.062 234.48-12.534 135.73 54.268 265.16 119.063 385.41C574.943 2320.78 882.71 2956.42 1373.85 3198.18c464.75 228.75 1034.44 24.84 1425-249.9' fill='url(%23b)'/%3E%3C/g%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2752.52 3024.06c280.91-162.85 557.59-388.37 632.87-704.86 70.5-296.36-56.93-613.3-261.51-839.4-204.58-226.1-477.62-376.76-749.73-513.724-282.64-142.274-579.9-276.875-895.66-289.854-389.21-16.011-780.867 168.407-1016.494 478.618-50.099 65.94-94.271 139.16-109.192 220.73-23.989 131.15 30.009 262.83 82.842 385.4C636.079 2226.03 881.447 2871 1339.92 3147.74c433.83 261.85 1007.58 111.11 1412.6-123.68' fill='%23FFF'/%3E%3Cdefs%3E%3ClinearGradient id='b' x1='990.5' y1='665' x2='2371' y2='1083' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239F39E4'/%3E%3Cstop offset='.501' stop-color='%235B98DF'/%3E%3Cstop offset='1' stop-color='%2326EA6D'/%3E%3C/linearGradient%3E%3Cfilter id='a' x='108.534' y='566.534' width='3377.66' height='2830.48' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='50' result='effect1_foregroundBlur_4_149'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E"); */
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.numbers-grid__item-wrapper {
    width: 48%;
    margin-bottom: 2%;
}

.numbers-grid__item-wrapper:nth-last-child(1),
.numbers-grid__item-wrapper:nth-last-child(2) {
    margin-bottom: 0;
}

.numbers-grid__item {
    /* display: flex; */
    /* align-items: center; */
    padding: 1rem 0;
}

.numbers-grid__item__value {
    /* width: 19rem; */
    /* margin-right: 1.5rem; */
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    /* background: -webkit-linear-gradient(317deg,#fff692 -8.39%,#ffeb74 40.92%,#fff8be 91.99%); */
    /* -webkit-background-clip: text !important; */
    /* -webkit-text-fill-color: transparent !important; */
}

.numbers-grid__item__text {
    /* width: calc(100% - 20.5rem); */
    font-size: 0.95rem;
    line-height: 1.5;
}

.numbers-grid__item__fact {
    margin-top: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #000;
    border-radius: 6px;
    display: inline-block;
    font-size: 0.95rem;
}

.numbers-grid__item__fact > .icon-wrapper {
    margin-right: 0.5rem;
}



/* ABOUT start */
.about__split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__content {
    width: calc(55% - 3rem);
    line-height: 1.5;
}

.about-heading {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.about__features-wrapper {
    width: 45%;
}

.about__features {
    display: flex;
    margin: -12.5px;
    flex-wrap: wrap;
}

.about__features__item-wrapper {
    width: 50%;
    box-sizing: border-box;
    padding: 12.5px;
}

.about__features__item-wrapper:nth-child(odd) {
    position: relative;
    top: 2rem;
}

.about__features__item {
    height: 100%;
    box-sizing: border-box;
    padding: 1.2rem 2rem;
    padding-bottom: 2.1rem;
    border-radius: 10px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
    line-height: 1.5;
}

.about__features__item__icon {
    font-size: 3rem;
    margin-bottom: 0.1rem;
}

.about__features__item__name {
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1rem;
}

.about__features__item__text {
    font-size: 0.8rem;
}

/* ABOUT end */









/* MAP */
.map-section {
    position: relative;
}

.map-section__top {
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    height: 120px;
    z-index: 1;
    padding-top: 2rem;
    background-image: linear-gradient(to bottom, white 60px, rgba(255,255,255,0) 100%);
}

.map-section .section-heading {
    color: #003f76;
    font-weight: 700;
    text-align: center;
}

.map {
    height: 600px;
}


[class*="ymaps-2"][class*="-ground-pane"] {
    filter: hue-rotate(7deg) saturate(0.8);
    /* -webkit-filter: grayscale(60%) url(/path-to-svg/yellowfilter.svg#yellowfilter); */
    /* filter: grayscale(60%) url(/path-to-svg/yellowfilter.svg#yellowfilter); */
}

.pulse-marker {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    color: #ffffff;
    /* background: #dd0000; */
    background-color: #01a1d3;
    border-radius: 100%;
    animation: radial-pulse 2s infinite;
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 161, 211, 0.8);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(1, 161, 211, 0);
    }
}


/* TESTIMONIALS */

.testimonials {

}

.testimonials-slider-swiper .swiper-slide {
    width: 500px !important;
}

.testimonials-slider-swiper .swiper-slide {
    height: auto;
}


.testimonials-slider-swiper .swiper-slide {
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
}

.testimonials-slider-swiper {
    padding-top: 30px;
    padding-bottom: 30px;
}

.testimonials-slider__content {
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 30px 30px 6rem;
}

.testimonials-slider__bottom {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
}

.testimonials-slider__author {
    position: absolute;
    top: 0;
    left: 30px;
    padding: 0.7rem 1rem;
    box-sizing: border-box;
    background-color: #ffd970;
    border-radius: 0 0 5px 5px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonials-slider blockquote {
    padding: 0;
    margin: 0;
    margin-top: 2.3rem;
    line-height: 1.6;
    position: relative;
}

.testimonials-slider blockquote::after {
    content: ',,';
    display: block;
    position: absolute;
    top: -10rem;
    right: 0;
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    z-index: -1;
    opacity: 0.3;
    color: #fff287;
}

.testimonials-slider__div {
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 0.1;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.testimonials-slider__source {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.testimonials-slider__source > svg {
    margin-right: 0.8rem;
}

.testimonials-slider__source__text {
    border-bottom: 1px dashed;
    margin-left: 0.3rem;
}




/* Contacts */
.contacts {
    position: relative;
    height: 610px;
    box-sizing: border-box;
    padding-top: 4.5rem;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    /* filter: grayscale(5%) hue-rotate(30deg); */
    /* -webkit-filter: grayscale(60%) url(/path-to-svg/yellowfilter.svg#yellowfilter); */
    /* filter: grayscale(60%) url(/path-to-svg/yellowfilter.svg#yellowfilter); */
}


.contacts__container {
    position: relative;
    z-index: 2;
    height: 0;
}

.contacts__data {
    background-color: #fff;
    width: 340px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 11%);
    border-radius: 10px;
    float: right;
}

.contacts__map {
    position: absolute;
    inset: 0;
}

.contacts__data__inner {
    box-sizing: border-box;
    padding: 2.1rem;
}

.contacts-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contacts-label {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
    /* font-weight: 600; */
    opacity: 0.6;
    color: #000;
}

.contacts__phone__value {
    font-size: 1.1rem;
    /* font-weight: 600; */
}


.contacts__phone__value a {
    color: inherit;
    text-decoration: none;
}

.contacts__phone__messengers a {
    text-decoration: none;
    border-bottom: 1px dashed;
}

.contacts__phone__messengers {
    margin-top: 0.3rem;
    font-size: 0.8rem;
}



.contacts__socials__value {
    display: flex;
    flex-wrap: wrap;
}

.contacts__socials__value svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.3rem;
}

.contacts__socials__value a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contacts__socials__value a + a {
    margin-left: 1rem;
}



.contacts-whatsapp {
    color: #0e8700;
}

.contacts-vk {
    color: #052949;
}

.contacts-vk > svg {
    fill: #052949;
}

.contacts-ig {

}

.contacts-ig > svg .st0{fill:url(#SVGID_1_);}  
.contacts-ig > svg .st1{fill:url(#SVGID_2_);}  
.contacts-ig > svg .st2{fill:#654C9F;}

.contacts-telegram {
    color: #004d91;
}

.contacts__item + .contacts__item {
    margin-top: 1.3rem;
}

.contacts__email__value {
    font-size: 0.95rem;
}

.contacts__email__value > a {
    color: inherit;
    text-decoration: none;
}

.contacts__hours__grid {
    font-size: 0.9rem;
}

.contacts__hours__grid > div + div {
    margin-top: 0.15rem;
}

.contacts__hours__grid .day {
    display: inline-block;
    width: 75px;
}

.contacts__hours__grid .hours {
    font-weight: 500;
}
/* Contacts End */


/* LANDING PAGE INTRO */
.intro_landing {
    height: 620px;
    position: relative;
    background-image: linear-gradient(220deg, #ffffee 8%, #fffbec 60%, #fffefa 160%);
    color: #000;
}

.intro_landing__container {
    height: 100%;
}

.intro_landing__split {
    height: 100%;
    display: flex;
    align-items: center;
}

.intro_landing__content {
    width: 60%;
    position: relative;
    z-index: 5;
}

.intro_landing__image {
    width: 40%;
}

.intro_landing__image > img {
    display: block;
    width: 74%;
    margin: auto;
}

.intro_landing__image--absolute {
    position: absolute;
    left: 53%;
    bottom: 0;
    height: 84%;
    width: auto !important;
}

.intro_landing__list {
    padding: 0;
    list-style-type: none;
    font-size: 1.05rem;
    margin: 0 0 2rem;
}

.intro_landing__list > li::before {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='16px' viewBox='0 0 24 24' width='16px' fill='%23000000'><path d='M0 0h24v24H0V0z' fill='none'/><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>");
    /*display: inline-block;*/
    margin-right: 0.2rem;
}

.intro_landing__list > li + li {
    margin-top: 0.8rem;
}


/* LANDING PAGE SHOWCASE */
.showcase {
    background-color: #f6f6f6;
}

.showcase__brands {
    margin-top: 0;
    padding: 0;
    margin-bottom: 2.5rem;
}

.showcase__brands > li {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.55;
    font-size: 1.1rem;
    will-change: opacity;
    transition: opacity 0.3s;
}

.showcase__brands > li::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    opacity: 0;
    margin-top: 2px;
}

.showcase__brands > li:not(.active):hover {
    opacity: 0.75;
}



.showcase__brands > li:hover {
    cursor: pointer;
}

.showcase__brands > li.active {
    opacity: 1;
}

.showcase__brands > li.active::after {
    opacity: 0.4;
}

.showcase__brands > li + li {
    margin-left: 1.5rem;
}

.showcase__split {
    display: flex;
}

.showcase__grid {
    width: calc(100% - 400px);
}

.showcase__sidebar {
    width: 400px;
    box-sizing: border-box;
    padding-left: 2.5rem;
}

.showcase__sidebar__inner {
    position: sticky;
    top: 5rem;
}

.showcase__sidebar__heading {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.showcase__sidebar__text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.showcase__sidebar__item--pdf__split {
    display: flex;
    justify-content: space-between;
}

.showcase__sidebar__text--pdf {
    width: 54%;
    padding-bottom: 1.5rem;
}

.showcase__sidebar__item--pdf__img-wrapper {
    width: 44%;
}

.showcase__sidebar__item--pdf__img {
    display: block;
    width: calc(100% + 2.5rem);
    margin-left: -1.5rem;
    margin-top: -1rem;
    position: relative;
}

.showcase__sidebar__item--pdf__btn-wrapper {
    margin-top: -1.5rem;
}


.showcase__sidebar__item {
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.8rem;
    position: relative;
}

.showcase__sidebar__item__input {
    appearance: none;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    height: 3rem;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
    box-sizing: border-box;
    padding: 0 1.2rem;
}

.showcase__sidebar__item__btn-wrapper {
    position: relative;
    z-index: 2;
}

.showcase__sidebar__item--request__img {
    margin-top: -2rem;
    display: block;
    width: 90%;
    margin-left: 10%;

}

.showcase__sidebar__item--pdf {
    background-image: linear-gradient(236deg, #f9e2c4, #ffdede);
}

.showcase__sidebar__item--request {
    background-color: #fff6df;
}


.showcase__item {
    position: relative;
    z-index: 2;
    display: flex;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    align-items: center;
    background-color: #fff;
    height: 200px;
    color: inherit;
    will-change: transform;
    transition: transform 0.3s, box-shadow 0.3s, margin 0.3s, padding 0.3s, opacity 0.3s, height 0.3s;
}

.showcase__item:hover {
    transform: scale(1.02);
    z-index: 3;
    box-shadow: 0 10px 40px 0 rgba(0,0,0,0.1);
}

/* .showcase__item.active + .showcase__item.active {
    margin-top: 1.5rem;
} */

.showcase__item.active {
    margin-bottom: 1.5rem;
}

.showcase__item:not(.active) {
    padding: 0;
    height: 0;
    margin: 0;
}

.showcase__item__tags {
    margin-top: -1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.6rem;
}

.showcase__item__tags > span {
    border-radius: 3px;
    background-color: #5fa56f;
    color: #fff;
    padding: 0.3rem 0.5rem;
}

.showcase__item__image {
    width: 230px;
}

.showcase__item__image > img {
    width: 89%;
    display: block;
    margin: auto;
}

.showcase__item__content {
    box-sizing: border-box;
    padding-left: 0.5rem;
    padding-right: 1rem;
    width: calc(100% - 440px);
}

.showcase__item__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.showcase__item__heading__type {
    opacity: 0.5;
    font-weight: 600;
    margin-right: 0.5rem;
}

.showcase__item__heading__value {
    border-bottom: 1px dashed #00a5d6;
    color: #00556e;
}

.showcase__item__text {
    font-weight: 300;
    font-size: 0.9rem;
}

.showcase__item__rating {
    display: flex;
    gap: 2rem;
    margin-top: 1.2rem;
}

.showcase__item__rating__param {
    width: 33.3%;
}

.showcase__item__rating__param__label {
    margin-top: 0.5rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;

}

.showcase__item__rating__param__bar {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.showcase__item__rating__param__bar__current {
    position: absolute;
    border-radius: inherit;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    /*background-color: #000;*/
}

.showcase__item__rating__param:nth-child(1) .showcase__item__rating__param__bar__current {
    background-image: linear-gradient(to right, #ff2dc8, #ad1aff);
}

.showcase__item__rating__param:nth-child(2) .showcase__item__rating__param__bar__current {
    background-image: linear-gradient(to right, #ffe94e, #ffc300);
}

.showcase__item__rating__param:nth-child(3) .showcase__item__rating__param__bar__current {
    background-image: linear-gradient(to right, #00b8ff, #0482fa);
}

.showcase__item__more {
    width: 210px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 1rem;
    padding-left: 1.5rem;
    text-align: center;
    position: relative;
    height: 100%;
    border-left: 1px solid #ddd;
}

.showcase__item__price {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.showcase__item__price__from {
    font-size: 1.2rem;
}

.showcase__item__price__on-request {
    font-size: 1.1rem;
    font-weight: 500;
}

.showcase__item__sale {
    font-size: 0.8rem;
    line-height: 1.4;
}


.showcase__variations {
    border-radius: 10px;
    border: 2px dashed #adadad;
    box-sizing: border-box;
    padding: 2rem;
    display: flex;
    margin-top: 5rem;
    align-items: center;
}

.showcase__variations__text {
    font-weight: 600;
    font-size: 1.2rem;
    width: 240px;
}

.showcase__variations__content {
    width: calc(100% - 240px);
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    justify-content: space-around;
}

.showcase__variations__item {
    text-align: center;
}

.showcase__variations__item__value {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    margin: auto auto 0.5rem;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 7%);
}

.showcase__variations__item__name {
    font-size: 0.8rem;
}

.showcase__variations__content--small {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: revert !important;
}

.showcase__variations__item-small {
    display: flex;
    align-items: center;
    width: 20%;
    min-width: 120px;
}

.showcase__variations__item-small__value {
    width: 3rem;
    height: 3rem;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    margin-right: 0.8rem;
    background-size: cover;
}

.showcase__variations__item-small__name {
    font-size: 0.8rem;
}
/* LANDING PAGE SHOWCASE END */


/* PAYMENT */
.payment__grid {
    display: flex;
    gap: 2rem;
}

.payment--single-product {
    padding-top: 4rem;
}


.payment__grid__item {
    width: 25%;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 1.9rem 2rem;
}


.payment--single-product .payment__grid__item {
    background-color: #d7d7d7;
}

.payment__grid__item__heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.payment__grid__item__text {
    line-height: 1.7;
    font-size: 0.9rem;
    color: #262626;
}

.payment__grid__item__text a {
    text-decoration: none;
    color: inherit;
}

.payment__grid__item__text a > span {
    border-bottom: 1px dashed;
}
/* PAYMENT END */


/* DOCS */
.docs {
    background-color: #f0f0f0;
}

.docs__grid {
    display: flex;
    gap: 2rem;
}

.docs__item {
    width: 16.66%;
    display: block;
    text-decoration: none;
    color: inherit
}

.docs__item__image {
    display: block;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 0.9rem;
    box-shadow: 0 20px 30px 0 rgb(0 0 0 / 4%);
}

.docs__item__title {
    font-size: 0.8rem;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    text-align: center;
    height: 3rem;
}

.docs__item__title > span {
    border-bottom: 1px dashed;
    color: #0531a1;
}

.docs__item--request {
    opacity: 0.65;
    transition: transform 0.3s;
}

.docs__item--request:hover {
    opacity: 1;
}

.docs__item--request__inner {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    line-height: 1.5;
    height: calc(100% - 3.9rem);
}
/* DOCS END */


/* PORTFOLIO */
.portfolio {
    display: none;
}

.portfolio__grid {
    margin: -1.1rem;
    box-sizing: border-box;
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
}

.portfolio__item-wrapper {
    /*width: 16.6%;*/
    box-sizing: border-box;
    padding: 1.1rem;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/*.portfolio__item-wrapper--wide {*/
/*    width: 27.8%;*/
/*}*/

.portfolio__item {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.14);
}

.portfolio__item a {
    display: block;
}

.portfolio__item > a > img {
    display: block;
    height: 330px;
}
/* PORTFOLIO END */




/* PAGE CONTACTS */
.page-contacts__map {
    height: 460px;
}

.page-contacts {
    margin-bottom: 0 !important;
}
/* PAGE CONTACTS END */


/* SINGLE PRODUCT */
body.single-product {
    background-color: #f6f6f6;
}

body.single-product .woocommerce-tabs ul.tabs {
    display: none;
}

body.single-product .woocommerce-tabs .panel h2:first-of-type {
    display: none;
}

.single-product__split {
    margin-top: 2rem;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    box-sizing: border-box;
}

.single-product__gallery-wrapper {
    width: 50%;
}

.single-product__main {
    width: 50%;
    box-sizing: border-box;
    padding: 3rem 3rem 3rem;
}

.single-product__gallery__main {
    box-sizing: border-box;
    padding: 2rem;
}

.single-product__gallery__main > img {
    display: block;
    max-width: 500px;
    margin: auto;
}

.single-product__heading {
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 1.8rem;
    line-height: 1.4;
    font-weight: 600;
}

.showcase__item__rating--single-product {
    margin-bottom: 2.2rem;
}

.woocommerce-product-attributes-item {
    display: flex;
    margin-bottom: 1.3rem;
}

.woocommerce-product-attributes-item__label {
    width: 30%;
}

.woocommerce-product-attributes-item__value {
    width: 70%;
}

.woocommerce-product-attributes-item__value p {
    margin: 0;
}

.woocommerce-product-attributes-item__value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed;
}

/* single product options */
.woocommerce-product-attributes-item--attribute_pa_dopolnitelnye-opczii {
    display: block !important;
    margin-top: 2rem !important;
    padding-top: 1.8rem;
    border-top: 1px solid #e6e6e6;
}

.woocommerce-product-attributes-item--attribute_pa_dopolnitelnye-opczii .woocommerce-product-attributes-item__label {
    width: 100%;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.woocommerce-product-attributes-item--attribute_pa_dopolnitelnye-opczii .woocommerce-product-attributes-item__value {
    width: 100%;
}

.woocommerce-product-attributes-item--attribute_pa_dopolnitelnye-opczii .woocommerce-product-attributes-item__value > p {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    gap: 1.5rem;
}

.woocommerce-product-attributes-item--attribute_pa_dopolnitelnye-opczii .woocommerce-product-attributes-item__value > p > a {
    width: calc(50% - 2.25rem);
    border-bottom: 0;
    font-size: 1rem;
    line-height: 1.4;
}
/* end */



/*  */
.single-product__services {
    margin-top: 4rem;
}
/*  */




.single-product__price_and_offer {
    display: flex;
    align-items: center;
}

.single-product__price {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #367e00;
    font-weight: 500;
}

.single-product__offer {
    box-sizing: border-box;
    padding-left: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.single-product__content {
    margin-top: 3rem;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 3rem;
    background-color: #fff;
}

.single-product__subheading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
}

.single-product__description {
    font-size: 1rem;
    line-height: 1.7;
}

.single-product__features {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.single-product__features__item {
    width: calc(25% - 1.5rem);
    box-sizing: border-box;
    padding: 1.3rem;
    background-color: #fff;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.single-product__features__item__text {
    line-height: 1.5;
    font-size: 0.9rem;
}

.single-product__features__item__text > span {
    font-weight: 500;
}


/* SINGLE PRODUCT END */


/* PERSONAL FEATURES */
.personal_features__grid {
    display: flex;
    gap: 2rem;
}

.personal_features__item {
    width: 25%;
    box-sizing: border-box;
    padding: 1.3rem;
    box-shadow: 0 0 24px 0 rgba(0,0,0,0.1);
    border-radius: 6px;
}

.personal_features__item__icon {
    font-size: 3rem;
    margin-bottom: 0.6rem;
}

.personal_features__item__name {
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.personal_features__item__text {
    font-size: 0.9rem;
    line-height: 1.4;
}
/* PERSONAL FEATURES END */


/* LANDING DESCRIPTION START */
.landing__description {
    padding-bottom: 3rem;
    line-height: 1.5;
    overflow: hidden;
}

.landing__description__hidden-text {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s;
}

.landing__description__hidden-text.unhidden {
    max-height: 1500px;
}

.landing__description__inner {
    position: relative;
}

.landing__description__more {
    height: 70px;
    position: absolute;
    display: flex;
    right: 0;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, #FFFFFF 10%, rgba(255,255,255,0) 100%);
}

.landing__description__more > span {
    font-weight: 600;
    border-bottom: 1px dashed;
    color: #0057b7;
}

.landing__description__more > span:hover {
    cursor: pointer;
}
/* LANDING DESCRIPTION END */


/* QUIZ SECTION */
.quiz {
    background-color: #181f2a;
    box-sizing: border-box;
}
/* QUIZ SECTION END*/


/* PAGE DELIVERY AND PAYMENT */
.page-delivery h2 {
    font-weight: 500;
    margin-top: 0;
}

.page-delivery h3 {
    font-weight: 500;
}
/* PAGE DELIVERY AND PAYMENT END */



/* CALLBACK DESKTOP */
.callback {
    position: fixed;
    width: 190px;
    height: 44px;
    right: 2rem;
    bottom: 1rem;
    z-index: 50;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    color: #fff;
    background-image: linear-gradient(45deg, #9d5ec5 0%, #d76e6e 50%, #e1af68 100%);
    opacity: 0.9;
    transform: translateY(600px);
    transition: all 0.3s;
}

.callback.active {
    transform: translateY(0);
}

.callback__show {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 14px;
}

.callback__extended {
    opacity: 0;
    transition: all 0.3s;
}

.callback__extended__call {
    text-decoration: none;
    color: #fff;
    display: block;
    text-align: center;
}

.callback__extended__call > .label {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 0.15rem;
}

.callback__extended__call > .value {
    font-weight: 600;
    font-size: 1.2rem;
}

.callback__extended__or {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.6rem;
    margin-bottom: 1rem;
    line-height: 1;
}


.callback:hover {
    width: 400px;
    height: 400px;
    right: -100px;
    bottom: -150px;
    border-radius: 50%;
    opacity: 1;
}

.callback:hover .callback__show {
    opacity: 0;
}

.callback:hover .callback__extended {
    opacity: 1;
    margin-top: 48px;
    box-sizing: border-box;
    padding-right: 69px;
}
/* CALLBACK DESKTOP END */


/* WOOCOMMERCE GLOBALS */
.woocommerce-products-header__title {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.woocommerce-archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce-breadcrumb {
    color: #666;
    font-size: 0.9rem;
}

.woocommerce-breadcrumb a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px dashed;
}

.woocommerce-result-count {
    margin-top: 0.5rem;
    opacity: 0.5;
    font-size: 0.85rem;
}
/* WOOCOMMERCE GLOBALS END */



/* WOOCOMMERCE ARCHIVE PAGE */
.shop-catalog {
    margin-top: 8rem;
    margin-bottom: 5rem;
}

.wc-products-grid {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.wc-product-item {
    display: block;
    text-decoration: none;
    color: inherit;
    width: calc(20% - 1.6rem);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
    box-sizing: border-box;
    transition: box-shadow 0.3s, transform 0.3s;
}

.wc-product-item:hover {
    box-shadow: 0 5px 40px 0 rgba(0,0,0,0.11);
    transform: translateY(-5px);
    z-index: 2;
}

.wc-product-item__image-wrapper {
    position: relative;
    padding-top: 100%;
}

.wc-product-item__image {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.wc-product-item__content {
    display: block;
    box-sizing: border-box;
    padding: 1.5rem;
}

.wc-product-item__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.wc-product-item__description {
    display: block;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.wc-product-item__more {
    display: block;
    position: absolute;
    max-height: 0;
    overflow: hidden;
    right: 0;
    left: 0;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0 1.5rem;
    border-radius: 0 0 10px 10px;
    transition: max-height 0.3s;
}

.wc-product-item:hover .wc-product-item__more {
    max-height: 300px;
    padding-bottom: 1.5rem;
    box-shadow: 0 25px 23px 0 rgb(0 0 0 / 11%);
}

.woocommerce-filters {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.woocommerce-filters__item {
    width: calc(20% - 1.6rem);
}

.woocommerce-filters__item--clear {
    width: auto;
}

.woocommerce-ordering {
    display: none !important;
}

.woocommerce-filters .bapf_head h3 {
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: #606060;
    font-size: 0.85rem;
}

.woocommerce-filters .bapf_slct select {
    font-size: 0.9rem;
    height: 40px;
    border-radius: 4px;
    appearance: none;
    background-image: url(/wp-content/uploads/2022/03/down.svg);
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    box-sizing: border-box;
    padding: 0 1.2rem;
    border: 1px solid #b3b3b3;
    background-color: #f7f7f7;
}

.woocommerce-filters .bapf_sfilter {
    margin-bottom: 0;
}

.woocommerce-filters .bapf_sfilter .bapf_button {
    height: 40px;
    appearance: none;
    min-width: 150px;
    border: 0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #e7e7e7;
}

.woocommerce-filters .bapf_sfilter .bapf_button:hover {
    cursor: pointer;
    background-color: #d2d2d2;
}

.woocommerce-categories {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.woocommerce-categories__links a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed;
}

.woocommerce-categories__links a:not(:last-child)::after {
    content: ",";
}



/*  */
.wc-archive-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.wc-archive-category-links__item {
    width: calc(50% - 1rem);
    box-sizing: border-box;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.wc-archive-category-links__item__text {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

.wc-archive-category-links__item__text span {
    font-weight: 500;
}

.wc-archive-category-links__item__link {
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px dashed;
}
/*  */


/* WOOCOMMERCE ARCHIVE PAGE END */



/* REMODAL START */
.remodal__inner {
    box-sizing: border-box;
    padding: 2rem;
}

.remodal__heading {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-weight: 500;
    font-size: 1.7rem;
}

.remodal.remodal--middle {
    max-width: 500px;
}

.remodal.remodal--small {
    max-width: 370px;
}

.remodal__note {
    box-sizing: border-box;
    padding: 1rem 0;
    font-size: 1.15rem;
}
/* REMODAL END */


.footer {
    /* background-image: linear-gradient(334deg, #11ad65, #0c86d7); */
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #F4F4F4;
}

.footer__logo {
    width: 55%;
    display: block;
}

.footer__logo__img {
    width: 100%;
    display: block;
}

.footer__split {
    display: flex;
    color: #000;
}

.footer__logo-wrapper {
    width: 20%;
}

.footer__nav {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.footer__nav__col {
    width: 23%;
}

.footer__nav__col nav ul {
    list-style-type: none;
    padding: 0;
    font-size: 0.9rem;
    margin: 0;
}

.footer__nav__col nav ul li:not(:last-child) {
    margin-bottom: 0.9rem;
}

.footer__nav__col nav ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer__nav__col nav ul a:hover {
    opacity: 1;
}

.footer__nav__heading {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer__contacts {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

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

.footer__contacts a {
    color: inherit;
    text-decoration: none;
}


.footer__phone__value {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.footer__email__value {
    opacity: 0.8;
}

.footer__email__value:hover {
    opacity: 1;
}

.footer__address__value {
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.footer__address__more {
    opacity: 0.8;
}

.footer__address__more:hover {
    opacity: 1;
}

.footer__social__vk {
/*     display: flex;
    align-items: center; */
    margin-right: 1rem;
}

.footer__social__vk > svg {
    width: 1.3rem;
    height: 1.3rem;
    fill:  #fff;
    /* margin-right: 0.5rem; */
}

.footer__social__ig > svg {
    width: 1.3rem;
    height: 1.3rem;
    fill:  #fff;
}






/* BIG MIDDLE SCREENS */
@media screen and (max-width: 1800px) {

    html, body {
        font-size: 14px;
    }

    .container-big {
        /* padding-left: 50px; */
        /* padding-right: 50px; */
    }



    /*  */
    .intro-slider__item__heading {
        font-size: 2.2rem;
    }

    .start-slider-pagination .heading {
        font-size: 1rem;
    }

    .start-slider-pagination {
        /* left: 50px !important; */
        /* right: 50px !important; */
        /* bottom: 50px !important; */
    }


    /*  */
    .features-slider .swiper-slide {
        width: 280px !important;
    }


}




/* MIDDLE SCREENS */
@media screen and (max-width: 1500px) {
    .start {
        height: 600px;
    }

    .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .start-slider-pagination {
        padding-left: 40px;
        padding-right: 40px;
    }


    .features-slider .swiper-slide {
        width: 260px !important;
    }

    .features-slider__item {
        padding-top: 340px;
    }

    .intro_landing {
        height: 550px;
    }

    .intro_landing__content {
        width: 63%;
    }

    .intro_landing__image {
        width: 37%;
    }
}



/* SCREENS 1366 */
@media screen and (max-width: 1366px) {
    /**/
    .start {
        height: 490px;
    }

    .intro-slider__item__heading {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .intro-slider__item__text {
        font-size: 1rem;
    }

    .intro-slider__item__image {
        width: 80%;
    }

    .start-slider-pagination {
        bottom: 28px !important;
    }


    /**/
    .intro_landing {
        height: 520px;
    }

    .heading-main {
        font-size: 1.8rem;
    }

    .intro_landing__list {
        font-size: 0.95rem;
    }

    /* */
    .header__right nav ul {
        font-size: 0.9rem;
    }

    .header__right nav ul li:not(:last-child) {
        margin-right: 1.1rem;
    }

    .header__right__vk > svg {
        width: 1.2rem;
        height: 1.2rem;
    }

    .header__right__ig > svg {
        width: 1.2rem;
        height: 1.2rem;
    }
}



/* COMPACT SCREENS */
@media screen and (max-width: 1300px) {
    /**/
    .hide-on-compact {
        display: none;
    }


    /**/
    .header__logo-wrapper {
        width: 116px;
    }

    .header__right nav ul {
        font-size: 0.85rem;
        padding-left: 0;
    }

    .header__phone {
        margin-left: 1rem;
    }


    .header__phone__value {
        font-size: 1rem;
    }

    .header__phone__text {
        font-size: 0.65rem;
    }

    .header__right__vk > svg {
        width: 1rem;
        height: 1rem;
    }

    .header__right__ig > svg {
        width: 1rem;
        height: 1rem;
    }



    /**/
    .wc-product-item {
        width: calc(25% - 1.5rem);
    }

    /**/
    .single-product__gallery-wrapper {
        width: 42%;
    }

    .single-product__gallery__main > img {
        width: 100%;
    }

    .single-product__main {
        width: 58%;
        padding-left: 0;
    }

}


/* TABLET */
@media screen and (max-width: 1100px) {
    html, body {
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .intro-slider__item__heading {
        font-size: 1.6rem;
    }

    .btn + .btn {
        margin-left: revert;
        margin-top: 1.5rem;
    }

    .padded {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .heading-main {
        font-size: 1.7rem;
    }

    /**/
    .main__grid__item-wrapper {
        width: 50%;
    }

    /**/
    .gradient-heading {
        font-size: 2rem;
    }

    .numbers-grid__item__value {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .numbers-grid__item__text {
        font-size: 0.9rem;
    }

    .numbers-grid__item__fact .text {
        font-size: 0.9rem;
    }

    /**/
    .about__split {
        display: block;
    }

    .about__content {
        width: 100%;
    }

    .about__features-wrapper {
        width: 100%;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }


    /**/
    .features-slider .swiper-slide {
        width: 220px !important;
    }

    .features-slider__item {
        padding-top: 300px;
    }


    /**/
    .testimonials-slider-swiper .swiper-slide {
        width: 300px !important;
    }

    /**/
    .personal_features__grid {
        flex-wrap: wrap;
    }

    .personal_features__item {
        width: calc(50% - 1rem);
    }

    /**/
    .contacts__grid {
        gap: 2rem;
    }

    /**/
    .intro_landing {
        height: revert;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }


    /**/
    .showcase__brands > li {
        font-size: 1rem;
    }

    .showcase__brands > li + li {
        margin-left: 1rem;
    }

    .showcase__split {
        display: block;
    }

    .showcase__grid {
        width: 100%;
    }

    .showcase__item__image {
        width: 140px;
    }

    .showcase__item {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
        height: revert;
    }

    .showcase__item__content {
        width: calc(100% - 280px);
    }

    .showcase__item__more {
        width: 140px;
        border-left: 0;
    }

    .showcase__item__more::before {
        content: '';
        width: 1px;
        height: 1000px;
        display: block;
        position: absolute;
        left: 0;
        top: -500px;
        background-color: #ddd;
    }

    .showcase__item__price {
        font-size: 1.2rem;
    }

    .showcase__item__sale {
        font-size: 0.75rem;
    }

    .showcase__item__heading {
        font-size: 1.3rem;
    }

    .showcase__sidebar {
        margin-top: 3rem;
        width: 100%;
        padding-left: 0;
    }

    .showcase__sidebar__item--pdf__img-wrapper {
        width: 23%;
    }

    .showcase__sidebar__item--pdf__img {
        margin-left: revert;
    }

    .showcase__sidebar__text--pdf {
        width: 77%;
    }

    .showcase__sidebar__item--pdf__btn-wrapper {
        margin-top: -3.5rem;
    }

    .showcase__variations__text {
        width: 100%;
        margin-bottom: 1.3rem;
    }

    .showcase__variations {
        display: block;
        margin-bottom: 0.8rem;
    }

    .showcase__variations__content {
        width: 100%;
        justify-content: space-between;
    }

    /**/
    .single-product__features__item {
        width: calc(33% - 1.17rem);
    }

    /**/
    .payment__grid {
        flex-wrap: wrap;
    }

    .payment__grid__item {
        width: calc(50% - 1rem);
    }

    /**/
    .wc-product-item {
        width: calc(33.3% - 1.33rem);
    }

    /**/
    .footer__logo-wrapper {
        display: none;
    }

    .footer__nav {
        width: 100%;
    }

}



@media screen and (max-width: 768px) {
    html, body {
        font-size: 12px;
    }

    /**/
    .header__right {
        display: none;
    }

    html:not(.menu-opened) .header.sticky {
        height: 56px;
    }

    .header__logo-wrapper {
        width: revert;
    }

    .header__logo__img {
        width: revert;
        height: 40px;
    }

    .header__burger-wrapper {
        width: 50px;
    }

    .burger__top {
        width: 24px;
    }

    .burger__middle {
        width: 24px;
    }

    .burger__bottom {
        width: 12px;
    }

    .header__mobile {
        display: block;
    }

    /**/
    html.menu-opened .nav-opened {
        padding-top: 9rem;
    }

    .nav-opened__menu__line {
        min-height: revert;
        display: block;
    }

    .nav-opened__menu__category {
        width: 100%;
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }


    .nav-opened__menu__nav {
        width: 100%;
    }

    .nav-opened__menu__nav ul {
        font-size: 1.15rem;
        gap: 0 1rem;
    }

    .nav-opened__menu__nav ul li {
        width: calc(50% - 0.5rem);

    }

    .nav-opened__menu__line:not(:last-child) .nav-opened__menu__nav {
        padding-bottom: 2rem;
    }



    /**/
    .callback {
        display: none;
    }

    .callback-mobile {
        display: flex;
        transform: translateY(100px);
        transition: transform 0.3s;
    }

    .callback-mobile.active {
        transform: translateY(0);
    }



    /**/
    .start {
        height: 699px;
    }

    .intro-slider__item__inner {
        display: block;
        padding-top: 5.5rem;
    }

    .intro-slider__item__content {
        width: 100%;
    }

    .intro-slider__item__image-wrapper {
        width: 100%;
    }

    .intro-slider__item__image {
        padding-bottom: 3rem;
        margin-top: 3rem;
        width: auto !important;
        height: 190px;
    }

    .intro-slider__item__image--absolute {
        height: 250px;
        left: 0;
        margin-bottom: -92px;
        position: relative;
    }

    .start-slider-pagination {
        padding-right: 15px;
        padding-left: 15px;
        bottom: 20px !important;
    }

    .start-slider-pagination .heading {
        font-size: 0.7rem;
    }

    /* */
    .main__grid__item-wrapper {
        width: 100%;
    }

    .main__grid__item {
        padding-top: 40%;
    }

    /**/
    .numbers-grid__item-wrapper {
        width: 100%;
    }

    /**/
    .features-slider .swiper-slide {
        width: 185px !important;
    }

    .features > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .features .heading-split {
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    .features .features-slider-swiper {
        left: 15px;
    }

    /**/
    .contacts {
        height: revert;
        padding-top: 0;
    }

    .contacts__container {
        height: revert;
    }

    .contacts__data {
        float: revert;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }

    .contacts__map {
        position: revert;
        height: 400px;
    }

    /**/
    .intro_landing__split {
        display: block;
    }

    .intro_landing__content {
        width: 100%;
    }

    .intro_landing__image {
        width: 100%;
    }

    .intro_landing__image > img {
        width: 56%;
        margin-top: 3rem;
    }

    .intro_landing__image--absolute {
        position: relative;
        left: 0;
        margin-bottom: -48px !important;
        height: 270px;
        width: auto !important;
    }



    .showcase__brands > li {
        margin-bottom: 1rem;
    }

    .showcase__grid {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .showcase__item {
        display: block;
        padding-top: 1rem;
        width: calc(50% - 0.75rem);
    }

    .showcase__item.active + .showcase__item.active {
        margin-top: revert;
    }

    .showcase__item:not(.active) {
        display: none;
    }

    .showcase__item__image {
        width: 100%;
    }

    .showcase__item__content {
        width: 100%;
        padding-top: 2rem;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .showcase__item__more {
        height: revert;
        padding-top: 1rem;
        margin-top: 1rem;
        width: 100%;
        display: block;
    }

    .showcase__item__more::before {
        width: 100%;
        height: 1px;
        top: 0;
        right: 0;
    }

    .showcase__sidebar__item--pdf__btn-wrapper {
        margin-top: -1rem;
    }

    /**/
    .showcase__variations__item {
        flex-grow: 1;
        flex-basis: 0;
    }

    .showcase__variations__item__value {
        width: 50px;
        height: 50px;
    }

    .showcase__variations__item-small {
        width: calc(50% - 1rem);
    }

    /**/
    .docs__grid {
        flex-wrap: wrap;
    }

    .docs__item {
        width: calc(50% - 1rem);
    }

    /**/
    .portfolio__item > a > img {
        height: 250px;
    }

    /**/
    .single-product__split {
        display: block;
    }

    .single-product__gallery-wrapper {
        width: 100%;
    }

    .single-product__main {
        width: 100%;
        padding: 1rem 2rem 2rem;
    }

    .single-product__main .btn {
        width: 100%;
        box-sizing: border-box;
    }

    .single-product__features {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .single-product__features__item {
        width: calc(50% - 0.75rem);
    }

    .single-product__content {
        margin-top: 2rem;
        padding: 2rem;
    }

    .showcase__variations {
        padding: 1rem;
        margin-top: 3rem;
    }

    .payment.payment--single-product {
        margin-top: 2rem;
    }

    /**/
    .wc-products-grid {
        gap: 1.5rem;
    }

    .woocommerce-archive-header {
        display: block;
    }

    .wc-product-item {
        width: calc(50% - 0.75rem);
    }

    .woocommerce-filters {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
        margin-top: 1rem;
    }

    .woocommerce-filters__item {
        width: calc(50% - 0.75rem);
    }

    /*  */
    .wc-archive-category-links {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }

    .wc-archive-category-links__item {
        width: 100%;
    }









    .footer {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer__nav__col {
        width: calc(50% - 0.75rem);
        margin-bottom: 1rem;
    }



}