@import url("./fonts/fonts.css");


html {
    scroll-behavior: smooth;
}
*,
html *
{
    scrollbar-width: thin;
    scrollbar-color: #009999 #FFFFFF;
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}
*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
    background: #FFFFFF;
}
*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
    background-color: #009999;
    border-radius: 0;
}

button, label, input {
    cursor: pointer;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.d-flex {
    display: flex
}

.d-none {
    display: none
}

.d-block {
    display: block
}

.d-md-none {

    @media screen and (min-width: 1200px) {
        display: none !important;
    }

}

.d-md-block {

    @media screen and (min-width: 1200px) {
        display: block !important;
    }

}

button {
    transition: all 0.25s cubic-bezier(.25, .8, .25, 1);
}

.discount-btn button {
    height: 36px !important;
    margin: 0 !important;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 16px !important;
    background-color: transparent !important;
    border: 2px solid rgb(0, 153, 153) !important;
    color: rgb(0, 153, 153) !important;
    padding: 0 24px !important;
    margin-left: 16px !important;
}


.discount-btn.discount-btn__bottom button {
    height: initial !important;
    background-color: rgb(0, 153, 153) !important;
    color: #FFFFFF !important;
    padding: 16px 12px !important;
    border-right: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
    font-size: 18px !important;
    line-height: normal !important;
}

@media screen and (max-width: 1200px) {
    .discount-btn__mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 0.25rem;

        #amoforms_action_btn {
            width: 96%;
            margin-left: 0 !important;
        }
    }

}


/* whatsapp button */

.whats-float {
    position: fixed;
    padding: 4px;
    transform: translate(120px, 0px);
    bottom: 20px;
    right: 0;
    width: 180px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.25s ease-in-out;
    vertical-align: middle;
    font-family: "Comfortaa", sans-serif;
    animation: waves-whatsapp linear 1.5s infinite;


    @media (hover: hover) and (pointer: fine) {
        &:hover {
            transform: translate(0px, 0px);
            animation: none;
        }
    }

}

.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float svg {
    fill: #FFFFFF;
    padding: 8px;
    margin: 0 4px;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
    text-align: center;
}

.whats-float:hover svg {
    transform: rotate(360deg);
}

@keyframes waves-whatsapp {
    0% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, 0.3), 0 0 0 0 rgba(48, 191, 57, 0.2), 0 0 0 0 rgba(48, 191, 57, 0.2);
    }
    40% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, 0.3), 0 0 0 15px rgba(48, 191, 57, 0.2), 0 0 0 0 rgba(48, 191, 57, 0.2);
    }
    80% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, 0.3), 0 0 0 27px rgba(48, 191, 57, 0), 0 0 0 17px rgba(48, 191, 57, 0.067);
    }
    100% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, 0.3), 0 0 0 35px rgba(48, 191, 57, 0), 0 0 0 27px rgba(48, 191, 57, 0.0);
    }
}


/* Home page */

.page-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #212427;
}

.subtitle {
    font-family: "Comfortaa", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #212427;
}

.center {
    text-align: center;
}

.title {
    font-family: "Comfortaa", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    color: #212427;
}

.title-spacing {
    margin-bottom: 90px;
}

.title__white {
    color: rgb(255, 255, 255);
}

.title__indent-top {
    margin: 16px 0 48px;
}

.title__indent {
    margin-bottom: 20px;
}

.blue {
    color: rgb(0, 209, 195);
}

.section-spacing {
    margin-bottom: 80px;
}

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

.main__background {
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(9 / 16 * 100vw);
    /*background-size: cover;*/
    opacity: 1;
    z-index: 1;
    /*filter: brightness(0.5);*/
}

.homepage-video__mobile {
    display: none;
    height: calc(16 / 9 * 100vw);
    width: 100%;
    min-width: 100%;
    min-height: calc(9 / 16 * 100vw); /* 100 * 9 / 16 */
    max-width: 90vw;
}

.homepage-video {
    height: 100%;
    width: calc(16 / 9 * 100vw); /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: calc(9 / 16 * 100vw); /* 100 * 9 / 16 */
    max-width: 85vw;
}

.main__background:before,
.main__background:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 50%;
}

.main__background:before {
    top: 0;
    background: -webkit-linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
    background: -moz-linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
    background: -o-linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
    background: linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
}

.main__background:after {
    bottom: 0;
    background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    background: -moz-linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    background: -o-linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
}

.form__text {
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.btn {
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    display: inline-block;
}

.btn:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 153, 153);
    border-color: rgb(0, 153, 153);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: rgb(255, 255, 255);
    -webkit-overflow-scrolling: touch;
}

.wrapper {
    width: 100%;
}

.container,
.container-menu {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    width: 201px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.main {
    position: relative;
    padding-top: 70px;
}

/* Header */
.header__container {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    z-index: 99;
}

.header__container.scrolling {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.header {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.header__menu-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header__menu-list .header__menu-discount {
    margin-top: 0;
}

.header__menu-list-item {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 1;
    padding: .5rem 0;
    transition: all .3s cubic-bezier(.2, 0, 0, 1);
}


.header__menu-list-item > span {
    display: flex;
    gap: 5px;
}

.header__menu-discount {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 170px;
    position: relative;
    padding: 9px 18px;
    border-radius: 5px;
    border: 3px solid rgb(0, 153, 153);
    background: rgb(255, 255, 255);
    color: rgb(0, 153, 153);
    cursor: pointer;
}

.header__menu-discount-img {
    width: 18px;
    height: 18px;
}

.header__menu-discount-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    /* background-color: rgb(255, 255, 255);
	background-image: linear-gradient(14.1deg, #A2CC39 6.74%, #81C45E 23.53%, #0FA7DF 81.86%); */
    /* background-size: 100%;
	background-repeat: repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-background-clip: text;
	-moz-text-fill-color: transparent; */
}

/* .header__menu-discount:before {
	content: "";
	position: absolute;
	inset: -webkit-calc(0px - 3px);
	inset: -3px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 3px;
	-webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
	-webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
	mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	background: -webkit-linear-gradient(75.9deg, #A2CC39 6.74%, #81C45E 23.53%, #0FA7DF 81.86%);
	background: -o-linear-gradient(75.9deg, #A2CC39 6.74%, #81C45E 23.53%, #0FA7DF 81.86%);
	background: linear-gradient(14.1deg, #A2CC39 6.74%, #81C45E 23.53%, #0FA7DF 81.86%);
} */

.header__menu-search {
    width: 36px;
    height: 36px;
    margin-left: 20px;
    background: rgb(0, 209, 195);
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__menu-search-img {
    width: 15px;
    height: 15px;
}

.header__menu-cart, .header__menu-compare {
    width: 36px;
    height: 36px;
    border: none;
    margin-left: 10px;
    background: rgb(0, 153, 153);
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header__menu-cart-img {
    width: 18px;
    height: 18px;
}

.header__menu-compare-img {
    width: 22px;
    height: 22px;
}

.header__menu-cart-count {
    position: absolute;
    top: 2px;
    right: 3px;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 10px;
    color: rgb(255, 255, 255);
    text-align: right;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.header__sub {
    position: relative;
    display: flex;
    align-items: center;
    background: rgb(0, 209, 195);
    min-height: 40px;
    padding: 0.5rem 0;
}

.header__sub-block {
    display: flex;
    justify-content: space-between;
    align-content: center;

    .block__left-side {
        display: flex;
    }

    .block__right-side {
        display: flex;
    }

    @media screen and (max-width: 768px) {
        .block__left-side {
            display: none !important;
        }

        .block__right-side {
            width: 100%;
            justify-content: space-between;
            padding: 0 1rem;
        }

        .block__right-side a {
            margin: 0;
        }

        .block__right-side svg {
            height: 16px;
        }

        .block__right-side p {
            font-size: 0.9rem;
        }
    }

    @media screen and (max-width: 576px) {
        .block__right-side p {
            font-size: 0.8rem;
        }
    }

}

.header__sub-block a {
    margin: 0 0 0 16px;
}

.header__sub-block a p {
    color: white;
}

.header__contacts-phone {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.header__contacts-phone-number {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: white;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

.back img {
    width: 15px;
    height: 15px;
}

.baner-right .baner-img {
    display: none;
}

.discount__hide {
    display: none;
}

.header__menu-list .footer__contacts-social-list,
.header__menu-list .header__menu-discount {
    display: none;
}

.cart-modal {
    transform: translateY(-1000px);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 330px;
    width: 100%;
    background-color: rgb(249, 249, 249);
    gap: 30px;
    padding: 30px 20px;
    border-radius: 20px;
    height: 500px;
    max-height: 100vh;
    overflow-y: auto;
}

.cart-modal .cart-wrap-block {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 0;
}

.cart-modal .cart-wrap-block .product-thumbnail-img {
    width: 120px;
    /*height: 90px;*/
    height: auto;
}

.cart-modal .cart-wrap-block .cart-wrap-block-name {
    text-align: center;
    margin-bottom: 0;
}

.cart-modal .cart-wrap-block .remove {
    position: absolute;
    right: 12px;
    top: 12px;
}

.cart-modal .order-total {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #212427;
}

.cart-modal-active {
    transform: translateY(0);
    transition: 0.3s;
}

.continue {
    text-decoration: none;
    border-radius: 5px;
    background-color: rgb(0, 153, 153);
    padding: 20px 40px;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.portfolio-list,
.water-list {
    display: none;
}

.arrow-down {
    width: 15px;
    height: 15px;
}

.arrow-up {
    width: 15px;
    height: 15px;
    display: none;
}

.burger {
    display: none;
}

.water,
.portfolio {
    cursor: pointer;
}

.visible {
    color: rgb(0, 209, 195);
}

.visible .arrow-up {
    display: block;
}

.visible .arrow-down {
    display: none;
}

.visible .water__hide {
    display: flex;
}

.water__hide {
    background-color: rgb(249, 249, 249);
    width: 100%;
    padding: 56px 0 96px;
    position: relative;
    z-index: 11;
    display: none;
    align-items: center;
}

.water__hide-link {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    width: 95px;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.water__hide-link span {
    position: relative;
}

.water__hide-link span::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url("./../img/arrow-right-short.png");
}

.search-input {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
}

.water__hide-menu {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}

.water__hide-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    max-width: 16vw;
    min-height: 12.3vw;
    border-radius: 10px;
    padding: 30px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.water__hide-menu-item::after {
    content: "";
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.water__hide-menu-item:hover {
    transform: scale(1.15, 1.15);
    z-index: 5;
}

.water__hide-menu-item:hover::after {
    opacity: 1;
}

.water__hide-menu-item-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #009999;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.portfolio__hide {
    background-color: rgb(249, 249, 249);
    width: 100%;
    padding: 56px 0 96px;
    position: relative;
    z-index: 11;
    display: none;
    align-items: center;
}

.portfolio__hide-menu {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}

.portfolio__hide-menu-item {
    background-position: center;
    background-size: cover;
    max-width: 16vw;
    min-height: 12.3vw;
    width: 100%;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio__hide-menu-item::after {
    content: "";
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio__hide-menu-item:hover {
    transform: scale(1.15, 1.15);
    z-index: 5;
}

.portfolio__hide-menu-item:hover::after {
    opacity: 1;
}

.active {
    display: flex;
}

.search {
    display: none;
}

.searchActive .header__menu-search-img {
    display: none;
}

.searchActive .header__menu-search-close {
    display: block;
}

.header__menu-search-close {
    display: none;
    width: 15px;
    height: 15px;
}

.showSearch {
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    z-index: 10;
    background-color: rgb(237, 237, 237);
    border: 1px solid rgb(223, 223, 223);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
}

.showSearch #search {
    background-color: rgb(237, 237, 237);
    width: 100%;
    border: none;
    outline: none;
}

.showSearch #search::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(198, 198, 198);
}

.showSearch img {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.bread-band {
    margin-top: 50px;
    display: flex;
}

.bread-band .bread-link {
    text-decoration: none;
}

.bread-band .bread-link span {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    opacity: 0.8;
}

.bread-band .bread-before {
    text-decoration: none;
}

.bread-band .bread-before span {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    opacity: 0.8;
}

.bread-band .bread-after {
    text-decoration: none;
}

.bread-band .bread-after span {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    opacity: 0.8;
}

.bread-band .bread-text {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    opacity: 0.8;
}

.bread-band .bread-sep {
    color: #212427;
    opacity: 0.8;
}

.wrapper_grey {
    background: rgb(249, 249, 249);
}

.block_background {
    position: relative;
    /*background-image: url("./../img/home-page/block-head/head-background.svg");*/
}

.block_background .container {
    z-index: 2;
}

.div-hide {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: #222222;
    opacity: 0.65;
    overflow: hidden;
}

.overflow {
    overflow: hidden;
}

.background__white {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: rgb(255, 255, 255);
    opacity: 0.5;
    overflow: hidden;
}

.modal, .modal__discount {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transition: 1.5s;
    transform: translate(-1000%, -50%);
    z-index: 101;
    margin: 0 auto;
    max-width: 454px;
    width: 100%;
    overflow: auto;
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 10px;
}

.modal__discount-text {
    color: #2D2D2D;
    text-align: center;
    /* subtitle */
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.modal__discount-banner {
    color: #00D1C3;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 34px */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal__discount .title,
.modal .title {
    max-width: 410px;
}

.modal__discount .form-order,
.modal .form-order {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.modal__discount .form-order .input-name,
.modal__discount .form-order .input-tel,
.modal .form-order .input-name,
.modal .form-order .input-tel {
    max-width: 400px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 14px 20px;
}

.modal__discount .form-order .input-name::placeholder,
.modal__discount .form-order .input-tel::placeholder,
.modal .form-order .input-name::placeholder,
.modal .form-order .input-tel::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(198, 198, 198);
}

.modal__discount .form-order .label-checkbox,
.modal .form-order .label-checkbox {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.modal__discount .form-order .button,
.modal .form-order .button {
    cursor: pointer;
    max-width: 400px;
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 20px 40px;
    background-color: rgb(0, 153, 153);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.modal__discount .form-order .button:disabled,
.modal .form-order .button:disabled {
    opacity: 0.8;
    cursor: auto;
}

.modal-button-close,
.modal .form-order .button-close {
    position: absolute;
    right: -19px;
    top: -19px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid rgb(255, 132, 121);
    border-radius: 50%;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: rgb(255, 132, 121);
    padding: 3px 7px;
}

.modal__active,
.modal__discount-active {
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

/* Backplavideo at home page */
.wrapper__video {
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(9 / 16 * 100vw);
    /*background-size: cover;*/
    opacity: 0;
    z-index: -3;
    /*filter: brightness(0.5);*/
}

.homepage-video__mobile {
    display: none;
    height: calc(16 / 9 * 100vw);
    width: 100%;
    min-width: 100%;
    min-height: calc(9 / 16 * 100vw); /* 100 * 9 / 16 */
    max-width: 90vw;
}

.homepage-video {
    height: 100%;
    width: calc(16 / 9 * 100vw); /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: calc(9 / 16 * 100vw); /* 100 * 9 / 16 */
    max-width: 85vw;
}

.wrapper__video:before,
.wrapper__video:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 75%;
}

.wrapper__video:before {
    top: 0;
    background: -webkit-linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
    background: -moz-linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
    background: -o-linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
    background: linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
}

.wrapper__video:after {
    bottom: 0;
    background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    background: -moz-linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    background: -o-linear-gradient(to top, #FFFFFF 0%, transparent 100%);
    background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
}

/* SWIPER */
.swiper {
    margin-top: 50px;
    width: 100%;
    height: 100%;
    padding-bottom: 80px;
}

.swiper.mySwiper {
    margin-top: 350px;
}

.swiper .swiper-button-prev svg, .swiper .swiper-button-next svg {
    fill: #009999;
    opacity: 1;
}

.swiper .swiper-button-prev.swiper-button-disabled svg, .swiper .swiper-button-next.swiper-button-disabled svg {
    opacity: 0.5;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mySwiper .swiper-slide {
    background: transparent;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.baner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 50px;
    padding: 16px
}

.baner__title {
    max-width: 100%;
    font-size: 30px;
    line-height: 110%;
    margin: 0;
    text-align: left;
}

.baner__title .blue {
    color: rgb(0, 153, 153);
}

.baner__description {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: start;
}

.baner-left {
    /*margin-top: 100px;*/
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.baner-left-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.baner-left-social-img {
    width: 30px !important;
    height: 30px !important;
}

.baner-left-social-img svg {
}

.baner-left-social a svg {
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.baner-left-social a svg:hover {
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
    /*opacity: 0.9;*/
}

.baner-right {
    max-width: 40%;
    width: 100%;
}

.baner-right .baner-right-img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.baner-btn,
.main-banner-btn {
    cursor: pointer;
    margin: 20px 0;
    background: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.baner-btn:hover,
.main-banner-btn:hover {
    padding: 20px 40px;
    border: 2px solid rgb(0, 153, 153);
    background: rgb(255, 255, 255);
    color: rgb(0, 153, 153);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.swiper-pagination-bullet {
    width: 90px;
    height: 3px;
    border-radius: 0;
    background: #afafaf;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgb(0, 153, 153);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 3px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    top: auto;
    bottom: 16px;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-next img,
.swiper-button-prev img {
    cursor: pointer;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 430px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 430px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: pointer;
    z-index: 100;
}

.wrapper__size {
    min-height: 755px;
    display: flex;
    align-items: flex-end;
}

.modal .amoforms_iframe {
    position: absolute !important;
    margin: 0 auto !important;
    left: 0;
    max-width: 100%;
}

.block {
    background-color: rgba(45, 45, 45, 0.75);
    padding: 50px 50px 80px 50px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 2;
}

.block .block__box #amoforms_action_btn {
    cursor: pointer !important;
    margin: 20px 0 !important;
    background: rgb(0, 153, 153) !important;
    border: 2px solid rgb(0, 153, 153) !important;
    border-radius: 5px !important;
    padding: 20px 40px !important;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: rgb(255, 255, 255) !important;
    text-align: center !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    height: initial !important;
}

.block .block__box #amoforms_action_btn:hover {
    padding: 20px 40px !important;
    border: 2px solid rgb(0, 153, 153) !important;
    background: rgb(255, 255, 255) !important;
    color: rgb(0, 153, 153) !important;
}

.block-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;

    @media screen and (max-width: 768px) {
        flex-direction: row;
    }

}

.block-top-subtitle {
    max-width: 370px;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(255, 255, 255);
}

.block-title {
    max-width: 635px;
}

.block-bottom {
    display: flex;
    gap: 30px;
}

.block-bottom-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: scale(0);
    transition: 2s;
    max-width: 23%;
    width: 100%;
    /* background-color: #f2f8f9; */
    border-radius: 5px;
    padding: 1.5rem 2rem;
    z-index: 0;
    overflow: hidden;
    /*cursor: pointer;*/
}

.block-bottom-item:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: #009999;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
    display: none;
}

.block-bottom-item:hover:before {
    transform: scale(21);
}

.block-bottom-item .block-bottom-item-img {
    /* padding: 10px; */
    /* background-color: rgb(0, 153, 153); */
    border-radius: 5px;
    width: 74px;
}

.block-bottom-item:hover .block-bottom-item-img {
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important; */
}

.block-bottom-item-text {
    max-width: 140px;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
}

.block-bottom-item-text_head {
    color: #FFFFFF;
    font-weight: 500;
}

.block-bottom-item .go-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #009999;
    border-radius: 0 4px 0 32px;
}

.block-bottom-item .go-corner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.block-bottom-item .go-arrow svg {
    margin-top: -9px;
    margin-right: -4px;
}

.block-bottom-item .go-arrow svg {
    width: 16px;
    fill: white;
    stroke-width: 1px;
    stroke: white;
}

.block-bottom-item:hover .block-bottom-item-text {
    /* color: #FFFFFF; */
}

.block-bottom-item:hover .go-corner {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

.wrapper_blue {
    margin-top: 50px;
    background-color: rgb(0, 209, 195);
    padding: 80px 0;
}

.block2 {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.block2-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.block2-top-title {
    text-align: center;
}

.block2-top-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.block2-middle {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;
    justify-content: center;
}

.block2-middle-item {
    position: relative;
    max-width: 300px;
    background-color: #fff;
    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    border-radius: 5px;
    cursor: pointer;
}

.block2-middle-item .image {
    position: relative;
    width: 260px;
    min-height: 130px;
    left: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 5px;
    margin-top: -50px;
    transition: 0.3s linear;
    transition-delay: .1s;
    /*border: 1px solid #009999;*/
}


.block2-middle-item .image img {
    max-width: 100%;
    background: #009999;
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.block2-middle-item .content {
    position: relative;
    padding: 10px 15px;
    color: #111;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    max-height: 0;
}

.block2-middle-item .content .block__hide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #212427;
}

.block2-middle-item .content .block__hide a {
    color: rgb(0, 209, 195);
}


@media screen and (max-width: 1199px) {
    .block2-middle-item.active .image {
        margin-top: -100px;
    }

    .block2-middle-item.active .content {
        margin-top: 50px;
        visibility: visible;
        opacity: 1;
        transition-delay: 0.2s;
        max-height: 230px;
    }
}

@media (hover: hover) {
    .block2-middle-item:hover .image {
        margin-top: -100px;
    }

    .block2-middle-item:hover .content {
        margin-top: 50px;
        visibility: visible;
        opacity: 1;
        transition-delay: 0.2s;
        max-height: 230px;
    }
}

.block2-middle-item-text {
    width: 100%;
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: rgb(0, 153, 153);
    text-align: center;
}

.block2-bottom-btn {
    margin: 0;
    border: 2px solid #ffffff;
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.block2-bottom-btn:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 153, 153);
    padding: 20px 40px;
}

.type-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    max-width: 23%;
    width: 100%;
    background-color: #009999;
    border-radius: 5px;
    padding: 20px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.type-bottom-item .info {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    fill: #FFFFFF;
}

.type-bottom-item .cross {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    fill: #FFFFFF;
}

.info-block {
    max-width: 100%;
    width: 100%;
    display: none;
    position: relative;
    padding: 30px;
    border-radius: 8px;
    left: 0;
    top: -20px;
    right: auto;
    background-color: transparent;
    z-index: 20;
    user-select: none;
}

.info-block ul {
    position: relative;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-block-start: 0;
    padding-inline-start: 15px;
    list-style: none;
}

.info-block ul li {
    width: max-content;
    display: flex;
    background-color: rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: clip;
}

.info-block ul li a {
    position: relative;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(0, 153, 153);
    text-align: center;
    padding: 8px 16px;
    user-select: none;

    transition: all 0.25s cubic-bezier(.25, .8, .25, 1);

    z-index: 2;
}

.info-block ul li a:after {
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    width: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    z-index: -1;
    background: #009999;
}

.info-block ul li a:hover {
    color: #FFFFFF;
    /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);*/
}

.info-block ul li a:hover:after{ width: 100%; }

.blockVisible {
    display: flex;
}

.typeActive {
    /*height: 86px;*/
}

.typeActive .info {
    display: none;
}

.typeActive .cross {
    display: block;
}

#block,
#block4 {
    border-radius: 0 5px 5px 5px;
}

#block3,
#block7 {
    border-radius: 5px 0 5px 5px;
}

.video {
    padding: 90px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.video-title {
    max-width: 1030px;
    text-align: center;
}

.video-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-top-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    color: #212427;
    text-align: center;
}

.video-top-subtitle .blue {
    color: rgb(0, 153, 153);
}

.video-bottom {
    max-width: 890px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.video-bottom .video-icon {
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 5;
    transition: all .2s ease-in-out;
}

.video-bottom .video-icon:hover {
    transform: scale(1.2)
}

@keyframes scale-animation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.video-bottom__item {
    width: 100%;
    position: relative;
    height: 460px;
}

.video-bottom__item-img {
    max-width: 890px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    border-radius: 10px;
}

.video-bottom__item iframe {
    display: none;
    border: none;
    border-radius: 10px;
    max-width: 890px;
    width: 100%;
}

.video__frame {
    max-width: 100%;
    width: 100%;
    max-height: 460px;
    height: 100%;
    border-radius: 10px;
}

.review {
    padding: 80px 0 40px;
    transform: translateX(-1000%);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.review-title {
    max-width: 385px;
}

.review-top {
    display: flex;
    justify-content: space-between;
}

.review-top-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    color: #212427;
    max-width: 613px;
}

.review-middle .swiper {
    padding-bottom: 83px;
}

.review-middle .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    height: auto;
}

.review-middle .swiper-slide .slider-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.review-middle .swiper-slide .slider-top-avatar {
    border-radius: 20px;
    width: 32px;
    height: 32px;
}

.review-middle .swiper-slide .slider-top-name {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
}

.review-middle .swiper-slide .slider-middle {
    margin-bottom: 10px;
}

.review-middle .swiper-slide .slider-middle .rating-group .ranks-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 0 30px;
}

.review-middle .swiper-slide .slider-middle .rating-group .star-rating {
    position: relative;
    display: flex;
    flex-flow: row;
    align-items: center;
}

.review-middle .swiper-slide .slider-middle .rating-group .star-rating .superstar {
    position: absolute;
    overflow: hidden;
    z-index: 5;
}

.review-middle .swiper-slide .slider-middle .rating-group .star-rating .superstar img {
    width: 120px;
    height: 24px;
}

.review-middle .swiper-slide .slider-middle .rating-group .star-rating img.empty-stars {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 24px;
}

.review-middle .swiper-slide .slider-middle .rating-group .aggregate {
    display: none;
}

.review-middle .swiper-slide .slider-bottom {
    margin-bottom: 30px;
}

.review-middle .swiper-slide .slider-bottom p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
    text-align: left;
}

.review-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review-bottom-btn {
    background-color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-bottom-btn img {
    width: 60px;
    height: 22px;
}

.review-bottom-btn:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 153, 153);
    color: rgb(0, 153, 153);
    padding: 20px 40px;
}

.review-bottom-btn:hover svg path {
    fill: rgb(0, 153, 153);
}

.review .swiper-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.type {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.type .block-bottom-item-text {
    max-width: 100%;
}

.news {
    padding: 40px 0 0;
}

.news-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    color: #212427;
    text-align: center;
}

.search-load_more,
.news-more {
    display: flex;
    justify-content: center;
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    border: 2px solid rgb(0, 153, 153);
    padding: 20px 30px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
}

.content {
    margin-top: 50px;
    padding: 40px 50px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
}

.content__text {
    width: 100%;
}

.description__bottom {
    margin-bottom: 20px;
}

.textblock div:not(:last-child),
.textblock p:not(:last-child),
.textblock ul:not(:last-child),
.textblock ol:not(:last-child),
.textblock li:not(:last-child) {
    margin-bottom: 1em;
    font-family: "Roboto", sans-serif;
}

.textblock ul:not(:last-child),
.textblock ol:not(:last-child) {
    padding-left: 20px;
}

.textblock h1,
.textblock h2,
.textblock h3,
.textblock h4,
.textblock h5,
.textblock h6 {
    font-family: "Comfortaa", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.textblock h1 {
    font-size: 45px;
}

.textblock h2 {
    font-size: 40px;
}

.textblock h3 {
    font-size: 35px;
}

.textblock h4 {
    font-size: 30px;
}

.textblock h5 {
    font-size: 25px;
}

.textblock h6 {
    font-size: 20px;
}

.textblock table {
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1em;
}

.show-more-btn {
    background: transparent;
    border: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-top: 1em;
    color: rgb(0, 153, 153);
    font-weight: 700;
}

.wrapper-accordion:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    /*background: linear-gradient(180deg, rgb(249, 249, 249, 0.25) 0%, rgb(249, 249, 249) 100%);*/
    background: transparent;
}

.wrapper-accordion {
    position: relative;
    z-index: 1;
}

.content__text .textblock-text:first-child {
    margin-top: 0;
}

.content__img {
    max-width: 546px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.content .subtitle {
    max-width: 510px;
}

.favorite {
    margin-top: 50px;
    padding: 40px 0;
}

.favorite .catalog {
    height: auto;
    align-items: stretch;
}

.favorite .catalog .product {
    max-width: 100%;
}

.favorite .news-more {
    margin-top: 0;
    margin-bottom: 0;
}

.search-load_more,
.news-more:hover {
    box-shadow: 0 1px 5px 2px rgba(0, 153, 153, 0.2) inset;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    justify-content: start;
}

.price-block .price__from {
    font-family: "Roboto", sans-serif;
    color: rgb(0, 153, 153);
    font-size: 20px;
    font-weight: 500;
}

.before-price {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    text-decoration-line: line-through;
    opacity: 0.4;
}

.price__discount {
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #212427;
    padding: 3px 6px;
    background-color: rgb(249, 240, 43);
    border-radius: 2px;
    margin-bottom: 4px;
}

.choice {
    display: flex;
    gap: 8px;
}

.price-wrap {
    width: 50%;
    max-width: 120px;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 5px;
    padding: 6px 8px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
    color: #212427;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.price-wrap-discounted:after {
    content: '%';
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    background: red;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
}

.price-wrap input {
    display: none;
}

.active-label {
    background-color: rgb(240, 247, 255);
    border: 1px solid rgb(133, 173, 219);
}

.textwhy {
    padding: 40px 50px;
    border-radius: 10px;
    overflow: clip;
}

.textwhy .content__text {
    margin-top: 20px;
}

.textwhy .content__text .title {
    margin: 20px auto;
    max-width: 670px;
}

.blue__title {
    font-family: "Comfortaa", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 39px;
    color: rgb(255, 255, 255);
    margin-bottom: 48px;
}

.type_country {
    transform: translateX(-1000%);
    transition: 0.5s;
}

.mySwiper99 {
    margin-top: 30px;
}

.mySwiper3 .swiper-slide {
    gap: 23px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 40px;
}

.news-block__title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
    text-align: left;
    margin-bottom: 10px;
    text-decoration: none;
}

.news-block__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    transition: transform .35s, box-shadow .35s, -webkit-transform .35s, -webkit-box-shadow .35s;
}

.news-block__item:hover {
    background: transparent !important;
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.news-block__img {
    width: 100%;
}

.news-block__descr {
    position: relative;
    z-index: 2;
    margin: -50px auto 0;
    width: 95%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    border: 1px solid rgb(244, 244, 244);
    padding: 25px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .35s, box-shadow .35s, -webkit-transform .35s, -webkit-box-shadow .35s;
}

.news-block__item:hover .news-block__descr {
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-block__date {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    opacity: 0.8;
}

.news-block__text {
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
    text-align: left;
}

.news-block__link {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.news-block__link span {
    position: relative;
}

.news-block__link span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(0, 209, 195);
    width: 120px;
    height: 1px;
}

.news-block__link span::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url("./../img/arrow-right-blue.png");
}

.current-link {
    color: rgb(0, 153, 153);
}

.thanks {
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px;
    max-width: 618px;
    width: 100%;
    display: flex;
}

.thanks .title {
    max-width: 410px;
    margin: 0 auto 12px;
}

.thanks .modal-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
    text-align: center;
    margin-bottom: 20px;
}

.thanks .mobal__btn {
    cursor: pointer;
    border: 2px solid rgb(0, 153, 153);
    border-radius: 5px;
    background-color: rgb(0, 153, 153);
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.thanks .mobal__btn:hover {
    background-color: #ffffff;
    color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
    padding: 20px 40px;
}

.search-visible {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    width: 100%;
    border: 1px solid rgb(223, 223, 223);
    background-color: rgb(237, 237, 237);
    border-radius: 5px;
    max-width: 500px;
    padding: 10px;
}

.search-visible .search-input {
    width: 100%;
    max-width: 500px;
    background-color: rgb(237, 237, 237);
    border: none;
    outline: none;
}

.search-visible .search-img {
    width: 15px;
    height: 15px;
}

.search__page {
    margin-top: 50px;
}

.wrapper__text {
    margin-top: 50px;
    padding: 40px 50px;
    border-radius: 10px;
}

.wrap {
    display: flex;
    gap: 20px;
}

.wrap_container {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.wrap_container .more {
    margin: 40px auto 0;
}

.wrap_container .more-btn {
    border: 2px solid rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
}

.catalog {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    gap: 20px;
}

.catalog-textblock {
    display: flex;
    flex-direction: column;
    padding: 0 12px 20px;
    position: relative;
}

.catalog-textblock .added_to_cart {
    background-color: rgb(0, 209, 195);
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.catalog-textblock .added_to_cart img {
    width: 15px;
    height: 15px;
}

.catalog a {
    text-decoration: none;
}

.catalog .product__title {
    padding: 0 10px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
    margin-bottom: 5px;
    text-align: center;
}

.catalog .product-img {
    transform: scale(1);
    transition: 0.3s;
    object-fit: cover;
    object-position: center;
    width: 250px;
    height: 250px;
    display: block;
    position: relative;
}

.catalog .product-img:hover {
    transform: scale(1.1);
    transition: 0.5s;
    opacity: 0.8;
    border-radius: 10px;
    cursor: url("./../img/button_posmotret.png"), pointer;
}

.catalog .product-img.not-link:hover {
    cursor: default;
}

.catalog .product-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.catalog .hoverEff {
    background-color: rgb(0, 153, 153);
    padding: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    color: #212427;
    position: absolute;
    left: 200px;
    top: 200px;
    z-index: 10;
}

.catalog .product {
    width: 100%;
    max-width: 31.3%;
    border-radius: 10px;
    border: 1px solid rgb(244, 244, 244);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog .product .price-block {
    justify-content: center;
}

.catalog .product .price {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    line-height: 23px;
    color: rgb(0, 153, 153);
    text-align: left;
    font-weight: 500;
}

.catalog .product .card-btn {
    background-color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 5px;
    z-index: 1;
    position: relative;
    width: 100%;
}

.catalog .product .card-btn:hover {
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    padding: 14px 0;
    color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
}

.compare-btn {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 153, 153);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 5px;
    z-index: 1;
    box-sizing: border-box;
    color: rgb(0, 153, 153);
    width: 100%;
}

.compare-btn:hover {
    background-color: rgb(0, 153, 153);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 153, 153);
}

.catalog .card-descr {
    margin-top: 8px;
    margin-bottom: 16px;
    background-color: rgb(249, 249, 249);
    padding: 8px;
    border-radius: 5px;
}

.catalog .card-descr-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
    position: relative;
}

.catalog .card-descr-list-title {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    opacity: 0.8;
    max-width: 100%;
    text-align: left;
}

.catalog .card-descr-list-num {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    opacity: 0.8;
}

.catalog .card-descr-list {
    /*border-bottom: 1px solid #212427;*/
    border-bottom: 1px solid rgba(33, 36, 39, 0.5);
}

.catalog .card-descr-list:last-child {
    border-bottom: none;
    padding-top: 5px;
}

.sort {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #212427;
}

.filtr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(249, 249, 249);
    border: 2px solid rgb(0, 209, 195);
}

.filtr__item {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.orderby {
    width: 196px;
    border-radius: 5px;
    appearance: none;
    overflow: hidden;
    list-style: none;
    display: none;
    background-color: rgb(249, 249, 249);
    position: absolute;
    top: 48px;
    left: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);

}

.orderby__item {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #212427;
    padding: 10px;
}

.orderby__item a {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    padding: 10px;
    text-decoration: none;
}

.orderby__item:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 209, 195);
}

.orderby__item:hover a {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 209, 195);
}

.orderby__active {
    display: block;
    z-index: 20;
}

.filtr__img-active {
    transform: rotate(180deg);
    transition: 0.3s;
}

.catalog-page-block {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sidebar-hide {
    display: none;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(0, 209, 195);
    max-width: 158px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.sidebar-hide p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: rgb(255, 255, 255);
}

.popular__hide {
    display: none;
}

.sidebar {
    margin-top: 20px;
    max-width: 289px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar .sidebar__form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.sidebar .amountperson-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: white;
}

.sidebar input[type=checkbox] {
    display: none;
}

.sidebar input[type=checkbox] + label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 2px solid white;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    padding-left: 12px;
}

.sidebar input[type=checkbox] + label span,
.sidebar .text-label {
    margin-left: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: white;
}

.sidebar input[type=checkbox] + label:before {
    content: "";
}

.sidebar input[type=checkbox]:checked + label {
    border: 1px solid transparent;
    position: relative;
}

.sidebar input[type=checkbox]:checked + label:before {
    content: "";
    background: url("./../img/check.webp") no-repeat center, #1a73e8;
    -webkit-background-size: 9px 9px;
    background-size: 9px;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.sidebar .manufacturer {
    background-color: rgb(0, 209, 195);
    border-radius: 5px;
    padding: 20px;
}

.sidebar .manufacturer-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.sidebar .manufacturer__block {
    background: rgb(249, 249, 249);
    padding: 10px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    cursor: pointer;
}

.sidebar .manufacturer-select {
    display: none;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    appearance: none;
    overflow: hidden;
    background: rgb(249, 249, 249);
}

.sidebar .manufacturer-select-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.sidebar .manufacturer__active .manufacturer__img {
    transform: rotate(180deg);
    transition: 0.3s;
}

.sidebar .select__active {
    display: block;
    margin-top: 10px;
}

.sidebar .amountperson {
    background-color: rgb(0, 209, 195);
    border-radius: 5px;
    padding: 20px;
}

.sidebar .amountperson-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.sidebar .amountperson-min,
.sidebar .amountperson-max {
    max-width: 100px;
    width: 100%;
    background-color: rgb(249, 249, 249);
    padding: 10px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    text-align: center;
}

.sidebar .amountperson-ranges {
    position: relative;
    width: 100%;
    height: 50px;
}

.sidebar .line {
    position: relative;
}

.sidebar .line::after {
    content: "";
    position: absolute;
    bottom: 50%;
    left: -7.5px;
    width: 15px;
    height: 1px;
    background-color: #212427;
}

.sidebar input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.sidebar .slider-track,
.sidebar .slider-track2,
.sidebar .slider-track3 {
    width: 100%;
    height: 2px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 1px;
}

.sidebar input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 2px;
}

.sidebar input[type=range]::-moz-range-track {
    -moz-appearance: none;
    height: 2px;
}

.sidebar input[type=range]::-ms-track {
    appearance: none;
    height: 2px;
}

.sidebar input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: rgb(26, 115, 232);
    cursor: pointer;
    margin-top: -10px;
    pointer-events: auto;
    border-radius: 50%;
}

.sidebar input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgb(26, 115, 232);
    pointer-events: auto;
}

.sidebar input[type=range]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgb(26, 115, 232);
    pointer-events: auto;
}

.sidebar input[type=range]:active::-webkit-slider-thumb {
    background-color: rgb(255, 255, 255);
    border: 3px solid rgb(26, 115, 232);
}

.sidebar .amountperson-block-count {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: auto;
}

.sidebar .clear-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar .clear-list-item {
    display: flex;
}

.sidebar #item1,
.sidebar #item2 {
    display: none;
}

.sidebar #item1 + label,
.sidebar #item2 + label {
    display: flex;
    align-items: center;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 2px;
    text-align: center;
    padding-left: 12px;
}

.sidebar #item1 + label span,
.sidebar #item2 + label span {
    margin-left: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: rgb(255, 255, 255);
}

.sidebar #item1 + label:before,
.sidebar #item2 + label:before {
    content: "";
}

.sidebar #item1:checked + label,
.sidebar #item2:checked + label {
    border: 1px solid transparent;
    position: relative;
}

.sidebar #item1:checked + label:before,
.sidebar #item2:checked + label:before {
    content: "";
    background: url("./../img/check.webp") no-repeat center, rgb(26, 115, 232);
    background-size: 9px;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    border-radius: 2px;
}

.sidebar .show {
    background-color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar .show:hover {
    background-color: rgb(255, 255, 255);
    padding: 14px 0;
    color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
}

.hide {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    text-align: center;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    margin-top: 20px;
    cursor: pointer;
}

.text-hide {
    display: none;
}

.catalog_text {
    margin-bottom: 80px;
}

.cart .cart-title {
    margin-top: 30px;
}

.cart-wrap {
    margin-top: 30px;
    margin-bottom: 80px;
    background-color: rgb(249, 249, 249);
    padding: 50px 70px;
    border-radius: 10px;
}

.cart-wrap-subtitle {
    font-family: "Comfortaa", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    color: #212427;
    text-align: center;
}

.cart-wrap-table {
    width: 100%;
    margin-top: 30px;
}

.cart-wrap-block {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    border: 1px solid rgb(244, 244, 244);
}

.cart-wrap-block .product-thumbnail {
    max-width: 120px;
}

.cart-wrap-block .product-thumbnail-img {
    width: 120px;
    display: block;
    /*height: 90px;*/
    height: auto;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgb(244, 244, 244);
    border-radius: 5px;
}

.cart-wrap-block-name .product-name {
    max-width: 300px;
    display: block;
    margin-bottom: 10px;
}

.cart-wrap-block-name .product-name a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
    text-decoration: none;
}

.cart-wrap-block-name .product-price {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    color: #212427;
}

.cart .bottom-block,
.cart .buttons-block {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart .proceed {
    text-decoration: none;
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bottom-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-block .coupon #coupon_code {
    border: none;
    padding: 15px 10px;
    border-radius: 5px;
}

.bottom-block .coupon .button {
    cursor: pointer;
    margin-left: 10px;
    border: 2px solid rgb(0, 153, 153);
    padding: 12px 10px;
    background-color: transparent;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: rgb(0, 153, 153);
}

.bottom-block .shop_table {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #212427;
}

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

.product-quantity .quantity {
    max-width: 50px;
    height: 41px;
    padding: 10px 0;
    text-align: center;
    position: relative;
    border: 1px solid rgb(244, 244, 244);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
}

.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity .minus,
.product-quantity .plus {
    padding: 9px 20px;
    border: 1px solid rgb(244, 244, 244);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
    cursor: pointer;
}

.product-quantity .minus {
    border-radius: 5px 0 0 5px;
}

.product-quantity .plus {
    border-radius: 0 5px 5px 0;
}

.remove {
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    color: rgb(255, 132, 121);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    border: 2px solid rgb(255, 132, 121);
    border-radius: 50%;
    padding: 0 5px;
}

.back {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    padding-bottom: 3px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(0, 153, 153);
}

.post_date {
    margin-top: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.post_title {
    margin-top: 10px;
    font-family: "Comfortaa", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    color: #212427;
}

.post_wrap {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.post_img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
}

.post_descr {
    margin-top: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #212427;
}

.post_descr p {
    margin-bottom: 10px;
    margin-top: 10px;
}

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

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

.post_descr h2 {
    margin: 15px 0;
}

.post_descr h3 {
    margin: 8px 0;
}

.post_descr ol,
.post_descr ul {
    background-color: rgb(249, 249, 249);
    border-radius: 8px;
    padding: 20px;
    margin-block-start: 0;
    padding-inline-start: 40px;
    margin: 8px 0;
}

.post_descr ol li,
.post_descr ul li {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212427;
    margin-bottom: 4px;
}

.post_descr ol li:last-child,
.post_descr ul li:last-child {
    margin-bottom: 0;
}

.post_descr a {
    color: #009999;
    font-weight: 500;
    text-decoration: none;
}

.post_descr iframe {
    /*margin: 16px 0;*/
}

.news_title {
    font-family: "Comfortaa", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    color: #212427;
    text-align: center;
}

.popular {
    max-width: 289px;
    width: 100%;
}

.popular-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #212427;
    margin-bottom: 10px;
}

.popular-product {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
    border: 1px solid rgb(244, 244, 244);
    border-radius: 10px;
}

.popular-product__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.popular-product__item-description .product-name {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: #212427;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    max-width: 140px;
}

.popular-product__item-description .product-price {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
}

.popular .product-thumbnail-img {
    border-radius: 5px;
    border: 1px solid rgb(244, 244, 244);
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.order {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.order-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-form {
    margin-bottom: 80px;
    max-width: 655px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    background-color: rgb(249, 249, 249);
}

.order-data {
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-top {
    margin-top: 20px;
    max-width: 595px;
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgb(198, 198, 198);
}

.order-note {
    display: flex;
    flex-direction: column;
}

.order-note label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.order .note {
    outline: none;
    border: none;
    max-width: 255px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 16px 20px;
}

.order .note::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: rgb(198, 198, 198);
}

.order-middle {
    padding-bottom: 25px;
    border-bottom: 1px solid rgb(198, 198, 198);
    max-width: 595px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-middle-region,
.order-middle-city,
.order-middle-address,
.order-middle-apartment {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-middle .date-title {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    margin-bottom: 5px;
}

.order-middle .date-wrap {
    margin-top: 21px;
    display: flex;
    gap: 5px;
}

.order-middle .date-day,
.order-middle .date-month,
.order-middle .date-year {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-middle .date-day-list,
.order-middle .date-month-list,
.order-middle .date-year-list {
    list-style: none;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-middle .date-day-list-item,
.order-middle .date-month-list-item,
.order-middle .date-year-list-item {
    cursor: pointer;
    background-color: rgb(249, 249, 249);
    padding: 3px 4px;
    border-radius: 3px;
}

.order-middle .date-day-list-item:hover,
.order-middle .date-month-list-item:hover,
.order-middle .date-year-list-item:hover {
    background-color: rgb(0, 153, 153);
    color: rgb(255, 255, 255);
}

.order-middle .date-input {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    padding: 16px 20px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.order-middle .date .day,
.order-middle .date .month,
.order-middle .date .year {
    display: none;
}

.order-bottom {
    max-width: 595px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-bottom .order-title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
}

.order-bottom .payment-method {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-bottom .payment-method-first {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.order-bottom .payment-method-first label {
    width: 100%;
}

.order-bottom .payment-method-second {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.order-bottom .payment-method-second label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.order-bottom .payment-method-second .payment-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.order-bottom .payment-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.order-bottom .payment-method-second .payment-radio-img {
    display: flex;
    gap: 4px;
}

.order-bottom input[type=radio],
.order-bottom label {
    cursor: pointer;
}

.order-bottom input[type=radio] {
    position: relative;
    height: 22px;
    width: 22px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.order-bottom input[type=radio]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 2px solid #212427;
}

.order-bottom input[type=radio]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #212427;
    transform: translate(-50%, -50%);
    visibility: visible;
}

.order .btn-order {
    cursor: pointer;
    display: flex;
    margin: 32px auto 24px;
    background-color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.order .btn-order:hover {
    background-color: rgb(255, 255, 255);
    padding: 20px 40px;
    color: rgb(0, 153, 153);
    border: 2px solid rgb(0, 153, 153);
}

.order .shop_table {
    height: 100%;
    max-width: 541px;
    width: 100%;
    background-color: rgb(249, 249, 249);
    padding: 30px 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order .shop_table-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    color: #212427;
}

.order .shop_table-wrap {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order .shop_table-wrap .cart_item {
    background-color: rgb(255, 255, 255);
    display: flex;
    gap: 30px;
    padding: 20px;
    border-radius: 10px;
}

.order .shop_table-wrap .cart_item .cart_item_thumbnail {
    max-width: 120px;
    height: 90px;
}

.order .shop_table-wrap .cart_item .product-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order .shop_table-wrap .cart_item .product-description .product-name {
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    color: #212427;
}

.order .shop_table-wrap .cart_item .product-description .product-name span {
    display: flex;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.order .shop_table-wrap .cart_item .product-description .product-name span strong {
    font-weight: 400;
}

.order .shop_table-wrap .cart_item .product-description .product-total {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
}

.order .shop_table .order-total {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.order .shop_table .order-total span {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #212427;
}

.order .shop_table .order-total span .amount {
    font-weight: 700;
}

.label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.label__red {
    color: rgb(210, 29, 29);
    margin-left: 5px;
}

.input {
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 50px;
    padding: 16px 20px;
}

.date {
    margin-top: 10px;
}

.date .active_list .day-img,
.date .active_list .month-img,
.date .active_list .year-img {
    transform: rotate(180deg);
    transition: 0.1s;
}

.date .active_list .day,
.date .active_list .month,
.date .active_list .year {
    display: flex;
    position: absolute;
    top: 60px;
    width: 405px;
    z-index: 3;
}

.checkout {
    margin-top: 50px;
}

.thanks__grey {
    background-color: transparent;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border-radius: 10px;
    padding: 30px;
    max-width: 1216px;
    width: 100%;
    display: flex;
    align-items: center;
}

.thanks__grey .title {
    max-width: 410px;
    margin: 0 auto 12px;
}

.thanks__grey .modal-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
    text-align: center;
    margin-bottom: 20px;
}

.thanks__grey .mobal__btn {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: rgb(0, 153, 153);
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.thanks__grey .mobal__btn:hover {
    background-color: #ffffff;
    border: 2px solid rgb(0, 153, 153);
    color: rgb(0, 153, 153);
    padding: 18px 38px;
}

.white {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: white;
    overflow: hidden;
}

.product-headbaner .swiper-container {
    overflow: hidden;
    width: 100%;
}

@media (min-width: 480px) {
    .product-headbaner .swiper-container {
        min-height: 398px;
    }
}

.product-headbaner .swiper-container-wrapper {
    width: 49%;
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    height: auto;
}

@media (min-width: 480px) {
    .product-headbaner .swiper-container-wrapper {
        flex-flow: row nowrap;
    }
}

.product-headbaner .swiper-container .swiper-slide img {
    border-radius: 10px;
    border: 1px solid rgb(244, 244, 244);
}

.product-headbaner .swiper-container-wrapper .swiper {
    margin-top: 0;
}

.product-headbaner .swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    /* Slide content */
}

.product-headbaner .swiper-slide-active .description,
.product-headbaner .swiper-slide-active .title {
    opacity: 1;
}

.product-headbaner .swiper-slide-active .title {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #000;
    transition: opacity 0.5s ease 0.5s;
}

.product-headbaner .swiper-slide-active .description {
    font-size: 16px;
    color: #777;
    transition: opacity 0.5s ease 0.75s;
}

.product-headbaner .product-headbaner .swiper-button-next,
.product-headbaner .product-headbaner .swiper-button-prev {
    display: none;
    color: rgb(0, 153, 153);
}

.product-headbaner .gallery-top {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (min-width: 480px) {
    .product-headbaner .gallery-top {
        width: 80%;
        height: 398px;
    }
}

.product-headbaner .gallery-thumbs {
    width: 100%;
    max-width: 128px;
    padding-top: 10px;
}

@media (min-width: 480px) {
    .product-headbaner .gallery-thumbs {
        width: 100%;
        padding: 0;
    }
}

.product-headbaner .gallery-thumbs .swiper-wrapper {
    flex-direction: row;
}

@media (min-width: 480px) {
    .product-headbaner .gallery-thumbs .swiper-wrapper {
        flex-direction: column;
        gap: 10px;
        max-width: 128px;
    }
}

.product-headbaner .gallery-thumbs .swiper-slide {
    max-height: 122px;
    width: 25%;
    flex-flow: row nowrap;
    height: 33%;
    opacity: 0.75;
    cursor: pointer;
}

@media (min-width: 480px) {
    .product-headbaner .gallery-thumbs .swiper-slide {
        flex-flow: column nowrap;
        width: 100%;
        max-width: 128px;
        border-radius: 10px;
        border: 1px solid rgb(244, 244, 244);
    }
}

.product-headbaner .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.product-headbaner .swiper-backface-hidden .swiper-slide {
    height: 398px;
}

.product-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    color: #212427;
    margin-bottom: 5px;
}

.product-headbaner .swiper-pagination {
    display: none;
}

.product-headbaner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.product-headbaner .gallery-top .swiper-slide img {
    object-fit: cover;
    object-position: center;
    max-width: 450px;
    height: 398px;
}

.product-headbaner .product-descriptions {
    background-color: rgb(249, 249, 249);
    padding: 30px;
    border-radius: 10px;
    width: 49%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 25px;
}
.product-headbaner .product-descriptions-top {
    width: 100%;
}
.product-headbaner .product-descriptions-top .checbox_product {
    max-width: 250px;
    background-color: rgb(240, 247, 255);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-headbaner .product-descriptions-top .price {
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    color: rgb(0, 153, 153);
}

.product-headbaner .product-descriptions-top-btn-item {
    cursor: pointer;
    width: 100%;
    /*max-width: 146px;*/
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 14px 32px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.product-descriptions-top-btn {
    display: flex;
    margin-top: 32px;
    gap: 8px;
    max-width: 50%;
}

.product-headbaner .product-descriptions-bottom {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 20px 30px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.product-headbaner .product-descriptions-bottom-text {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    color: #212427;
}

.product-headbaner .product-descriptions-bottom-descr {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
}

.product-headbaner .product-descriptions-bottom-descr .blue {
    color: rgb(0, 153, 153);
}

.product-headbaner .product-descriptions-bottom-number {
    text-decoration: underline;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.checbox_product .price-wrap {
    padding-left: 0;
}

.characteristic {
    margin-top: 30px;
    border-radius: 10px;
    padding: 30px;
}

.characteristic-wrap {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.characteristic-wrap-list {
    width: 100%;
    max-width: 49%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.characteristic-wrap-list-item {
    background-color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.characteristic-wrap-list-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.characteristic-wrap-list-item-left img {
    width: 16px;
    height: 16px;
}

.characteristic-wrap-list-item-left p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: rgb(0, 153, 153);
    letter-spacing: 0.03em;
}

.characteristic-wrap-list-item-right p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    text-align: right;
    letter-spacing: 0.03em;
}

.textblock {
    border-radius: 10px;
    margin-top: 20px;
    padding: 30px 50px;
}

.textblock .title {
    margin-bottom: 10px;
}

.textblock-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #212427;
    margin-top: 10px;
    margin-bottom: 10px;
}

.textblock-text:last-child {
    margin-bottom: 0;
}

.textblock-list {
    margin-block-start: 0;
    padding-inline-start: 20px;
    margin-bottom: 0;
}

.textblock-list-item {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #212427;
    margin-bottom: 10px;
}

.textblock-list-item:last-child {
    margin-bottom: 0;
}

.textblock-list li {
    margin-bottom: 10px;
}

.textblock-list li:last-child {
    margin-bottom: 0;
}

.form {
    margin: 80px 0;
    background-color: rgb(0, 209, 195);
    border-radius: 10px;
    padding: 50px 0 50px 50px;
    display: flex;
    justify-content: space-between;
}

.form.form-help_form {
    padding-bottom: 0;
}

.form-left {
    max-width: 477px;
    display: flex;
    flex-direction: column;
}

.form-left-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.form-left-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.form-left-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: 100%;
}

.form-left-form #name {
    border-radius: 5px;
    padding: 14px 20px;
    border: none;
    outline: none;
}

.form-left-form #phone {
    border-radius: 5px;
    padding: 14px 20px;
    border: none;
    outline: none;
}

.form-left-form input::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(198, 198, 198);
}

.form-left-form .form-btn {
    cursor: pointer;
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-left-form .form-btn:hover {
    padding: 20px 40px;
    border: 2px solid rgb(0, 153, 153);
    color: rgb(0, 153, 153);
    background: rgb(255, 255, 255);
}

.form-right {
    max-width: 726px;
    width: 100%;
}

.form-right img {
    width: 100%;
    height: auto;
}

.modal__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.modal__product .title {
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.modal__product .modal__img {
    width: 36px;
    height: 36px;
}

.modal__product .btn {
    max-width: 400px;
    width: 100%;
    padding: 20px 30px;
    border: 2px solid rgb(0, 153, 153);
}

.modal__product .btn:hover {
    padding: 20px 30px;
}

.modal__product .toCatalog {
    max-width: 400px;
    width: 100%;
    text-decoration: none;
    border: 2px solid rgb(0, 153, 153);
    background-color: #ffffff;
    border-radius: 5px;
    padding: 18px 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.modal__product .toCatalog:hover {
    color: #fff;
    background-color: #F87171;
    border: none;
    padding: 20px 15px;
}

.modal__product .remove {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: "Comfortaa", sans-serif;
}

.need {
    margin-top: 20px;
    position: relative;
    display: flex;
    padding: 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    align-items: center;
    justify-content: center;
}

.need_wrap {
    max-width: 251px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.need__text {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #212427;
}

.need__text-descriptions {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.need__number {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.need__img {
    position: absolute;
    bottom: 0;
}

.need .left {
    left: 40px;
}

.need .right {
    right: 40px;
}

.section-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #2D2D2D;
}

.section-text h2,
.section-text h3,
.section-text h4 {
    margin: 20px 0;

}

.product-tab_item .section-text h2 {
    font-size: 24px;
    font-family: 'Comfortaa', sans-serif;
    font-style: normal;
    line-height: 110%;
}

.section-text h3 {
    font-family: 'Comfortaa', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
}

.section-text p {
    margin: 0 0 8px;
}

.section-text ol,
.section-text ul {
    margin: 0 0 16px 20px;
}

.news_page {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    justify-content: flex-start;
}

.news_page .news-block__item {
    max-width: 31.2%;
}

.search-load_more,
.news-more {
    margin-top: 20px;
    margin-bottom: 80px;
}

.news-foto {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.contacts {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.contacts .amoforms_iframe {
    z-index: 50 !important;
}

.contacts-block {
    /*max-width: 420px;*/
    width: 100%;
}

.contacts-block-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-block-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacts-block-list-item-icon {
    width: 15px;
    height: 15px;
}

.contacts-block-list-item-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
}

.contacts-block-list-item-link {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    padding: 10px 0 0;
}

.contacts-block-list-item-link .contacts-block-list-item-text {
    font-weight: 700;
}

.contacts-block-list-item:first-child {
    padding-bottom: 10px;
}

.contacts-block-list-item:first-child .contacts-block-list-item-text {
    font-weight: 700;
}

.contacts-social {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contacts-social-title {
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    opacity: 0.8;
}

.contacts-social-list {
    display: flex;
    gap: 10px;
}

.contacts-social-list .footer-right-contacts-social-list-item-img {
    width: 34px;
    height: 34px;
}

.contacts-map {
    width: 100%;
}

.contacts-map iframe {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 256px;
}

.contacts-form {
    max-width: 618px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contacts-form-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.contacts-form-inputs #form-name,
.contacts-form-inputs #form-email,
.contacts-form-inputs #form-tel,
.contacts-form-inputs #form-comments {
    width: 100%;
    outline: none;
    padding: 14px 20px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
    border: 1px solid #afafaf;
}

.contacts-form-inputs #form-name::placeholder,
.contacts-form-inputs #form-email::placeholder,
.contacts-form-inputs #form-tel::placeholder,
.contacts-form-inputs #form-comments::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(198, 198, 198);
}

.contacts-form-inputs label {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.contacts-form-inputs .form-btn {
    cursor: pointer;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    border: 2px solid rgb(0, 153, 153);
    color: rgb(0, 153, 153);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.contacts-form-inputs .form-btn:hover {
    box-shadow: 0 1px 5px 2px rgba(0, 153, 153, 0.2) inset;
}

.contacts-form-inputs .form-btn:disabled {
    cursor: auto;
    opacity: 0.8;
}

.foto-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    color: #212427;
    margin-top: 20px;
}

.foto-check {
    display: flex;
    margin-top: 30px;
    position: relative;
}

.foto-check-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.foto-check-list-item {
    cursor: pointer;
    background-color: rgb(249, 249, 249);
    padding: 10px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
}

.foto-check-list-item img {
    display: none;
}

.foto-galery {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.foto-galery-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgb(249, 249, 249);
    border-radius: 10px;
    padding: 50px;
}

.foto-galery-wrap:nth-child(even) {
    flex-direction: row-reverse;
}

.foto-galery-descr {
    max-width: 38%;
}

.foto-galery-descr-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
}

.foto-galery-descr-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #212427;
}

.foto-galery-block {
    width: 100%;
    display: flex;
    gap: 10px;
}

.foto-filtr {
    display: none;
}

.item_active {
    background-color: rgb(0, 153, 153);
    color: rgb(255, 255, 255);
}

.slide,
.slide2,
.slide3,
.slide4 {
    max-width: 440px;
    width: 100%;
    height: 348px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 500ms ease-in-out;
}

.slide.active {
    flex: 10;
}

.slide2.active {
    flex: 10;
}

.slide3.active {
    flex: 10;
}

.slide4.active {
    flex: 10;
}

.foto-more {
    text-align: center;
    margin: 70px auto 100px;
}

.foto-more-btn {
    background-color: #ffffff;
    border: 2px solid rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgb(0, 153, 153);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.foto-more-btn:hover {
    box-shadow: 0 1px 5px 2px rgba(0, 153, 153, 0.2) inset;
}

.textblock-wrap:nth-child(even) .textblock-wrap-container {
    flex-direction: row-reverse;
}

.textblock-wrap-image img {
    max-width: 535px;
    width: 100%;
}

.textblock__pic {
    display: none;
}

.textblock-wrap .content__text {
    margin-top: 20px;
    margin-bottom: 10px;
}

.textblock-wrap .advantage {
    max-width: 670px;
    margin: 0 auto;
}

.table {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    border-collapse: collapse;
}

.table thead {
    background-color: rgb(0, 209, 195);
}

.table thead th:first-child {
    border-right: 1px solid rgba(45, 45, 45, 0.2);
}

.table thead th {
    padding: 10px 20px;
    width: 50%;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: rgb(255, 255, 255);
}

.table tbody tr td {
    padding: 10px 20px;
}

.table tbody tr td:first-child {
    border-right: 1px solid rgba(45, 45, 45, 0.2);
}

.table tbody tr:nth-child(odd) {
    background-color: rgb(255, 255, 255);
}

.table tbody .table-service {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #212427;
}

.table tbody .table-price {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #212427;
    text-align: center;
}
.wrapper-accordion {
    color: #212427 !important;
}

.wrapper-accordion div:has(> table) {
    overflow-x: auto;
}

.wrapper-accordion table colgroup col:not(:nth-child(1)){
    width: 250px !important;
}
.wrapper-accordion table colgroup{
    table-layout: auto !important;
    width: 100% !important;
}


.wrapper-accordion table {
    width: 100% !important;
    table-layout: auto !important;
    overflow: clip !important;
    border: none !important;
    margin-bottom: 20px !important;
}

.wrapper-accordion table tbody :nth-child(1) td {
    font-weight: bold !important;
    text-align: center !important;
    border: none !important;
    padding: 10px 15px !important;
    /*background: rgb(0, 209, 195) !important;*/
    font-size: 14px !important;
    border-left: 1px solid #ddd !important;
    border-right: 1px solid #ddd !important;
}

.wrapper-accordion table th {
    border: none !important;
    /*border-left: 1px solid #ddd !important;*/
    /*border-right: 1px solid #ddd !important;*/
}
.wrapper-accordion table span {
    background: transparent !important;
    font-family: "Roboto", sans-serif !important;
}
.wrapper-accordion table a span {
    color: #009999 !important;
    font-weight: 500;
}
/*.wrapper-accordion table tbody td p span {*/
/*    background: transparent !important;*/
/*}*/
/*.wrapper-accordion table tbody td p a span {*/
/*    color: #009999 !important;*/
/*    font-weight: 500;*/
/*}*/

.wrapper-accordion table tbody :nth-child(1) td p span {
    /*text-decoration-line: none !important;*/
    font-family: "Roboto", sans-serif !important;
    /*color: white !important;*/
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}
.wrapper-accordion table tbody td {
    border-top: none !important;
    border-bottom: none !important;
    border-left: 1px solid #ddd !important;
    border-right: 1px solid #ddd !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    vertical-align: top !important;
    font-family: "Roboto", sans-serif !important;
    text-align: center !important;
}
.wrapper-accordion table tbody td:first-child {
    border-left: none !important;
}
.wrapper-accordion table tbody td:last-child {
    border-right: none !important;
}

.wrapper-accordion table tbody th {
    border-left: 1px solid #ddd !important;
    border-right: 1px solid #ddd !important;
}
.wrapper-accordion table tbody th:first-child {
    border-left: none !important;
}
.wrapper-accordion table tbody th:last-child {
    border-right: none !important;
}

.wrapper-accordion table tbody td p span {
    font-family: "Roboto", sans-serif !important;
}


.wrapper-accordion table tbody tr:nth-child(odd){
    background: #f3f3f3 !important;
}


.benefits {
    transform: translateX(-1000%);
    transition: 0.5s;
    margin-top: 80px;
}

.benefits-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    color: #212427;
    text-align: center;
}

.benefits-block {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.benefits-block-item {
    transform: scale(0);
    transition: 2s;
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 30px;
    width: 100%;
    max-width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.benefits-block-item-image {
    max-width: 52px;
    width: 100%;
    height: 52px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
}

.benefits-block-item-image img {
    width: 32px;
    height: 32px;
}

.benefits-block-item-text p {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.v-headbaner {
    margin-top: 20px;
    display: flex;
    padding: 80px 0;
}

.v-headbaner-block {
    max-width: 640px;
    width: 100%;
    background-color: rgba(45, 45, 45, 0.9);
    padding: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v-headbaner-block-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(255, 255, 255);
}

.textblock-wrap {
    margin-top: 30px;
    padding: 40px 50px;
    border-radius: 10px;
}

.textblock-wrap-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    position: relative;
}

.textblock-wrap-container-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    margin-top: 10px;
}

.textblock-wrap-container-list-item {
    max-width: 505px;
    width: 100%;
    background-color: rgb(0, 209, 195);
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: space-between;
    border-radius: 10px;
}

.textblock-wrap-container-list-item-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 236px;
    padding: 24px;
}

.textblock-wrap-container-list-item-text-name {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(255, 255, 255);
}

.textblock-wrap-container-list-item-text-price {
    width: max-content;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #009999;
    background: rgb(255, 255, 255);
    padding: 2px 24px;
    border-radius: 4px;

}

.textblock-wrap-container-list-img {
    max-width: 211px;
}

.textblock-wrap-container-list-img img {
    width: 211px;
    height: 123px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.textblock-wrap-block {
    margin-top: 20px;
    border-radius: 10px;
    padding: 20px;
    background-color: rgb(255, 255, 255);
}

.textblock-wrap-block-title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
    margin-bottom: 10px;
}

.textblock-wrap-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.consultant__btn {
    cursor: pointer;
    background-color: #afafaf;
    border-radius: 5px;
    border: none;
    padding: 20px 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.consultant__btn:hover {
    padding: 18px 40px;
    box-sizing: border-box;
    border: 2px solid rgb(0, 153, 153);
    background-color: rgb(255, 255, 255);
    color: rgb(0, 153, 153);
}

.form-button {
    cursor: pointer;
    background-color: rgb(0, 153, 153);
    border-radius: 5px;
    padding: 20px 40px;
    border: 2px solid rgb(0, 153, 153);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-button:hover {
    padding: 20px 40px;
    border: 2px solid rgb(0, 153, 153);
    background-color: rgb(255, 255, 255);
    color: rgb(0, 153, 153);
}

.textblock-wrap-container:nth-child(3) {
    flex-direction: row-reverse;
    margin-top: 30px;
}

.textblock-wrap-container:nth-child(3) .textblock-wrap-container-list {
    margin-top: 10px;
}

.textblock-wrap-container:nth-child(3) .textblock-wrap-container-list-item {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 25px;
}

.textblock-wrap-container:nth-child(3) .textblock-wrap-container-list-item img {
    transform: scaleX(-1)
}

.textblock-wrap-container.row {
    flex-direction: row;
}

.textblock-wrap-container:nth-child(4) {
    margin-top: 30px;
}

.textblock-wrap-container:nth-child(4) .textblock-wrap-container-list {
    margin-top: 10px;
}

.textblock-wrap-container-block {
    max-width: 591px;
    width: 100%;
}

.map {
    margin-top: 80px;
    margin-bottom: 80px;
}

.skvazhina {
    margin-top: 50px;
}

.skvazhina .title {
    margin-bottom: 30px;
}

.textwhy .title {
    margin-top: 50px;
    margin-bottom: 20px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.city-item {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    margin: 0;
}

.ingener {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 460px;
    width: 100%;
    background-color: rgb(0, 209, 195);
    border-radius: 10px;
    padding: 30px;
}

.ingener #ingener_name,
.ingener #name,
.ingener #tel {
    padding: 14px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.ingener #ingener_name::placeholder,
.ingener #name::placeholder,
.ingener #tel::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(198, 198, 198);
}

.ingener .textblock-wrap-btn-but {
    border: none;
}

#map {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    height: 500px;
}

.fixed {
    position: fixed;
    top: 80px;
}

.fixed2 {
    max-width: 471px;
    position: fixed;
    top: 100px;
}

.fix {
    position: absolute;
    justify-content: flex-end;
    align-items: flex-end;
    right: 0;
    left: auto !important;
    bottom: 0;
}

.fix2 {
    max-width: 471px;
    position: absolute;
    justify-content: flex-end;
    align-items: flex-end;
    right: 0;
    left: auto !important;
    bottom: 0;
}

.name-active {
    border: 2px solid red !important;
}

.name-active::placeholder {
    color: red !important;
}

.name-active:focus {
    border: none !important;
    outline: none;
}

.name-active::placeholder:focus {
    color: rgb(198, 198, 198) !important;
}

.video-galery-block {
    overflow: hidden;
    width: 100%;
    height: 348px;
    max-width: 60%;
}

.video-galery-block .video2-bottom__item,
.video-galery-block .video3-bottom__item,
.video-galery-block .video4-bottom__item,
.video-galery-block .video5-bottom__item {
    width: 100%;
    position: relative;
    height: 460px;
}

.video-galery-block .video2-bottom__item-img,
.video-galery-block .video3-bottom__item-img,
.video-galery-block .video4-bottom__item-img,
.video-galery-block .video5-bottom__item-img {
    max-width: 890px;
    width: 100%;
    max-height: 460px;
    height: 100%;
    border-radius: 10px;
}

.video-galery-block .video2-bottom__item iframe,
.video-galery-block .video3-bottom__item iframe,
.video-galery-block .video4-bottom__item iframe,
.video-galery-block .video5-bottom__item iframe {
    display: none;
    border: none;
    border-radius: 10px;
    max-width: 890px;
    width: 100%;
}

.video-galery-block .video2__frame,
.video-galery-block .video3__frame,
.video-galery-block .video5__frame,
.video-galery-block .video4__frame {
    max-width: 100%;
    width: 100%;
    max-height: 460px;
    height: 100%;
    border-radius: 10px;
}

.zavod {
    position: relative;
    /* thumbs */
    /* buttons */
}

.zavod-title {
    padding: 0 50px;
    margin: 50px auto 20px;
    max-width: 100%;
}

.zavod .content__text {
    padding: 0 50px;
}

.zavod-gallery {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.zavod .gallery {
    position: relative;
}

.zavod .slider-group {
    max-width: 485px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zavod .slider-group .mySwiper10,
.zavod .slider-group .mySwiper11,
.zavod .slider-group .mySwiper13 {
    margin-top: 0;
    padding-bottom: 0;
    border-radius: 10px;
    max-height: 439px;
    min-height: 439px;
}

.zavod .slider-group .mySwiper10 img,
.zavod .slider-group .mySwiper11 img,
.zavod .slider-group .mySwiper13 img {
    display: block;
    object-fit: cover;
    object-position: center;
    max-width: 485px;
    width: 100%;
    height: 439px;
}

.zavod .slider-group .mySwiper9,
.zavod .slider-group .mySwiper12,
.zavod .slider-group .mySwiper14 {
    margin-top: 0;
}

.zavod .slider-group .mySwiper9 .swiper-slide,
.zavod .slider-group .mySwiper12 .swiper-slide,
.zavod .slider-group .mySwiper14 .swiper-slide {
    cursor: pointer;
    max-width: 148px;
    width: 100%;
    max-height: 133px;
    border-radius: 5px;
}

.zavod .gallery .swiper-slide {
    cursor: pointer;
}

.zavod .gallery img {
    width: 100%;
    height: auto;
}

.zavod .gallery-thumbs .swiper-slide {
    width: auto;
    border-radius: 10px;
    opacity: 0.8;
    filter: grayscale(100%);
}

.zavod .gallery-thumbs .swiper-slide-active {
    opacity: 1;
    filter: initial;
    font-weight: bold;
    color: #231b93;
}

.zavod .gallery-thumbs img {
    cursor: pointer;
    width: auto;
    height: 100px;
    border-radius: 10px;
    object-fit: contain;
}

.zavod .swiper-button-next {
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 15px;
    opacity: 0.2;
    transition: opacity 0.6s;
}

.zavod .swiper-button-prev {
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    padding-left: 15px;
    opacity: 0.2;
    transition: opacity 0.6s;
}

.zavod .swiper-button-prev:hover,
.zavod .swiper-button-next:hover {
    opacity: 1;
}

.zavod .swiper-button-next:after,
.zavod .swiper-container-rtl .swiper-button-next:after {
    margin-left: auto;
}

.zavod .swiper-button-prev:after,
.zavod .swiper-container-rtl .swiper-button-next:after {
    margin-right: auto;
}

.zavod .slider10 .swiper-pagination {
    display: none;
}

.zavod .slider10 .mySwiper9 {
    padding-bottom: 30px;
}

.zavod .slider11 .swiper-pagination1 {
    display: none;
}

.zavod .slider11 .mySwiper12 {
    padding-bottom: 30px;
}

.zavod .slider12 .swiper-pagination2 {
    display: none;
}

.zavod .slider12 .mySwiper14 {
    padding-bottom: 30px;
}

@media (hover: none),
(pointer: coarse) {

    .zavod .swiper-button-prev,
    .zavod .swiper-button-next {
        display: none;
    }
}

.white-block {
    padding: 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.white-block .short {
    max-width: 612px;
}

.buyers {
    padding: 80px 0;
}

.buyers .popular-product {
    flex-direction: row;
    overflow: auto;
    gap: 15px;
    padding-bottom: 10px;
    border: none;
}

.buyers .popular-product__item {
    max-width: 100%;
    width: 100%;
    border: 1px solid #f4f4f4;
    padding: 5px;
    border-radius: 10px;
}

.buyers .product-thumbnail-img {
    border-radius: 5px;
    border: 1px solid #f4f4f4;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.wrapper_footer {
    background: rgb(249, 249, 249);
    margin-top: auto;
}

.footer {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__block-img {
    width: 32px;
}

.footer__payment {
    display: flex;
    margin-bottom: 18px;
    gap: 0.5rem;
}

.footer__copyright {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer__politic {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: rgb(0, 153, 153);
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 70px;
}

.footer__services-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__services-menu {
    list-style: none;
}

.footer__services-item {
    margin-bottom: 10px;
}

.footer__services-item-link {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    text-decoration: none;
}

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

.footer__about-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__about-menu {
    list-style: none;
}

.footer__about-item {
    margin-bottom: 10px;
}

.footer__about-item-link {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    text-decoration: none;
}

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

.footer__contacts-phone {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.footer__contacts-phone-img {
    width: 15px;
    height: 15px;
}

.footer__contacts-phone-number {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

.footer__contacts-mail {
    text-decoration: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;

}

.footer__contacts-mail-img {
    width: 15px;
    height: 15px;
}

.footer__contacts-mail-address {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #212427;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

.footer__contacts-social {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer__contacts-social-title {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #212427;
    opacity: 0.8;
}

.footer__contacts-social-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__contacts-social-list-item {
    text-decoration: none;
    width: 34px;
    height: 34px;
}

.footer__contacts-social-list-item-img {
    width: 34px;
    height: 34px;
}

.footer__contacts-social-list-item-img:hover {
    transform: scale(1.2);
    margin-left: 5px;
    opacity: 0.9;
}

.logo__hide {
    display: none;
}

.footer-menu {
    display: flex;
    gap: 70px;
}

.footer__payment-payment-img {
    height: 20px;
}

.error {
    width: 100%;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.error__block {
    margin: 158px auto;
    position: relative;
    display: flex;
    background-color: rgb(249, 249, 249);
    max-width: 1216px;
    width: 100%;
    border-radius: 10px;
    padding: 120px 0 120px 70px;
}

.error__block-left {
    z-index: 3;
}

.error .subtitle {
    margin-bottom: 12px;
}

.error .btn__block {
    margin: 50px 0 20px;
}

.error__img {
    max-width: 406px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 90px;
}

@media screen and (max-width: 1280px) {
    .container {
        max-width: 95%;
    }

    .textblock-wrap-container-block {
        max-width: 50%;
    }

    .header__menu-list {
        gap: 15px;
    }

    .header__menu-list-item span {
        gap: 2px;
    }

    .header__menu-discount {
        max-width: 150px;
        margin-left: 10px;
        padding: 9px 8px;
        cursor: pointer;
    }

    .header__menu-cart, .header__menu-compare {
        margin-left: 5px;
    }

    .header__menu-search {
        margin-left: 10px;
    }
}

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

    .main__head {
        padding-top: 160px;
    }

    .header__menu-cart, .header__menu-compare {
        width: 45px;
        height: 45px;
    }

    .baner-right .baner-right-img {
        display: none;
    }

    .baner-right .baner-img {
        display: block;
        border-radius: 20px;
    }

    .product-headbaner .swiper-container-wrapper {
        width: 60%;
    }

    .product-headbaner .product-descriptions {
        width: 38%;
    }

    .baner {
        align-items: center;
    }

    .mySwiper {
        margin-top: 40px;
        padding-bottom: 0;
    }

    .mySwiper .swiper-horizontal > .swiper-pagination-bullets,
    .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    .mySwiper .swiper-pagination-custom,
    .mySwiper .swiper-pagination-fraction {
        bottom: 250px;
    }

    .catalog .product-img {
        height: auto;
    }

    .content .subtitle {
        max-width: 100%;
    }

    .baner-left {
        margin-top: 0;
    }

    .wrapper__size {
        min-height: auto;
    }

    .baner-btn {
        margin: 0;
    }

    .baner-left-social {
        display: none;
    }

    .modal {
        width: 95%;
    }

    .header__menu-cart, .header__menu-compare {
        margin-left: 0;
        margin-right: 10px;
    }

    .header__menu .header__menu-discount {
        display: none;
    }

    .header__menu-search {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .header__menu-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 60px;
        left: 50%;
        width: 100vw;
        height: 100%;
        min-height: 750px;
        background-color: rgb(249, 249, 249);
        padding: 15px 20px;
        transition: 0.3s;
        margin-left: 0;
        transform: translateX(-1800px);
        z-index: 3;
    }

    .mySwiper {
        max-width: 100%;
        margin: 40px auto 16px !important;
    }

    .burger {
        display: flex;
        position: relative;
        background-color: rgb(0, 209, 195);
        width: 45px;
        height: 45px;
        border-radius: 5px;
        padding: 22px;
        z-index: 3;
    }

    .burger span {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 2px;
        background-color: rgb(255, 255, 255);
        margin: 0 2px;
    }

    .burger span::before,
    .burger span::after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -1px;
        width: 15px;
        height: 2px;
        background-color: rgb(255, 255, 255);
        transition: 0.3s;
    }

    .burger span::before {
        transform: translateY(-7px);
    }

    .burger span::after {
        transform: translateY(8px);
    }

    .burger-activ span {
        height: 0;
    }

    .burger-activ span::before {
        transform: rotate(45deg);
    }

    .burger-activ span::after {
        transform: rotate(-45deg);
    }

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

    .header__menu-cart, .header__menu-compare {
        padding: 8px 15px;
        z-index: 5;
    }

    .activ {
        background-color: rgb(249, 249, 249);
    }

    .activ .header__menu-list {
        transform: translate(-50%, 0);
        gap: 0.75rem;
        z-index: 12;
        top: 100%;
        max-height: calc(100vh - 100% - 40px);
        min-height: calc(100vh - 100% - 40px);
        height: auto;
        overflow: auto;
        padding: 10px 20px;
    }

    .activ .header__menu-list .footer__contacts-social-list,
    .activ .header__menu-list .header__menu-discount {
        display: flex;
        margin-top: 10px;
    }

    .water .water-list {
        display: none;
    }

    .portfolio .portfolio-list {
        display: none;
    }

    .visible {
        flex-direction: column;
    }

    .visible .water-list {
        margin-top: 20px;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
    }

    .visible .water__hide-link {
        color: #212427;
    }

    .visible .portfolio-list {
        margin-top: 20px;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
    }

    .header__menu-list-item {
        align-items: flex-start;
    }

    .water__hide,
    .portfolio__hide {
        display: none;
    }

    .baner {
        flex-direction: column-reverse;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .block-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .block-bottom {
        flex-direction: column;
        align-items: center;
    }

    .block-title {
        max-width: 100%;
    }

    .block-top-subtitle {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .block-bottom-item {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }

    .content {
        flex-direction: column;
        margin-top: 0;
    }

    .content .content__img {
        margin: 0 auto;
    }

    .header__menu-discount {
        margin-left: 0;
        margin-top: 20px;
    }

    .form {
        justify-content: center;
    }

    .form-left {
        max-width: 100%;
        align-items: center;
    }

    .form-right {
        display: none;
    }

    .v-headbaner {
        justify-content: center;
    }

    .textblock-wrap-container-list-item {
        width: 505px;
    }

    .news_page .news-block {
        justify-content: space-between;
    }

    .news_page .news-block__item {
        max-width: 48.4%;
    }

    .news-foto {
        max-width: 100%;
    }

    .discount__hide {
        display: flex;
        justify-content: center;
        margin: 0 auto 10px;
        max-width: 500px;
        width: 100%;
    }

    .form-left .subtitle {
        text-align: center;
    }

    .form-left .form__text {
        text-align: center;
        font-size: 18px;
        line-height: 27px;
    }
}

@media screen and (max-width: 1024px) {

    .zavod .slider-group .mySwiper9,
    .zavod .slider-group .mySwiper12,
    .zavod .slider-group .mySwiper14 {
        display: none;
    }

    .type-bottom-item {
        padding: 30px 10px;
    }

    .favorite {
        margin-top: 0;
    }

    .zavod .slider10 .swiper-pagination {
        display: block;
    }

    .zavod .slider10 .swiper-pagination .swiper-horizontal > .swiper-pagination-bullets,
    .zavod .slider10 .swiper-pagination-bullets.swiper-pagination-horizontal,
    .zavod .slider10 .swiper-pagination-custom,
    .zavod .slider10 .swiper-pagination-fraction {
        bottom: 10px;
    }

    .zavod .slider11 {
        position: relative;
    }

    .zavod .slider11 .swiper-pagination1 {
        display: block;
    }

    .zavod .slider11 .swiper-pagination .swiper-horizontal > .swiper-pagination-bullets,
    .zavod .slider11 .swiper-pagination-bullets.swiper-pagination-horizontal,
    .zavod .slider11 .swiper-pagination-custom,
    .zavod .slider11 .swiper-pagination-fraction {
        bottom: 10px;
        position: absolute;
        z-index: 2;
        text-align: center;
    }

    .zavod .slider12 {
        position: relative;
    }

    .zavod .slider12 .swiper-pagination2 {
        display: block;
    }

    .zavod .slider12 .swiper-pagination .swiper-horizontal > .swiper-pagination-bullets,
    .zavod .slider12 .swiper-pagination-bullets.swiper-pagination-horizontal,
    .zavod .slider12 .swiper-pagination-custom,
    .zavod .slider12 .swiper-pagination-fraction {
        bottom: 10px;
        position: absolute;
        z-index: 2;
        text-align: center;
    }

    .sidebar__form {
        display: flex;
    }

    .block2-middle-item:hover {
        box-shadow: none;
    }

    .characteristic-wrap-list-item {
        gap: 10px;
    }

    .foto-galery-wrap {
        align-items: flex-start;
    }

    .foto-galery {
        margin-top: 30px;
        gap: 30px;
    }

    .post_wrap .popular {
        display: none;
    }

    .v-headbaner {
        margin-top: 35px;
        padding: 112px 0 30px;
    }

    .benefits-block {
        margin-top: 30px;
    }

    .wrapper_blue .container {
        max-width: 100%;
    }

    .wrapper_blue .container .block2-top {
        padding: 0 20px;
    }

    .wrapper_blue .container .block2-middle {
        padding-left: 20px;
    }

    .characteristic .title,
    .textblock .title {
        text-align: center;
    }

    .bread-band {
        margin-top: 20px;
    }

    .filtr {
        gap: 45px;
    }

    .product-headbaner {
        margin-top: 35px;
    }

    .product-headbaner .swiper-pagination {
        display: block;
        bottom: 10px;
    }

    .product-headbaner .swiper-pagination .swiper-pagination-bullet {
        width: 90px;
    }

    .orderby {
        left: auto;
        right: 0;
    }

    .order .shop_table,
    .order-form {
        max-width: 100%;
    }

    .order-top,
    .order-middle,
    .order-bottom {
        margin: 20px auto 0;
    }

    #player {
        width: 100% !important;
        height: 100%;
    }

    .block2 {
        align-items: stretch;
    }

    .block2-middle {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: scroll;
        touch-action: cross-slide-x;
        overflow-y: hidden;
        min-width: 100%;
        min-height: 280px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .block2-middle::-webkit-scrollbar {
        width: 5px;
        height: 20px;
        background-color: #aaa;
    }

    .block2-middle::-webkit-scrollbar-thumb {
        background-color: rgb(0, 153, 153);
        width: 120px;
        height: 25px;
    }

    .block2-middle.animate {
        animation: 0.5s linear 2s alternate slidein;
    }

    @keyframes slidein {
        from {
            /* pushes the sun down past the viewport */
            transform: translateX(-50px);
        }

        to {
            /* returns the sun to its default position */
            transform: translateX(0);
        }
    }

    .block2-middle-item {
        width: 100%;
        /*min-width: 280px;*/
    }

    .block2-middle-item .image {
        left: 0 !important;
    }

    .block2-bottom {
        margin: 20px auto;
    }

    .review-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .review-title {
        max-width: 100%;
    }

    .review-top-subtitle {
        max-width: 100%;
    }

    .product-headbaner {
        flex-direction: column;
    }

    .product-headbaner .swiper-container-wrapper {
        width: 100%;
    }

    .product-headbaner .gallery-thumbs {
        display: none;
    }

    .product-headbaner .gallery-top {
        width: 100%;
    }

    .product-headbaner .product-descriptions {
        width: 100%;
    }

    .product-descriptions {
        align-items: center;
    }

    .product-descriptions-top {
        text-align: left;
    }

    .product-headbaner .swiper-button-next,
    .product-headbaner .swiper-button-prev {
        display: block;
        color: #009999;
    }

    .product-headbaner .swiper-button-prev::after {
        content: "prev";
        font-size: 36px;
        font-weight: 600;
    }

    .product-headbaner .swiper-button-next::after {
        content: "next";
        font-size: 36px;
        font-weight: 600;
    }

    .product-headbaner .swiper-button-next {
        right: 10px;
        top: 50%;
    }

    .product-headbaner .swiper-slide {
        justify-content: flex-start;
    }

    .product-headbaner .swiper-button-prev {
        left: 10px;
        top: 50%;
    }

    .characteristic-wrap {
        flex-direction: column;
    }

    .characteristic-wrap-list {
        max-width: 100%;
    }

    .textblock-wrap-container,
    .textblock-wrap-container:nth-child(2),
    .textblock-wrap:nth-child(even) .textblock-wrap-container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .textblock-wrap-container-block {
        max-width: 100%;
    }

    .textblock-wrap-container-list {
        margin-top: 0;
    }

    .textblock-wrap-container-list-item {
        width: 100%;
        max-width: 100%;
    }

    .benefits-block {
        flex-wrap: wrap;
    }

    .benefits-block-item {
        max-width: 47%;
    }

    .zavod .textblock-wrap-container {
        flex-direction: column;
    }

    .zavod .zavod-gallery {
        display: none;
    }

    .zavod .textblock-wrap:nth-child(even) .textblock-wrap-container {
        flex-direction: column;
    }

    .my_cart-wrap-block {
        flex-direction: column;
        position: relative;
        padding-bottom: 20px;
    }

    .my_cart-wrap-block .my_cart-wrap-block-name {
        text-align: center;
        margin-bottom: 30px;
    }

    .my_cart-wrap-block .product-remove {
        padding: 0;
        position: absolute;
        right: 10px;
        top: 15px;
    }

    .sidebar .sidebar__form,
    .sidebar .popular {
        display: none;
    }

    .sidebar-show .sidebar__form {
        display: flex;
    }

    .wrap {
        flex-direction: column;
    }

    .wrap_container {
        padding-bottom: 20px;
    }

    .sidebar .popular {
        padding-bottom: 60px;
    }

    .popular__hide {
        display: block;
        padding-bottom: 60px;
    }

    .popular {
        max-width: 100%;
    }

    .popular-product {
        flex-direction: row;
        overflow-y: scroll;
        gap: 50px;
        padding-bottom: 10px;
    }

    .popular-product__item {
        max-width: 289px;
        width: 100%;
    }

    .sidebar-hide {
        display: flex;
    }

    .sidebar-show {
        display: flex;
        position: absolute;
        z-index: 2;
    }

    .order {
        flex-direction: column;
    }

    .order-form {
        margin: 0 auto;
    }

    .order .shop_table {
        margin: 0 auto 20px;
    }

    .foto-galery-wrap,
    .foto-galery-wrap:nth-child(even) {
        flex-direction: column-reverse;
    }

    .foto-galery-descr,
    .video-galery-block {
        max-width: 100%;
    }

    .video-galery-block {
        height: auto;
    }

    .footer-right {
        gap: 20px;
    }

    .footer-menu {
        gap: 20px;
    }

    .sort {
        display: none;
    }

    .search__name {
        margin-top: 10px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .search__name .sort {
        display: block;
    }

    .textblock-wrap-image {
        max-width: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .textblock-wrap-image-pic {
        display: none;
    }

    .textblock__pic {
        display: block;
        object-fit: cover;
        margin: 0 auto;
        border-radius: 20px;
    }

    .need__img {
        display: none;
    }

    .zavod .slider-group .mySwiper10,
    .zavod .slider-group .mySwiper11,
    .zavod .slider-group .mySwiper13 {
        min-height: auto;
    }

    .zavod .slider-group .mySwiper10 img,
    .zavod .slider-group .mySwiper11 img,
    .zavod .slider-group .mySwiper13 img {
        height: auto;
    }

    .img__float {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main {
        padding-top: 115px;

        &.main__head {
            padding-top: 150px;
        }
    }

    p.title {
        font-size: 24px;
    }

    p.textblock-text {
        font-size: 18px;
        font-family: "Roboto", sans-serif;
    }

    ul.textblock-list {

        .textblock-list-item {
            font-size: 18px;
        }

    }

    .header__menu-list {
        padding: 30px 40px 20px;

        .header__menu-list-item {
            font-size: 18px;
        }

        .header__menu-list-item ul li a {
            font-size: 16px;
        }

    }

    .header__sub {
        padding: 0.75rem 0;

        .header__sub-block {
            margin: 0;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

    }

    .baner-left .baner__description {
        font-size: 16px !important;
    }
    .baner-right {
        max-width: 100%;
    }

    .block-top-subtitle {
    }

    .content__text .img__float {
        float: none;
        margin: 0 auto 20px;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .main__background {
        top: 0;
        height: calc(16 / 9 * 100vw);
    }

    .homepage-video {
        display: none;
    }

    .homepage-video__mobile {
        display: block;
    }

    .container {
        max-width: 100%;
    }

    .type_country {
        width: 90%;
        margin: 0 auto;
    }

    .typeActive {
        margin-bottom: -20px;
    }

    .blockVisible {
        top: 0;
    }

    .white-block {
        padding: 20px;
    }

    .white-block .payment-radio-img {
        display: flex;
        max-width: 260px;
        margin: 0 auto;
        justify-content: space-between;
    }

    .container__screen {
        max-width: 95%;
        margin: auto;
    }

    .mySwiper100 .swiper-wrapper {
        flex-direction: column;
    }

    .city-list {
        /*flex-direction: column;*/
        align-items: flex-start;

    }

    .city-item {
        width: 48%;
        text-align: center;
        font-size: 15px;
    }

    .type {
        flex-direction: column;
    }

    .type-bottom-item {
        max-width: 100%;
    }

    #block {
        order: 2;
    }

    .item1 {
        order: 1;
    }

    #block1 {
        order: 4;
    }

    .item2 {
        order: 3;
    }

    #block2 {
        order: 6;
    }

    .item3 {
        order: 5;
    }

    #block3 {
        order: 8;
    }

    .item4 {
        order: 7;
    }

    #block4 {
        order: 10;
    }

    .item5 {
        order: 9;
    }

    #block5 {
        order: 12;
    }

    .item6 {
        order: 11;
    }

    #block6 {
        order: 14;
    }

    .item7 {
        order: 13;
    }

    #block7 {
        order: 16;
    }

    .item8 {
        order: 15;
    }

    .thanks {
        width: 95%;
        margin: 0 auto;
    }

    .ingener {
        margin-top: 30px;
    }

    .cart .cart-title {
        max-width: 95%;
        margin: 50px auto 0;
    }

    .search-load_more,
    .news-more {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .news__hide {
        display: none;
    }

    .mySwiper .swiper-horizontal > .swiper-pagination-bullets,
    .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    .mySwiper .swiper-pagination-custom,
    .mySwiper .swiper-pagination-fraction {
        bottom: 250px;
    }

    .mySwiper3 .swiper-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .product-descriptions-top-btn {
        max-width: 100%;
    }

    .post_wrap {
        flex-direction: column;
    }

    .modal__discount {
        width: 90%;
    }

    .modal .title {
        max-width: 350px;
    }

    .block_background {
        /*background-image: none;*/
        /*background-color: rgba(45, 45, 45, 0.8);*/
        border-radius: 10px 10px 0 0;
    }

    .block {
        /*background-color: transparent;*/
        margin: 32px 16px;
        padding: 30px 20px 60px;
        border-radius: 5px;
    }

    .wrapper_blue {
        margin-top: 0;
        padding: 60px 0;
    }

    .block2-top {
        padding: 0 20px;
    }

    .block2-middle {
        padding-left: 20px;
        padding-top: 60px;
    }

    .mySwiper2 .swiper-pagination {
        bottom: 10px;
    }

    .header__menu-discount {
        max-width: 95%;
        justify-content: center;
    }

    .wrapper_background {
        min-height: auto;
    }

    .block2 {
        gap: 40px;
    }

    .block2-top .subtitle,
    .video-top .subtitle {
        text-align: left;
    }

    .block2-top-subtitle,
    .video-top-subtitle {
        text-align: left;
    }

    .block2-bottom {
        margin: 0 auto;
    }

    .video {
        padding: 60px 0;
        gap: 40px;
    }

    .content {
        padding: 40px 30px;
    }

    .wrapper__text {
        padding: 20px;
        gap: 20px;
    }

    .wrapper__text .subtitle {
        margin-top: -30px;
    }

    .textblock-wrap {
        padding: 40px 20px;
    }

    .textwhy {
        padding: 40px 20px;
    }

    .block2 .title__white,
    .block2 .block2-top-subtitle {
        padding: 0 10px;
    }

    .zavod-title {
        padding: 0;
    }

    .zavod .content__text {
        padding: 0 20px;
    }

    .video-top {
        padding: 0 20px;
    }

    .review {
        padding: 50px 15px;
    }

    .review-top {
        gap: 20px;
        padding: 0 20px;
    }

    .review-middle .swiper {
        margin-top: 30px;
        padding-bottom: 30px;
        padding-left: 20px;
    }

    .news {
        padding: 60px 20px 0;
    }

    .news .swiper {
        padding-bottom: 40px;
    }

    .news .swiper-horizontal > .swiper-pagination-bullets,
    .news .swiper-pagination-bullets.swiper-pagination-horizontal,
    .news .swiper-pagination-custom,
    .news .swiper-pagination-fraction {
        position: relative;
    }

    .footer {
        width: 100%;
        padding: 60px 20px;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-left {
        display: flex;
        gap: 20px;
    }

    .footer-right {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 30px;
    }

    .footer-menu {
        justify-content: space-between;
    }

    .footer-logo {
        display: none;
    }

    .logo__hide {
        display: block;
    }

    .page-title {
        font-size: 35px;
        line-height: 39px;
    }

    .page-title.page-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .title {
        font-size: 20px;
        line-height: 26px;
    }

    #main-top-form {

        .title {
            font-size: 1.5rem;
            line-height: 1.2;
        }

        .modal__discount-text {
            font-size: 1.25rem;
            line-height: 1.2;
        }

    }

    .subtitle,
    .product-title,
    .blue__title {
        font-size: 26px;
        line-height: 1.25;
    }
    .product-title {
        font-size: 26px;
        line-height: 1.5;
    }

    .product-headbaner .product-descriptions-top-price {
        font-size: 20px;
        line-height: 26px;
    }

    .block-top-subtitle,
    .block2-top-subtitle,
    .video-top-subtitle,
    .review-top-subtitle,
    .form-left-subtitle,
    .textblock-wrap-block-title {
        font-size: 15px;
        line-height: 22px;
    }

    .characteristic-wrap-list-item-left p,
    .characteristic-wrap-list-item-right p {
        font-size: 14px;
        line-height: 14px;
    }

    .characteristic {
        padding: 20px 10px;
    }

    .product-headbaner .product-descriptions {
        padding: 20px;
    }

    .form {
        width: 90%;
        margin: 60px auto;
    }

    .textblock-wrap {
        margin-top: 30px;
    }

    .textblock-wrap .mySwiper10,
    .textblock-wrap .mySwiper11,
    .textblock-wrap .mySwiper13 {
        margin-top: 30px;
    }

    .textblock-wrap .mySwiper9,
    .textblock-wrap .mySwiper12,
    .textblock-wrap .mySwiper14 {
        padding-bottom: 15px;
    }

    .form,
    .textblock {
        padding: 20px;
    }

    .my-catalog .product {
        max-width: 48%;
    }

    .foto-check-list-item {
        display: none;
    }

    .foto-filtr {
        padding: 10px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 50px;
        background-color: rgb(0, 153, 153);
        color: rgb(255, 255, 255);
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
    }

    .foto-filtr img {
        display: block;
    }

    .item_active img {
        transform: rotate(180deg);
    }

    .items-show {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 40px;
        left: 0;
        z-index: 2;
        background-color: rgb(249, 249, 249);
        max-width: 289px;
        width: 100%;
        border-radius: 5px;
    }

    .items-show .foto-check-list-item {
        display: flex;
    }

    .filter-show img {
        transform: rotate(180deg);
    }

    .foto-galery-wrap {
        padding: 20px;
    }

    .contacts {
        flex-direction: column;
        align-items: center;
    }

    .slide,
    .slide2,
    .slide3,
    .slide4 {
        height: 150px;
    }

    .news_page .news-block__item {
        max-width: 100%;
    }

    .catalog {
        justify-content: center;
    }

    .catalog .product {
        max-width: 47%;
    }

    .video-bottom {
        height: 300px;
    }

    .date .active_list .day,
    .date .active_list .month,
    .date .active_list .year {
        width: 280px;
    }

    .order-middle .date .month {
        left: 50%;
        transform: translateX(-50%);
    }

    .order-middle .date .year {
        right: -25px;
    }

    .cart-wrap {
        padding: 50px 20px;
    }

    .textblock-wrap-container-list-item-text {
        max-width: 100%;
    }

    .cart-wrap-block {
        flex-direction: column;
        padding: 10px;
        text-align: center;
        position: relative;
    }

    .cart-wrap-block .remove {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .cart-wrap-block .product-thumbnail {
        max-width: 100%;
    }

    .cart-wrap-block .product-thumbnail-img {
        width: 100%;
        height: 100%;
    }

    .contacts {
        margin-bottom: 60px;
    }

    .post_date {
        margin-top: 30px;
    }

    .order .shop_table {
        margin-bottom: 60px;
    }

    .error {
        min-height: auto;
    }

    .error__block {
        margin: 124px 0;
        padding: 40px 20px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .error__block .error__block-left {
        display: flex;
        flex-direction: column;
    }

    .error__block .subtitle,
    .error__block .text {
        text-align: center;
    }

    .error__block .error__block-right {
        display: flex;
        justify-content: center;
    }

    .error__block .error__img {
        position: relative;
        max-width: 50%;
    }

    .error__block .btn__block {
        margin: 40px auto;
    }

    .block-bottom {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;

    }

    .block-bottom .block-bottom-item {
        flex-direction: column;
        max-width: calc((100% - 16px) / 2);
        justify-content: center;
    }

    .block-bottom .block-bottom-item {
        padding: 8px;
    }

    .block-bottom .block-bottom-item .block-bottom-item-text_head {
        font-size: 16px;
    }

    .block-bottom-item .block-bottom-item-img {
        width: 54px;
    }

    .product-tab_item .section-text {
        font-size: 14px;
    }

    .product-tab_item .section-text h2, .product-tab_item .section-text h3 {
        font-size: 20px;
        margin: 16px 0;
    }

}

@media screen and (max-width: 576px) {
    .video-bottom {
        height: 250px;
    }

    .modal {
        max-width: 95%;
    }

    .product-headbaner .swiper-backface-hidden .swiper-slide {
        height: auto;
    }

    .benefits {
        margin-top: 30px;
    }

    .map {
        margin-top: 60px;
    }

    .product-headbaner .gallery-top .swiper-slide img {
        object-fit: cover;
        object-position: center;
        max-width: 100%;
        height: auto;
    }

    .cart .bottom-block {
        gap: 20px;
    }

    .swiper-pagination-bullet {
        width: 20px;
        height: 4px;
    }

    .footer-left {
        flex-direction: column;
    }

    .v-headbaner-block,
    .textblock-wrap {
        padding: 20px;
    }

    .textblock-wrap-block {
        padding: 10px;
    }

    .textblock-wrap-container-list-item-text-name,
    .textblock-wrap-container-list-item-text-price {
        font-size: 16px;
        line-height: 16px;
    }

    .benefits-block-item {
        max-width: 100%;
    }

    .my_cart-wrap {
        padding: 30px;
    }

    .my_cart-wrap .attachment-woocommerce_thumbnail {
        width: 100%;
    }

    .my_cart-wrap .bottom-block {
        flex-direction: column;
        gap: 20px;
    }

    .my_cart-wrap .order-total {
        display: flex;
    }

    .my_cart-wrap .bottom-block {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .my-catalog .product {
        max-width: 100%;
    }

    .my-catalog-textblock .added_to_cart {
        width: 100%;
    }

    .order-top {
        flex-direction: column;
        max-width: 100%;
    }

    .order-top-data {
        max-width: 100%;
    }

    .order-top #note {
        max-width: 100%;
    }

    .order .shop_table,
    .order-form {
        padding: 20px;
    }

    .order-middle .date-input {
        padding: 10px;
    }

    .product-remove {
        padding: 0;
    }

    .bottom-block {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .order-data {
        max-width: 100%;
    }

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

    .order-total {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cart .buttons-block {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .product-headbaner .swiper {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 475px) {
    .textblock-wrap-container-list-img {
        margin-left: 0;
        width: 100%;
    }

    .textblock-wrap-container-list-img img {
        max-width: 150px;
        width: 100%;
        height: auto;
    }

    .sidebar__page {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .video-bottom {
        height: 190px;
    }

    .textblock-wrap-container .textblock-wrap-container-list .textblock-wrap-container-list-item {
        /*flex-direction: column-reverse;*/
        padding: 0;
        gap: 10px;
        align-items: start;
    }
    .textblock-wrap-container .textblock-wrap-container-list .textblock-wrap-container-list-item .textblock-wrap-container-list-item-text {
        padding: 16px;
    }


    .textblock-wrap-container:nth-child(odd) .textblock-wrap-container-list-item {
        /*flex-direction: column-reverse;*/
        padding-left: 0;
    }

    .textblock-wrap-container:nth-child(odd) .textblock-wrap-container-list-item .textblock-wrap-container-list-img {
        max-width: 100%;
        position: relative;
        margin-left: auto;
    }

    .textblock-wrap-container:nth-child(odd) .textblock-wrap-container-list-item .textblock-wrap-container-list-item-text {

    }

    .textblock-wrap-container:nth-child(even) .textblock-wrap-container-list-item {
        padding-left: 0;
    }

    .textblock-wrap-container:nth-child(even) .textblock-wrap-container-list-item-text {
        /*padding: 0 20px;*/
    }

    .textblock-wrap-container:nth-child(even) .textblock-wrap-container-list-img {
        max-width: 100%;
        margin-right: auto;
    }

    .textblock-wrap-btn-but {
        padding: 20px;
    }

    .block2-bottom-btn {
        padding: 20px;
    }

    .footer-right-menu {
        flex-direction: column;
    }

    .catalog .product {
        max-width: 100%;
    }
}

@media screen and (max-width: 436px) {

    .mySwiper .swiper-horizontal > .swiper-pagination-bullets,
    .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    .mySwiper .swiper-pagination-custom,
    .mySwiper .swiper-pagination-fraction {
        bottom: 290px;
    }

    .header__logo-img {
        width: 125px;
        height: 31px;
    }

    .footer__logo {
        width: 158px;
        height: 39px;
    }
}

@media screen and (max-width: 376px) {
    .news-block__descr {
        padding: 25px 20px 30px;
    }

    .cart-wrap-block .remove {
        top: 20px;
        right: 30px;
    }

    .cart-wrap-block .product-thumbnail-img {
        width: 295px;
        /*height: 136px;*/
        height: auto;
    }

    .video-bottom {
        height: 160px;
    }

    .product-quantity {
        width: 100%;
    }

    .product-quantity .minus,
    .product-quantity .plus {
        width: 100%;
    }

    .product-quantity .quantity {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 333px) {

    .mySwiper .swiper-horizontal > .swiper-pagination-bullets,
    .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    .mySwiper .swiper-pagination-custom,
    .mySwiper .swiper-pagination-fraction {
        bottom: 325px;
    }

    .header__menu-cart, .header__menu-compare {
        margin-right: 7px;
    }
}

.disabled-btn {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #009999;
    text-align: center;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.text-disabled.disabled {
    display: none;
}

.img__float {
    float: right;
    max-width: 100%;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.cart-modal {
    overflow: auto;
    height: auto;
    max-height: 80vh;
}

.city-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.ingener {
    margin: 50px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    max-width: 460px;
    width: 100%;
    background-color: #00d1c3;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 30px;
}

.news-block__img img {
    height: 250px;
}

.search-form-btn {
    border: none;
    outline: none;
}

.popular-product__item-description {
    min-width: 160px;
}

.table tbody tr td:first-child {
    text-align: center;
}

.foto-more-btn {
    cursor: pointer;
}

.news-block__descr {
    height: calc(100% - 200px);
    justify-content: space-between;
}

.news-block__text {
    flex: 1 1;
}

.mySwiper3 .swiper-slide {
    align-items: stretch;
    height: auto;
}

.catalog-textblock .added_to_cart {
    background-color: rgb(0, 209, 195);
    border-color: rgb(0, 209, 195);
}

.catalog .product .card-btn {
    cursor: pointer;
}

.textblock-wrap-container:nth-child(even) .textblock-wrap-container-list-img {
    max-width: 100%;
    margin-right: auto;
}

.wrap_container {
    flex: 1 1;
}

.sidebar {
    margin-top: 60px;
}

.textblock-list {
    margin-bottom: 10px;
}

.post_container img {
    width: 100%;
    height: auto;
}

.catalog {
    justify-content: flex-start;
}

@media (max-width: 1200px) {

    .mySwiper .swiper-horizontal > .swiper-pagination-bullets,
    .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    .mySwiper .swiper-pagination-custom,
    .mySwiper .swiper-pagination-fraction {
        bottom: 250px;
    }

    .textblock-wrap-container:nth-child(3) {
        flex-direction: column-reverse;
        margin-top: 30px;
    }

    .textblock-wrap-container.row {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .foto-check {
        display: block;
        cursor: pointer;
    }

    .foto-filtr {
        display: flex;
        width: 100%;
        max-width: 155px;
        justify-content: space-between;
    }

    .foto-check-list {
        display: block;
        width: 100%;
        max-width: 200px;
        border-radius: 5px;
        position: absolute;
        z-index: 99;
        overflow: hidden;
    }

    .foto-check-list-item {
        display: block;
        border-radius: 0;
    }

    .foto-check-list-item.item_active {
        background-color: rgb(249, 249, 249);
        color: #212427;
    }

    .foto-check-list-item:hover {
        background-color: rgb(0, 153, 153);
        color: rgb(255, 255, 255);
    }

    .foto-check-list.foto-check-list-mobile {
        display: none;
    }

    .foto-check-list.foto-check-list-mobile.active {
        display: block;
    }
}

@media screen and (max-width: 475px) {
    .textblock-wrap-container:nth-child(even) .textblock-wrap-container-list-img {
        margin-left: auto;
        margin-right: 0;
    }

    .textblock-wrap-container:nth-child(odd) .textblock-wrap-container-list-item .textblock-wrap-container-list-img {
        margin-right: auto;
        margin-left: 0;
    }
}

/* baner pagination */
.container__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
}

.container__bottom .swiper-button-next {
    position: relative;
    top: 12px;
    bottom: 0;
    left: 0;
    right: 0;
}

.container__bottom .swiper-button-prev {
    position: relative;
    top: 12px;
    bottom: 0;
    left: 0;
    right: 0;
}

.container__bottom .swiper-pagination {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
}

@media screen and (max-width: 1200px) {
    .container__bottom {
        position: absolute;
        bottom: 280px;
    }
}

@media screen and (max-width: 1024px) {
    .container__bottom {
        bottom: 260px;
    }

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

@media screen and (max-width: 768px) {
    .container__bottom {
        bottom: 160px;
    }

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

@media screen and (max-width: 437px) {
    .container__bottom {
        bottom: 180px;
    }
}

@media screen and (max-width: 333px) {
    .container__bottom {
        bottom: 270px;
    }
}

.orderby__item {
    position: relative;
}

.mfilter-counter.mfilter-close, .mfilter-box .mfilter-counter.mfilter-close {
    display: none !important;
}

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

#partners-page {
}

#partners-page .block-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    /*height: 320px;*/
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.5)), url("./../img/partners-page/partners_bg2.webp") right/100%;
    background-size: cover;
    padding: 12rem 4rem;
}

#partners-page .block-1 .textblock-text {
    width: 70%;
    color: white;
}

#partners-page .block-1 .textblock-text.banner-text {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: normal;
}

#partners-page .block-1 .textblock-text.banner-text span {
    text-decoration: underline;
}

#partners-page .block-1 .partners-btn:hover {
    background: transparent;
    backdrop-filter: blur(10px);
}

#partners-page .block-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

#partners-page .block-3 .left-side {
    flex-basis: 40%;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #029B98;
}

/*padding: 7rem;*/
#partners-page .block-3 .left-side:before {
    content: '';
    width: 140%;
    height: 140%;
    background: #ffffff;
    position: absolute;
    top: -20%;
    left: 79%;
    border-radius: 100%;
}

#partners-page .block-3 .left-side .img-fluid {
    position: absolute;
    width: 60%;
    right: 2rem;
}

#partners-page .block-3 .right-side {
    flex-basis: 60%;
    margin: 0;
    padding-right: 30px;
}

#partners-page .block-3 .right-side .item-wrapper {
    margin-bottom: 2rem;
}

#partners-page .block-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #029B98;
    padding: 4rem;
}

#partners-page .block-5 .title {
    margin-bottom: 2rem;
    color: #ffffff;
}

#partners-page .block-5 .textblock-text {
    color: #ffffff;
}

#partners-page .block-5 .form-wrapper {
    width: 90%;
    margin: 0 auto;
}

/*padding: 5rem;*/

@media screen and (max-width: 1200px) {
    #partners-page .block-1 {
        flex-direction: column;
        padding: 9rem 3rem;
    }

    #partners-page .block-1 .textblock-text {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    #partners-page .block-1 {
        flex-direction: column;
        padding: 2rem 2rem 4rem;
    }

    #partners-page .block-1 .textblock-text {
        width: 100%;
    }

    #partners-page .block-1 .textblock-text .banner-text {
        font-size: 1rem;
        line-height: 1.25;
    }

    #partners-page .block-3 {
        flex-direction: column;
        height: 800px;
    }

    #partners-page .block-3 .left-side {
        flex-basis: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        height: 50px;
        overflow: hidden;
        position: relative;
        background: #029B98;

        /*padding: 7rem;*/
    }

    #partners-page .block-3 .left-side:before {
        content: '';
        width: 140%;
        height: 140%;
        background: #ffffff;
        position: absolute;
        top: 55%;
        left: -20%;
        border-radius: 100%;
    }

    #partners-page .block-3 .left-side .img-fluid {
        position: absolute;
        width: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    #partners-page .block-3 .right-side {
        padding: 20px;
    }

    #partners-page .block-3 .right-side .item-wrapper {
        line-height: normal;
    }

    #partners-page .block-5 {
        padding: 0.5rem !important;
    }
}


#category-list {
    margin-top: 2rem;
}

#category-list .category-list__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Category items gap */
    gap: 1rem;
}

#category-list .category-list__wrapper .item__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 4rem) / 3);
    text-decoration: none;
    color: #212427;
    background: rgb(249, 249, 249);
    padding: 2rem 1rem 2rem;
    border-radius: 5px;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#category-list .category-list__wrapper .item__wrapper:hover {
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#category-list .category-list__wrapper .item__wrapper .item-img img {
    max-width: 100%;
    height: 200px;
    padding: 0 2rem;
}

#category-list .category-list__wrapper .item__wrapper .item-title {
    font-family: "Commissioner", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 768px) {
    #category-list .category-list__wrapper {

    }

    #category-list .category-list__wrapper .item__wrapper {
        width: calc((100% - 1rem) / 2);
        text-align: center;
        padding: 1rem;
    }

    #category-list .category-list__wrapper .item__wrapper .item-title {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    #category-list .category-list__wrapper .item__wrapper .item-img img {
        height: 140px;
        padding: 1rem;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-page_amoform {
    display: flex;
    justify-content: center;
    padding: 24px 0 0;
    margin-top: 20px;
}

.product-page_amoform .amoforms_iframe {
    z-index: 1 !important;
}

/* homepage reviews */
.sreview_wrapper {
    padding: 44px 52px;
    font-family: "Roboto", sans-serif;
    color: #212427;
    margin: 80px 0;
}

.sreview_wrapper .sreview_title {
    max-width: 385px;
    margin-bottom: 48px;
    font-family: "Comfortaa", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: #212427;
}

.review .sreview-all,
.sreview_wrapper .sreview-all {
    display: flex;
    justify-content: center;
}

.review .sreview-all .btn,
.sreview_wrapper .sreview-all .btn {
    margin-bottom: 16px;
    width: calc(30% + 16px);
}

.sreview_wrapper .review-bottom {
    gap: 16px
}

.review-bottom .review-bottom-btn {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 153, 153);
    padding: 14px 0;
    width: 15%;
}

.review-bottom .review-bottom-btn:hover {
    background-color: rgb(0, 153, 153);
    color: rgb(255, 255, 255);
    padding: 14px 0;
    width: 15%;
}

.review-bottom .review-bottom-btn svg {
    margin: 0 auto;
}

.review-bottom .review-bottom-btn svg path {
    fill: rgb(0, 153, 153);
}

.review-bottom .review-bottom-btn:hover svg path {
    fill: rgb(255, 255, 255);
}

.sreview_wrapper .sreview-items {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.sreview_wrapper .sreview-items .sreview-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    padding: 36px;
    font-weight: 400;
    border-radius: 8px;
    background: #fff;
    width: 100%;
    max-width: 600px;
}

.sreview_wrapper .sreview-items .sreview-item .review-caption {

}

.review-author_wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 8px;
}

.sreview_wrapper .sreview-items .sreview-item .review-author {
    font-size: 18px;
    font-weight: 500;
}

.sreview_wrapper .sreview-items .sreview-item .review-date-added {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 400;
    color: #212427;
    opacity: 0.8;
}

.sreview_wrapper .sreview-items .sreview-item .rating {

}

.sreview_wrapper .sreview-items .sreview-item .rating svg {
    width: 16px;
    height: 16px;
}

.sreview_wrapper .sreview-items .sreview-item .review-desc {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
}

/* reviews page */

#content .reviews_head-title {
    font-family: "Comfortaa", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: #212427;
    margin: 24px 0 24px 0;
}

#content .reviews_head-desc {
    margin-bottom: 36px;
    font-size: 16px;
}

#form-review {
    font-family: "Roboto", sans-serif;
    color: #212427;
    padding-bottom: 60px;
}

#form-review #review {
    display: flex;
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
}

/*#form-review .alert {*/
/*    position: fixed;*/
/*    padding: 0.75rem 1.25rem;*/
/*    margin-bottom: 1rem;*/
/*    border: 1px solid transparent;*/
/*    border-radius: 0.25rem;*/
/*    right: 0;*/
/*    left: auto;*/
/*    max-width: 540px;*/
/*}*/

/*#form-review .alert-success {*/
/*    color: #155724;*/
/*    background-color: #d4edda;*/
/*    border-color: #c3e6cb;*/
/*}*/

#form-review #review .review-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#form-review #review .review-pagination .text-right {
    display: none;
}

#form-review #review .review-pagination .pagination {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #2D2D2D;
}

#form-review #review .review-pagination .pagination li {
    list-style: none;
}
#form-review #review .review-pagination .pagination li a {
    background: white;
    /*border: 1px solid #009999;*/
    border: none !important;
    color: #009999;
}
#form-review #review .review-pagination .pagination li a:hover {
    transform: none;
    background: #009999;
    color: white;
}
#form-review #review .review-pagination .pagination li.active span {
    background: #009999;
    border: 1px solid #009999;
    color: white;
}

#form-review #review .table {
    max-width: calc((100% - 24px) / 3);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    padding-top: 16px;
}

#form-review #review .table .text-right {
    text-align: right;
}

#form-review #review .review-pagination {
    flex-basis: 100%;
    margin: 16px 0;
}

#form-review #review .table tbody tr td {
    border: none
}

#form-review #review .table p {
    margin-bottom: 16px;
}

#form-review #review .table svg {
    width: 16px;
    height: 16px;
}

#form-review .form-title {
    margin: 24px 0;
}

#form-review .form-group {

}

#form-review .form-group .form-group_wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    max-width: 100%;
}

#form-review .form-group .form-group_wrapper-radio {
    margin: 32px 0 32px;
}

#form-review .form-group .form-group_wrapper-radio input[type="radio"] {
    height: 24px;
    width: 24px;
    accent-color: #009999;
}

#form-review .form-group .form-group_wrapper .form-control {
    background-color: whitesmoke;
    text-overflow: ellipsis;
    height: auto;
    /*padding: 0 1px 0;*/
    border-radius: 4px;
    resize: none;
    margin-top: 5px;
    border: 1px solid transparent;
    padding: 12px;
}

#form-review fieldset {
    border: none;
}

#form-review .baner-btn {
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.15);
    padding: 16px 40px;
}

#form-review .baner-btn:hover {
    padding: 16px 40px;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-card {
    /*flex: 0 0 calc(25%);*/
    max-width: calc(20%);
    text-align: center;
    font-family: "Roboto", sans-serif;
    display: flex;
    padding: 20px;
    /*border: 1px solid rgb(244, 244, 244);*/
    transition: all .2s linear;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    user-select: none;
}

.partner-card:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.partner-card__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.partners .swiper-pagination {
    bottom: 0;
}

.partner-card__wrapper img {
    max-width: 100%;
    max-height: 100%;
}

/*@media (hover: hover) {*/
/*    .partner-card:hover {*/
/*        transform: scale(1.05);*/
/*        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);*/
/*    }*/
/*}*/

.product-tag {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: var(--tag-bg, #F87171);
    color: #fff;
    display: block;
    padding: 5px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    border-radius: 10px 0 10px 0;
}

.catalog .product {
    position: relative;
    z-index: 1;
}

.yandex__link {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.yandex__link:hover {
    text-decoration: none;
}

/* new filter */
.sidebar input[type=checkbox] + label.new-mfilter {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
}

.new-mfilter .mfilter-tb-as-td.text-label {
    padding: 0 0 0 10px;
    margin: 0;
    line-height: 1;
}

.new-mfilter__wrapper {
    width: auto;
    height: auto;
}

.sidebar input[type=checkbox] + label.new-mfilter:before {
    display: none;
}

.sidebar input[type=checkbox] + label.new-mfilter .mfilter-tb-as-td-icon {
    display: flex;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 2px;
    flex: none;
    transition: all .2s linear;
    margin-left: 0;
}

.sidebar input[type=checkbox]:checked + label.new-mfilter .mfilter-tb-as-td-icon {
    background: #1a73e8;
    border-color: #1a73e8;
}

.sidebar input[type=checkbox]:checked + label.new-mfilter .mfilter-tb-as-td-icon svg {
    transform: scale(1);
}

.sidebar input[type=checkbox] + label.new-mfilter .mfilter-tb-as-td-icon svg {
    transform: scale(0);
    transition: inherit;
}

.comagic-c-consultant-label, .comagic-c-sitephone-label {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    left: 10px !important;
    top: unset !important;
}

.comagic-c-consultant-label {
    bottom: 70px !important;
}

.comagic-c-sitephone-label {
    bottom: 10px !important;
}

/* Compare page */
.compare-table.table {
    color: #212427;
}

.compare-table.table tbody:nth-of-type(1) :nth-child(1) :not(:first-child) {
    padding: 32px 0 8px;
    font-family: "Comfortaa", sans-serif;
    font-size: 1.25rem;
    line-height: normal;
    text-align: center;
    font-weight: 700;
    /*color: #212427 !important;*/
}

.compare-table.table tbody:nth-of-type(1) :nth-child(1) :not(:first-child) a {
    color: #212427;
}

.compare-table.table img {
    max-width: 100%;
}

.compare-table.table thead td {
    color: #fff;
    padding: 10px;
}

.compare-table.table tbody td .btn {
    width: 100%;
}

.compare-table.table tbody td .btn:last-child {
    margin-top: 10px;
}

.compare-table.table tbody tr td {
    border-right: 1px solid rgba(45, 45, 45, 0.2);
    text-align: left;
}


.alert {
    position: fixed;
    right: 20px;
    top: 130px;
    z-index: 195949795;
    padding: 10px 20px;
    border-radius: 5px;
    background: #ECFDF5;
    color: #059669;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    animation: fade-right .5s ease-in-out;
    max-width: calc(100% - 40px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.alert-danger {
    color: white;
    background-color: #eb2336;
}

.alert.fade-out {
    transition: all .4s ease-in-out;
    opacity: 0;
}

.alert a {
    color: inherit;
}

.alert a:hover {
    text-decoration: none;
}

@keyframes fade-right {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert .close {
    border: 0;
    outline: none;
    font-size: 24px;
    line-height: 1;
    background: transparent;
    color: inherit;
    border-radius: 5px;
    width: 35px;
    height: 35px;
}

.alert .close span {
    display: block;
    transition: all .4s ease-in-out;
}

.alert .close span:hover {
    transform: scale(1.05);
}

#promseptik-page {
    font-size: 20px;
}

.promseptik-hero {
    position: relative;
    z-index: 1;
    margin: 30px 0 130px;
}

.promseptik-hero__gallery {
    padding: 0;
    margin: 0;
    z-index: -1;
    position: relative;
    flex: 0 0 40%;
    max-width: 40%;
}

.promseptik-hero__wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.promseptik-hero__text {
    align-self: center;
    padding-top: 48px;
}

.promseptik-hero__btn {
    margin: 50px 0;
    border: 0;
}

.promseptik-hero__title {
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    max-width: 980px;
}

.promseptik-hero-pagination {
    position: relative;
    width: 9px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promseptik-hero-pagination span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    transition: all .4s ease;
    opacity: 1;
}

.promseptik-hero-pagination span:hover, .promseptik-hero-pagination span.swiper-pagination-bullet-active {
    background: #fff;
}

.promseptik-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: "Comfortaa", sans-serif;
}

.promseptik-hero__desc {
    max-width: 420px;
}

.foto-galery-descr-title {
    font-weight: 900;
    max-width: 445px;
    font-size: 26px;
    margin-bottom: 1em;
}

.foto-galery-info__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-bottom: 32px;
}

.foto-galery-info__value {
    font-size: 32px;
    font-weight: 900;
}

.foto-galery-info__label {
    font-size: 20px;
}

.foto-galery-desc {
    font-size: 20px;
}

.photo-gallery .foto-galery-wrap {
    flex-direction: row !important;
}

.photo-gallery .slide.active {
    flex: 2;
}

.photo-gallery .foto-galery-descr {
    max-width: 50%;
    text-align: left;
}

.photo-gallery .photo-gallery__wrapper {
    position: relative;
}

.multi-column {
    padding-top: 120px;
}

.multi-column__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.multi-column__item {
    padding: 20px 30px;
    background: rgba(235, 235, 235, 1);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.multi-column__desc {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% - 8px);
    width: 100%;
    background: inherit;
    padding: inherit;
    padding-top: 0;
    border-radius: 0 0 8px 8px;
}

.multi-column__icon {
    margin-bottom: 24px;
}

.scheme-dark {
    color: #fff;
}

.scheme-dark .btn {
    background: rgba(235, 235, 235, 1);
    color: rgba(0, 0, 0, 1);

}

.scheme-dark .btn:hover {
    background: rgba(0, 153, 153, 1);
    color: rgba(235, 235, 235, 1);
    border-color: rgba(235, 235, 235, 1);
}

.rte ul:not(:last-child),
.rte p:not(:last-child) {
    margin-bottom: 1em;
}

.rte ul {
    padding-left: 20px;
}

.rte ul li:not(:last-child) {
    margin-bottom: 0.3em;
}

.section-header {
    margin-bottom: 50px;
    max-width: 1100px;
}

.section-header.section-header-center {
    text-align: center;
    margin: 0 auto 64px;
}

.section-header .btn {
    margin-top: 30px;
}

.about-blocks {
    margin-bottom: 50px;
}

.about-blocks__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 90px;
}

.about-blocks__item {
    display: flex;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.about-blocks__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-blocks__img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.about-blocks__item:after {
    content: '';
    display: block;
    padding-bottom: 55%;
}

.about-blocks__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    align-self: flex-end;
    max-width: 375px;
}

.about-blocks__item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #000000 97%);
}

.about-blocks__text, .about-blocks__item:before {
    /* transform: translateY(calc(100% + 20px)); */
    transition: all .4s ease-in-out;
}

.about-blocks__item:hover .about-blocks__text, .about-blocks__item:hover:before {
    transform: translateY(0);
}

.about-blocks__footer {
    text-align: center;
    margin-top: 50px;
}

.all-products {
    height: 100%;
    border: 1px solid rgb(244, 244, 244);
    min-width: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.all-products-img {
    display: block;
    position: relative;
}

.all-products-img:after {
    content: '';
    display: block;
    padding-bottom: 63%;
}

.all-products-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: bottom center;
}

.all-products-slide {
    margin: 20px 20px 0 0;
}

.all-products .card-descr {
    margin-bottom: auto;
}

.solutions__wrapper {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1.2fr;
    gap: 26px;
}

.solutions {
    background: rgba(27, 190, 190, 1);
    padding: 46px 0;
}

.solutions__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 150px;
}

.solutions__list > li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solutions__list-icon {
    min-width: 75px;
    text-align: center;
}

.solutions__sticky {
    position: sticky;
    top: 130px;
}

.product-list {
    padding-top: 110px;
}

.product-list__wrapper {
    padding: 0;
    margin: 0;
    position: relative;
}

.product-list .catalog .product {
    max-width: 100%;
    height: 100%;
}

.product-list .swiper-slide {
    height: auto;
}

.product-list .swiper {
    padding: 0;
    margin: 0;
}
/* SEO posts */

.seo-page {

}
/* how we work section */
.seo-page .how-we-work {

}

.seo-page .how-we-work .items_wrapper {
    margin: 40px 0 82px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.seo-page .how-we-work .items_wrapper > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px
}
.seo-page .how-we-work .items_wrapper > div p span {
    font-weight: 700;
    color: #009999;
}

.seo-page .how-we-work .items_wrapper > div p a {
    text-decoration: none;
}

/* why we section */

.seo-page .why-we {

}

.seo-page .why-we .items_wrapper {
    margin: 40px 0 82px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.seo-page .why-we .items_wrapper > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 42px;
    border-radius: 16px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #009999;
    color: white;
    font-weight: 900;
    text-align: center;
}

.seo_post_container {

}
.seo_post_container .title__indent-top {
    margin: 20px 0 40px;
}
.seo_post_container .post_descr h2 {
    font-size: 18px;
}

.seo_post_img__wrapper {
    position: absolute;
    top: 110px;
    right: 0;
}

.seo_post_img {
    /*position: absolute;*/
    /*top: 110px;*/
    /*right: 0;*/
    max-width: 100%;
    height: auto;
    /*filter: opacity(0.15);*/
}
.seo_post_img__wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0; top: 0;
    background: linear-gradient(90deg, #FFF 10%, rgba(255, 255, 255, 0) 100%);

}

.seo_post_container .post_descr.post_descr-head {
    box-sizing: inherit;
    width: 50%;
    margin-bottom: 44px;
}
.seo_post_container .post_descr a {
    text-decoration: none;
    font-weight: 500;
    color: #009999;
}

.seo_post_container-slider {
    position: relative;
}

.seo_post_container-slider .mySwiper99 {
    padding-top: 0;
    padding-bottom: 0;
}

.seo_post_container .swiper,
.seo_post_container .swiper-wrapper {
    height: unset;
}

.seo_post_container-slider .swiper-button-prev svg, .seo_post_container-slider .swiper-button-next svg {
    fill: #009999;
    opacity: 1;
}

.seo_post_container-slider .swiper-button-prev.swiper-button-disabled svg, .seo_post_container-slider .swiper-button-next.swiper-button-disabled svg {
    opacity: 0.5;
}

.section-button {
    text-align: center;
    margin-top: 80px;
}

.button-next, .button-prev {
    top: 50%;
}

.button-next.swiper-button-disabled, .button-prev.swiper-button-disabled {
    opacity: 0.5 !important;
}

.button-next {
    right: 0;
    transform: translate(110%, -50%);
}

.button-prev {
    left: 0;
    transform: translate(-110%, -50%);
}

.invite {
    background: rgba(0, 153, 153, 1);
    padding: 50px 0 0;
    margin-top: 80px;
}

.invite__list {
    list-style: none;
}

.invite__list > li {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 24px;
}

.invite__wrapper, .invite .section-header__desc {
    max-width: 545px;
}

.invite .section-header__title {
    max-width: 830px;
}

.invite__img {
    position: absolute;
    bottom: 0;
    left: calc(100% + 100px);
    z-index: -1;
    max-width: 560px;
    display: flex;
    align-items: flex-end;
}

.invite__wrapper {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.invite .section-header {
    position: relative;
    z-index: 2;
}

.invite__img img {
    object-fit: contain;
}

.all-products-info {
    display: flex;
    gap: 5px;
}


.all-products-info span {
    font-size: 12px;
    max-width: 120px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 8px 17px;
    border: 1px solid rgba(235, 235, 235, 1);
    border-radius: 10px;
    cursor: pointer;
}

.all-products-info span.active {
    background-color: rgb(240, 247, 255);
    border: 1px solid rgb(133, 173, 219);
}

.all-products-desc {
    padding-bottom: 10px;
    margin-bottom: auto;
}

.all-products .catalog-textblock {
    margin: 0;
    flex: 1 1 auto;
    gap: 0;
}

.all-products-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #212427;
    margin-top: 22px;
}

.icon-with-text {
    padding: 100px 0;
    margin-top: 100px;
}

.icon-with-text.scheme-dark {
    background: rgba(0, 153, 153, 1);
}

.icon-with-text__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    font-size: 20px;
}

.icon-with-text__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    max-width: 590px;
}

.icon-with-text__list li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-with-text__wrapper .rte span {
    font-weight: 900;
}

.icon-with-text__box {
    display: grid;
    grid-template-columns: 2.6fr 1fr;
}

.icon-with-text__img img {
    width: 130%;
}

.icon-with-text__wrapper > .rte {
    max-width: 590px;
}

.icon-with-text__img img:first-child {
    transform: rotate(12.5deg);
}

.icon-with-text__img .show-in-hover {
    position: absolute;
    right: -60px;
    top: 50%;
    width: 180%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    opacity: 0;
}

.icon-with-text__img {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-with-text__img:hover .show-in-hover {
    opacity: 1;
}

.icon-with-text__img .icon-zoom {
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease-in-out;
    opacity: 1;
    display: flex;
    align-items: center;
}

.promseptik-map img {
    max-width: 100%;
}

.icon-with-text__img:hover .icon-zoom {
    opacity: 0;
}

.reset-spacing {
    margin-top: 0;
    padding-top: 0;
}

.promseptik-banner__wrapper {
    padding: 50px 80px;
    background: #EBEBEB;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.promseptik-banner__img {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-70px, -50%);
}

.promseptik-banner {
    min-height: 950px;
    display: flex;
    align-items: center;
}

.promseptik-map {
    position: relative;
    margin-top: 160px;
}

.promseptik-map__info.scheme-dark {
    background: rgba(0, 153, 153, 1);
}

.promseptik-map__info {
    padding: 60px 80px;
    max-width: 800px;
    position: absolute;
    left: 0;
    top: -80px;
    border-radius: 0 10px 10px 0;
}

.promseptik-map__info .promseptik-title {
    text-align: center;
}

.promseptik-map__info .rte ul a {
    color: inherit;
    text-decoration: none;
}

.modal-discount-mask,
.modal-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.modal-discount-mask.active,
.modal-mask.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#engineer-form .amoforms_iframe {
    position: static !important;
}

#engineer-form {
    display: flex;
    align-items: center;
    height: auto;
}

/* quiz */

.quiz {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #343434;
    transition: all .3s linear;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#quiz:target,
.quiz.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.quiz-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.quiz__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: top;
    background: #fff;
}

.quiz-wrapper {
    background: #EAEAEA;
    border-radius: 12px;
    padding: 35px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    gap: 64px;
}

.quiz-wrapper__transparent {
    background: transparent;
}

.quiz-wrapper:has([data-id="quiz-tab-last"].active) {
    max-width: 600px;
}

.quiz-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.quiz-container {
    max-width: 1190px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.quiz-form {
    display: block;
    width: 100%;
}

.quiz-steps {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 30px;
    width: 100%;
}

.quiz-header {
    position: relative;
    z-index: 1;
}

.quiz-prev {
    padding: 10px 20px;
    min-height: 60px;
}

.quiz-prev, .quiz-next {
    transition: all .4s linear;
}

.quiz-steps li {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #EAEAEA;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.quiz-steps li.disabled {
    --bg-alpha: 0.6;
    pointer-events: none;
}

.quiz-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.quiz-item_title {
    font-size: 32px;
    font-weight: 700;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 1em;
}

.quiz-item_form {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    max-width: 500px;
}

.quiz-item {
    display: none;
    text-align: center;
    width: 100%;
}

.quiz-body {
    max-height: calc(80vh - 200px);
    overflow: auto;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-input {
    background: transparent;
    border: 0;
    border-bottom: 2px solid;
    padding: 10px;
    font-size: 20px;
    width: 100%;
    outline: none;
}

.quiz-steps li.active, .quiz-steps li:hover {
    transform: scale(1.15);
    color: #009999;
}

.quiz-item_label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quiz-item.active .quiz-item_label,
.quiz-item.active .quiz-item_title {
    transform: translateX(0);
}

.quiz-item_label,
.quiz-item_title {
    transform: translateX(60px);
    transition: all .3s ease;
}

.radio-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #009999;
}

.radio-icon:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #009999;
    transform: scale(0);
    transition: all .3s ease-in-out;
}

.quiz-item_label input[type="radio"]:checked + .radio-icon:after {
    transform: scale(1);
}

.radio-label {
    font-size: 20px;
    text-align: left;
}

.quiz-item_label input[type="radio"] {
    display: none;
}

.btn.hidden {
    display: none;
}

.btn.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.quiz-input__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 450px;
    margin: 0 auto;
}

.quiz-footer.hide, .quiz-header.hide {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.quiz-header_progress {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    background: #44c9c9;
}

.quiz-header_progress:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc((100% / var(--steps-count)) * var(--progress, 0));
    height: 100%;
    transition: all .3s linear;
    background: rgb(0, 153, 153);
}

.quiz-steps li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 153, 153, var(--bg-alpha, 1));
    z-index: -1;
    border: 1px solid rgba(0, 153, 153, var(--bg-alpha, 1));
}

.quiz-steps li.active:before, .quiz-steps li:hover:before {
    background: #fff;
    color: #009999;
}

/* quiz */
.text-wrapper .subtitle.center {
    margin: 0 auto 1em;
    max-width: 100%;
}

.text-wrapper {
    width: 100%;
}


/* header menu*/
.mega-menu {
    display: none;
}

.header__menu-list-item:not(.mega-menu-link) {
    position: relative;
}

.mega-menu-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mega-menu-list li {
    flex: 0 0 calc(20% - 1.6rem);
    max-width: calc(20% - 1.6rem);
}

.mega-menu-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #009999;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-menu-image {
    display: none;
}

.has-mega-menu {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    padding: .5rem 0;
}

.header__menu-list-item.mega-menu-link {
    padding: 0;
}

.has-mega-menu > span {
    display: block;
    line-height: 0.5;
}

.has-mega-menu svg {
    transition: all .3s linear;
}

@keyframes showMenu {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.cart-button__wrapper {
    position: relative;
    width: 100%;
}

.product-card__buttons {
    display: flex;
    gap: 8px;
}

.compare-empty {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.modal-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgb(0, 153, 153);
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.modal-label {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.modal-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-text {
    text-align: center;
    margin: 20px auto 0;
    max-width: 400px;
    font-size: 12px;
}

.modal-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-family: "Comfortaa", sans-serif;
    color: #212427;
}
#main-form-modal .modal-title {
    font-size: 28px;
}
#main-form-modal {
    display: flex;
    align-items: center;
    height: auto;
    padding: 32px 44px;
}

.modal-text a {
    color: inherit;
}

.modal-massage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-family: 'Comfortaa', sans-serif;
    padding: 20px;
}

#main-form-modal .btn {
    margin: 16px 0;
}

.video-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100vh;
    overflow: auto;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
    pointer-events: none;
}

.video-popup__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
}

.video-popup__content {
    position: relative;
    width: 100%;
}

.video-popup__content:after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.video-popup__close {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    bottom: 100%;
    cursor: pointer;
}

.video-popup__wrapper {
    width: 100%;
    pointer-events: none;
}

.video-popup__wrapper .container {
    position: relative;
    pointer-events: auto;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.video-popup__content iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/*thank-you*/
.play-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: #fff;
    transition: all .3s ease;
    border: 0;
}

.play-video:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.thank-you {
    text-align: center;
    padding: 60px 0 150px;
}

.thank-you__title {
    font-size: 48px;
    margin: 0.5em 0;
}

.thank-you__videos {
    padding-bottom: 30px;
    margin-top: 20px;
}

.thank-you__desc {
    font-size: 20px;
}

.thank-you__videos .swiper-slide {
    transform: scale(0.8);
    transition: all .3s ease;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

@media (hover: hover) {
    .thank-you__videos .swiper-slide:not(.swiper-slide-active):hover {
        transform: scale(0.9);
    }
}

.thank-you__videos .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.thank-you__social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    list-style: none;
}

.thank-you__social-text {
    padding: 20px;
    background: #fff;
    font-size: 18px;
    transform: translateY(-50%);
    display: inline-block;
}

.thank-you__social {
    max-width: 865px;
    margin: 0 auto;
    border: 2px solid rgba(136, 140, 149, 1);
    padding: 0 20px 20px;
    border-radius: 8px;
}

.thank-you__social-list a {
    display: flex;
}

.thank-you__videos:not(.swiper-initialized) .swiper-wrapper > * {
    flex: 0 0 33%;
    max-width: 33%;
}

@media (hover: hover) {
    .thank-you__social-list a {
        transition: all .3s ease;
    }

    .thank-you__social-list a:hover {
        transform: scale(1.1);
    }
}

/*thank-you*/

/*quiz hero*/
.quiz-hero {
    position: relative;
    z-index: 1;
}

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

.quiz-hero__wrapper {
    min-height: calc(100vh - 70px);
    max-width: 627px;
    padding: 30px 0;
}

.quiz-hero__title {
    font-size: 35px;
    font-family: 'Comfortaa', sans-serif;
    margin-bottom: 1em;
}

.quiz-hero__desc {
    font-size: 20px;
    margin-bottom: 1em;
}

.quiz-hero__desc strong {
    color: rgb(0, 153, 153);
}

.quiz-hero__list {
    margin-bottom: 32px;
}

.quiz-main {
    padding-top: 0;
}

.quiz-item_desc {
    margin-bottom: 1em;
}

.header-quiz .header__contacts-phone-number {
    color: inherit;
}

.header-quiz a {
    color: inherit;
    margin: 0;
}

.header-quiz__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.header-quiz .block__right-side {
    display: flex;
    gap: 16px;
}

.header-quiz__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-quiz {
    padding: 10px 0;
}

/*quiz hero*/
.category-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.category-banner__img-2 {
    position: absolute;
    right: 0;
    bottom: -5px;
    /* transform: rotate(25deg); */
    max-width: 383px;
    z-index: -1;
    display: flex;
}

.category-banner__img img {
    transform: translate(-40px, 0);
}

.category-banner__body .btn {
    margin-top: 30px;
    padding: 16px 40px;
}

.category-banner__img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 410px;
    /* height: 100%; */
    display: flex;
    z-index: -1;
    overflow: hidden;
}

.category-banner .subtitle {
    font-size: 32px;
    line-height: 1.2;
}

.category-banner__body {
    max-width: 700px;
}

.category-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0 16px;
}

.category-brands a:nth-child(n) {
    padding: 8px 16px;
    /*border: 1px solid #009999;*/
    border-radius: 999px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.25s cubic-bezier(.25, .8, .25, 1);
    cursor: pointer;
    user-select: none;
    color: #009999;
    font-weight: 400;
    text-decoration: none;
}

.category-brands a:nth-child(n):hover {
    transform: translate(0, -1px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12), 0 1px 5px rgba(0, 0, 0, 0.24);
}

@media screen and (max-width: 768px) {
    .category-banner .subtitle {
        font-size: 20px;
    }
}

/* reviews */

.video-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100vh;
    overflow: auto;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
    pointer-events: none;
}

.video-popup__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
}

.video-popup__content {
    position: relative;
    width: 100%;
}

.video-popup__content:after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.video-popup__close {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    bottom: 100%;
    cursor: pointer;
}

.video-popup__wrapper {
    width: 100%;
    pointer-events: none;
}

.video-popup__wrapper .container {
    position: relative;
    pointer-events: auto;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.video-popup__content iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.reviews {
    padding-top: 120px;
}

.reviews__author img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    flex: none;
}

.reviews__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews__author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    font-weight: 900;
}

.reviews__image {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.play-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: #fff;
    transition: all .3s ease;
}

.play-video:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.reviews__slide {
    background: #fff;
    box-shadow: 0px 3.05px 3.05px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    width: 100%;
}

.reviews__slider .swiper-slide {
    padding: 5px;
    height: auto;
    background: transparent;
}

.reviews__text {
    text-align: left;
    padding: 20px;
    border: 3px solid #009999;
    border-radius: 12px;
    position: relative;
}

.reviews__slide-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
}

.reviews__image:after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

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

.reviews__text:before,
.reviews__text:after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 46px;
    height: 46px;
    background-size: calc(100% - 10px);
    background-position: center;
    background-repeat: no-repeat;
}

.reviews__text:before {
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background-image: url('../img/icon-text-left.svg');
}

.reviews__text:after {
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
    background-image: url('../img/icon-text-right.svg');
}

.reviews__wrapper {
    position: relative;
}

.reviews__navigation .button-prev, .reviews__navigation .button-next {
    position: absolute;
    transform: unset;
    width: 60px;
    height: 60px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 0;
}

.reviews__navigation .button-prev {
    left: unset;
    right: 100%;
}

.reviews__navigation .button-next {
    right: unset;
    left: 100%;
}

.reviews__navigation .swiper-navigation {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reviews__navigation .swiper-pagination {
    position: static;
    margin: 20px 0 50px;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    align-items: flex-end;
}

.reviews__navigation .button-prev svg, .reviews__navigation .button-next svg {
    width: 100%;
    height: 100%;
}

.reviews__navigation .swiper-pagination .swiper-pagination-bullet {
    /* width: 3px; */
    /* height: 30px; */
    transition: all .3s linear;
    border-radius: 3px;
}

.reviews__navigation .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    /* height: 40px; */
}

.reviews__slider .swiper-slide {
    transform: scale(0.8);
    transition: all .3s ease;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.reviews__slider .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.reviews__slide-video {
    display: flex;
    align-items: center;
}

.reviews__navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reviews__list .reviews__slide {
    flex: 0 0 calc(33.33% - 12px);
    max-width: calc(33.33% - 12px);
    transition: all .3s ease;
}

.reviews__list .reviews__slide-video {
    box-shadow: none;
}

@media (hover: hover) {
    .reviews__list .reviews__slide-video:hover {
        transform: scale(1.05);
    }
}

/* reviews */
.modal__discount-inp {
    border-radius: 0 !important;
    border-bottom: 1px solid rgb(0, 153, 153) !important;;
}

textarea.modal__discount-inp {
    min-height: 100px;
    resize: none;
}

.set-rating {
    display: flex;
    align-items: center;
}

.rating-star {
    display: flex;
    cursor: pointer;
}

.rating-star svg {
    fill: #c7b9b9;
    transition: all .15s ease;
}

.rating-star.hover svg,
.rating-star.selected svg {
    fill: #dfdf0c;
}

#form-review .form-group .form-group_wrapper textarea.form-control {
    min-height: 150px;
}

#form-review .form-group .form-group_wrapper .form-control:focus-visible {
    outline: none;
    border: 1px solid;
}

.add-review .form-title {
    text-align: center;
}

.add-review .buttons {
    text-align: center;
    margin-top: 16px;
}

.add-review {
    position: relative;
    z-index: 1;
}

.add-review__wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.form-group_rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
}

.alert button {
    background: transparent;
    border: 0;
    display: flex;
    color: inherit;
}

.alert button svg {
    width: 24px;
    height: 24px;
}

.pagination li a, .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid;
    border-radius: 4px;
    text-decoration: none;
    transition: all .3s ease;
}

.foto-galery-descr-subtitle a,
.foto-galery-descr-text a {
    color: rgb(0, 153, 153);
}

@media (hover: hover) {
    .pagination li a:hover {
        transform: scale(1.1);
    }
}

/* news-search */
.news-search {
    padding-top: 15px;
}

.news-search__label {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.news-search__placeholder {
    font-size: 18px;
    font-family: 'Comfortaa', sans-serif;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    transition: all .15s linear;
}

.news-search__input {
    width: 100%;
    padding: 20px 12px;
    background: whitesmoke;
    border: 0;
    border-radius: 4px;
}

.news-search__input:focus-within {
    outline: none;
    border: 1px solid;
}

.news-search__input:not(:placeholder-shown) + .news-search__placeholder,
.news-search__input:focus-within + .news-search__placeholder {
    top: 0;
    transform: translateY(calc(-100% - 5px));
    left: 0;
    font-size: 16px;
}

.loading-circle {
    display: flex;
    position: absolute;
    right: 12px;
    top: 50%;
    translate: 0 -50%;
    animation: loading 1s linear infinite;
}

.search-empty {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 30px 0;
}

.news_page:empty {
    padding: 0;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* /installation page */

.installation-page {
    line-height: 1.45;
    color: #2D2D2D;
}
.installation-page section {
    margin-bottom: 80px;
}
.installation-page .head-section {
    background: url("./../img/installation-page/head-bg.webp") no-repeat top right;
}
.installation-page .head-section p {
    width: 45vw;
}
.installation-page .page-title {
    border-top: 1px solid #D9D9D9;
    padding: 8px 0 16px;
    margin-top: 8px;
    margin-bottom: 32px;
    width: fit-content;
}

.installation-page .title-sub, .seo-page .title-sub {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.installation-page .btn {
    margin-top: 32px;
}

.installation-page table, .seo-page table {
    width: 100%;
    table-layout: auto;
    overflow: clip;
    border: none;
    border-spacing: initial;
    font-size: 18px;
    margin-bottom: 48px;
}

.installation-page table thead, .seo-page table thead {
    background: #00d1c3;
}
.installation-page table thead tr th, .seo-page table thead tr th {
    padding: 10px 15px;
    border-left: 1px solid #EBEBEB;
    color: #FFFFFF;
    line-height: 1.3;
    font-weight: 900;
}
.installation-page table thead tr th:first-child, .seo-page table thead tr th:first-child {
    border-left: none;
    width: 55%;
}
.installation-page table tbody tr td, .seo-page table tbody tr td {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #EBEBEB;
    border-right: none;
    padding: 12px 16px;
    font-size: 16px;
    /*vertical-align: top;*/
    text-align: center;
}
.installation-page table tbody td:first-child, .seo-page table tbody td:first-child {
    border-left: none;
    text-align: start;
    width: 55%;
}
.installation-page table tbody tr:nth-child(odd), .seo-page table tbody tr:nth-child(odd) {
    background: #F9F9F9;
}

.installation-page table.table-tanks img, .seo-page table.table-tanks img {
    width: 54px;
    height: auto;
    max-height: 100%;
}
.installation-page table.table-tanks tbody tr td a, .seo-page table.table-tanks tbody tr td a {
    color: #009999;
    text-decoration: underline;
    font-weight: 500;
}
.installation-page table.table-tanks thead tr th:first-child, .seo-page table.table-tanks thead tr th:first-child {
    width: 25%;
}
.installation-page table.table-tanks tbody td:first-child, .seo-page table.table-tanks tbody td:first-child {
    width: 25%;
    padding: 4px 16px;
    text-align: center;
}

.installation-page table.table-price {

}

.installation-page ul {
    padding-left: 20px;
    margin: 32px 0
}
.installation-page ul li {
    margin-bottom: 4px;
}

.installation-page .setup-section {
    background: url("./../img/installation-page/setup-section/bg.webp") no-repeat top right;
    background-size: cover;
    padding: 32px 0;
}
.installation-page .setup-section .btn {
    margin: 0;
}

.installation-page .advantages-section .cards-wrapper {
    /*margin-left: 5%;*/
    /*margin-right: 5%;*/
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 40px 60px;
    margin: 32px 5% 64px 5%
}
.installation-page .advantages-section .cards-wrapper .card {
    width: 100%;
    background: #009999;
    border-radius: 18px;
    padding: 24px 48px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

}
.installation-page .advantages-section .cards-wrapper .card img {
    margin-bottom: 16px;
}
.installation-page .advantages-section .cards-wrapper .card .card-title {
    font-weight: 900;
}
.installation-page .advantages-section .cards-wrapper .card ul {
    text-align: start;
    color: #FFFFFF;
}
.installation-page .advantages-section .cards-wrapper .card ul li {
    margin-bottom: 4px;
}

/* About page */

.about-page {

}

.about-page .bread-band span {
    color: white !important;
    opacity: 1;
}
.about-page .head-section {
    background: url("./../img/about-page/head-bg.webp") no-repeat top center;
    background-size: cover;
    padding: 80px 0 120px 0;
}
.about-page .head-section {
    color: white;
    line-height: 1.5;
}

.about-page .head-section .head-wrapper {
    padding: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}
.about-page .head-section .page-title {
    border-top: 1px solid #FFFFFF;
    padding: 8px 0 16px;
    margin-top: 8px;
    width: fit-content;
    color: white;
    margin-bottom: 64px;
}

.about-page .head-section .title-sub {
    margin-bottom: 16px;
    font-weight: bold;
}

.about-page .head-section .btn-white {
    margin-top: 24px;
    color: #2D2D2D;
    border: none;
    background: #FFFFFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.about-page .head-section .toggle-wrapper {
    display: none;
}

.about-page .mission-section {
    background: url("./../img/about-page/mission-section/bg.webp") no-repeat top center;
    background-size: cover;
    /*padding: 180px 0 180px 0;*/
    color: white;
}

.about-page .title-section {
    font-size: 36px;
    font-family: "Comfortaa", sans-serif;
}

.about-page .mission-section .title-section {
    color: white;
    margin-bottom: 64px;
    padding-top: 185px;
}

.about-page .mission-section .descr {
    line-height: 1.5;
}

.about-page .mission-section .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.about-page .mission-section .row img {
    max-width: 100%;
    height: auto;
}

.about-page .history-section {
    padding: 72px 0 175px 0;
}

.about-page .history-section .wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.about-page .history-section .title-section {
    margin-bottom: 120px;
}

.about-page .history-section .wrapper .bg-image {
    max-width: 100%;
    height: auto;
}

.about-page .history-section .wrapper .item {
    position: absolute;
    border-radius: 999px;
    /*overflow: clip;*/
    box-shadow: 7px 18px 4px 0 rgba(0, 0, 0, 0.25);
    width: 8.45%;
}

.about-page .history-section .wrapper .item .circle {
    /*padding: 12px;*/
    cursor: pointer;
    background: white;
    color: #009999;
    font-size: clamp(24px, 2.85vw, 42px);
    font-family: "Comfortaa", sans-serif;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    -webkit-box-shadow: inset 0 -2px 0 2px #dedede;
    -moz-box-shadow: inset 0 -2px 0 2px #dedede;
    box-shadow: inset 0 -2px 0 2px #dedede;
    transition:
            scale 0.3s ease-in-out,
            transform 0.3s ease-in-out; /* Для плавного движения */
}
.about-page .history-section .wrapper .item .circle:hover {
    scale: 1.25;
}

.about-page .history-section .wrapper .item:nth-child(1) {
    left: 19.5%;
    top: 41.85%;
}

.about-page .history-section .wrapper .item:nth-child(2) {
    left: 28.9%;
    top: 4%;
}

.about-page .history-section .wrapper .item:nth-child(3) {
    left: 38.5%;
    top: 41.85%;
}

.about-page .history-section .wrapper .item:nth-child(4) {
    left: 47.9%;
    top: 4%;
}

.about-page .history-section .wrapper .item:nth-child(5) {
    left: 57.25%;
    top: 41.85%;
}

.about-page .history-section .wrapper .item:nth-child(6) {
    left: 66.7%;
    top: 4%;
}

.about-page .history-section .wrapper .item:nth-child(7) {
    left: 76.25%;
    top: 41.85%;
}

.about-page .history-section .wrapper .item .tooltip {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%); /* Корректируем центр */
    text-align: center; /* Центрируем текст внутри */
    width: auto;
    opacity: 0;
    transition:
            opacity 0.3s ease-in-out,
            transform 0.3s ease-in-out; /* Для плавного движения */
    pointer-events: none; /* Чтобы не мешал взаимодействию */
}

.about-page .history-section .wrapper .item .tooltip p:nth-child(1) {
    margin-bottom: 0.25rem;
    font-size: clamp(16px, 1vw, 20px);
    font-family: "Comfortaa", sans-serif;
    color: #009999;
    /*text-align: center;*/
    /*width: max-content;*/
    justify-self: center;
    align-self: center;
    display: block;
    width: max-content;        /* Заголовок на всю ширину */
    text-align: center; /* Текст заголовка по центру */
}

.about-page .history-section .wrapper .item .tooltip p:nth-child(2) {
    font-size: clamp(12px, 0.725vw, 14px);
    min-width: 225px;
}

.about-page .history-section .wrapper .item:hover .tooltip {
    opacity: 1;
}



.about-page .history-section .wrapper .features .item:nth-child(odd) .tooltip {
    top: 125%;
}

.about-page .history-section .wrapper .features .item:nth-child(even) .tooltip {
    top: -60%;
}

/*.about-page .history-section .wrapper .item .tooltip:nth-child(2) {*/
/*    left: 0;*/
/*    top: 50%;*/
/*}*/



.about-page .services-section {
    position: relative;
    background: #009999;
    color: white;
    padding: 64px 0 80px 0;
}

.about-page .services-section .container {
    position: relative;
    z-index: 1;
}

.about-page .title-section {
    color: #2D2D2D
}

.about-page .services-section .title-section {
    color: white;
    margin-bottom: 56px;
}

.about-page .services-section .cards-wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    z-index: 1;
}

.about-page .services-section .cards-wrapper .card {
    background: white;
    box-shadow: 4px 20px 20px 0 rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    color: #2D2D2D;
    padding: 18px 36px;
    text-align: center;
}

.about-page .services-section .cards-wrapper .card .card-title {
    font-size: 20px;
    font-family: "Comfortaa", sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
    color: #009999;
}

.about-page .services-section .bubble-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 20%;
    height: auto;
    max-width: 360px;
}

.about-page .services-section .bubble-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 20%;
    height: auto;
    max-width: 380px;
}

.about-page .advantages-section {
    position: relative;
    padding: 72px 0 150px 0;
    background: url("./../img/about-page/advantages-section/bg.webp") no-repeat top center;
    background-size: cover;
}

.about-page .advantages-section .title-section {
    margin-bottom: 72px;
}

.about-page .advantages-section .wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.about-page .advantages-section .wrapper > div {
    text-align: center;
    padding: 16px;
}

.about-page .advantages-section .wrapper img {
    margin-bottom: 32px;
}

.about-page .advantages-section .wrapper .card-title {
    font-size: 24px;
    font-family: "Comfortaa", sans-serif;
    margin-bottom: 4px;
    color: #009999;
}

.about-page .reviews-section {
    background: #009999;
    padding: 54px 0 100px 0;
    color: white;
}

.about-page .reviews-section .title-section {
    color: white;
    margin-bottom: 72px;
}

.about-page .reviews-section .swiper-button-next {

}

.about-page .container {
    position: relative;
}

.about-page .reviews-section .onas.swiper {
    margin-top: 24px;
    width: 95%;
    padding-bottom: 30px;
    height: 100%;
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide {
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-color: #EBEBEB;
    background-size: auto 100%;
    border-radius: 5px;
    height: auto !important;
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide:nth-child(odd) {
    background-image: url("./../img/about-page/reviews-section/card-bg-1.svg");
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide:nth-child(even) {
    background-image: url("./../img/about-page/reviews-section/card-bg-2.svg");
}



.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide .onas-card__wrapper  {
    padding: 20px;
    color: #2D2D2D;
    font-family: "Commissioner", sans-serif;
    height: 100% !important
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide .onas-card__wrapper .head-wrapper {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide .onas-card__wrapper .head-wrapper img.card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    overflow: clip;
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide .onas-card__wrapper .head-wrapper .card-title {

    margin-bottom: 4px;
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide .onas-card__wrapper .head-wrapper img.card-stars {
    width: 128px;
    height: auto;
}

.about-page .reviews-section .onas.swiper .swiper-wrapper .swiper-slide .onas-card__wrapper .comment {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-align: start;
}

.about-page .reviews-section .descr {
    text-align: center;
    font-family: "Commissioner", sans-serif;
    font-size: 24px;
}

.about-page .reviews-section .reviews-link {
    display: block;
    font-size: 20px;
    font-family: "Commissioner", sans-serif;
    color: #FFFFFF;
    text-align: center;
}

.about-page .reviews-section .swiper-button-prev,
.about-page .reviews-section .swiper-button-next {
    top: 65%;
}

.about-page .reviews-section .swiper-button-prev {
    left: -10px !important;
}
.about-page .reviews-section .swiper-button-next {
    right: -10px !important;
}

.about-page .reviews-section .swiper-pagination {
    bottom: 5px;
    display: none;
}

.about-page .reviews-section .swiper-pagination .swiper-pagination-bullet {
    background: white;
    opacity: 1;
}

.about-page .reviews-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2D2D2D;
}

.about-page .reviews-section .swiper-button-disabled {
    opacity: 0.5;
}

.about-page .partners-section {
    padding: 110px 0 165px 0;
}

.about-page .partners-section .title-section {
    margin-bottom: 72px;
}

.about-page .callback-section {
    padding: 40px 0 64px 0;
}

.about-page .callback-section {
    background: url("./../img/about-page/callback-section/bg.svg") no-repeat top center;
    background-size: cover;
}

.about-page .callback-section .title-section {
}

.about-page .callback-section .wrapper .title-section p:nth-child(1) {
    margin-bottom: 8px;
}

.about-page .callback-section .wrapper .title-section .descr {
    font-size: 28px;
    margin-bottom: 75px;
}

.about-page .callback-section .wrapper__body {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 64px
}

.about-page .callback-section .wrapper__body .wrapper__form {
    width: 50%;
}

.about-page .callback-section .wrapper__body .wrapper__form form {
    position: relative;
    padding: 20px 82px;
    border: 2px solid #00D1C3;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
    z-index: 1;
    background: #FFFFFF;
}

.about-page .callback-section .wrapper__body .wrapper__form form .form__title {
    font-size: 20px;
    font-weight: 600;
    font-family: "Commissioner", sans-serif;
    margin-bottom: 32px;
}

.about-page .callback-section .wrapper__body .wrapper__form form .modal-input {
    background: #EBEBEB;
    border-radius: 5px;
    padding: 20px;
    border: none
}

.about-page .callback-section .wrapper__body .wrapper__form form .btn {
    width: 100%;
}

.about-page .callback-section .wrapper__body .wrapper__form form .modal-input::placeholder {
    color: #93ABAB;
    font-size: 18px;
    font-family: "Commissioner", sans-serif;
    font-weight: 500;
}

.about-page .callback-section .wrapper__body .wrapper__form .wa-spoiler {
    display: block;
    position: relative;
    background: #00D1C3;
    padding: 36px 0;
    border-radius: 0 0 5px 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-family: "Commissioner", sans-serif;
    color: #FFFFFF;
    width: 95%;
    margin: 0 auto;
}

.about-page .callback-section .wrapper__body .wrapper__form .wa-spoiler img {
    position: absolute;
    right: 0;
    top: -30%;
    opacity: 30%;
}

.about-page .callback-section .wrapper__body .wrapper__side {
    position: relative;
}

.about-page .callback-section .wrapper__body .wrapper__side .side-manager {
    margin-top: -30%;
    max-width: 100%;
    height: auto;
}

.about-page .callback-section .wrapper__body .wrapper__side .tooltip {
    z-index: 2;
    position: absolute;
    left: -15%; top: 30%;
    background: #EBEBEB;
    border-radius: 5px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
    padding: 20px;
    font-family: "Commissioner", sans-serif;
    font-style: italic;
    text-align: center;
}
.about-page .callback-section .wrapper__body .wrapper__side .tooltip span {
    color: #009999;
}
.about-page .callback-section .wrapper__body .wrapper__side .desc {
    border-radius: 16px 0 0 16px;
    background: linear-gradient(90deg, #099 24.5%, #00D1C3 46%, #FFF 67%);
    color: white;
    padding: 12px 46px;
    width: 50vw;
    position: absolute;
    bottom: -5%;
    font-family: "Commissioner", sans-serif;
}

.about-page .callback-section .wrapper__body .wrapper__side .desc span {
    font-weight: 600;
}

.about-page .map-section .map-wrapper {
    width: 100%;
}

.about-page .map-section {
    padding: 40px 0 64px 0;
}

.about-page .map-section .map-wrapper iframe {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 540px;
}

.about-page .info {
    position: absolute;
    right: 60%; bottom: 0;
    width: 50vw;
    max-width: 40%;
    background: #EBEBEB;
    padding: 30px 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-end;
    margin-bottom: 20px;
    color: #2D2D2D;
}

.about-page .info .info-title {
    font-size: 32px;
    font-family: "Comfortaa", sans-serif;
    margin-bottom: 10px;
}

.about-page .info .info-desc {
    font-family: "Commissioner", sans-serif;
    font-size: 24px;
    margin-bottom: 32px;
}

.about-page .info .info-desc span {
    font-weight: 600;
}

.about-page .info .info-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-page .info .info-contacts .info-contacts__item {
    display: flex;
    align-items: center;
    gap: 16px;

}

.about-page .info .info-contacts .info-contacts__item a {
    text-decoration: none;
    color: #2D2D2D;
}

.about-page .info .info-contacts .info-contacts__item:nth-child(1) {
    font-size: 32px;
}

.about-page .info .info-contacts .info-contacts__item:nth-child(2) {
    font-size: 24px;
    font-weight: 600;
}

/* news-search */
@media screen and (min-width: 1200px) {
    .discount-btn {
        position: fixed;
        bottom: 110px;
        right: 0;
        z-index: 9;
        height: initial;
        background-color: rgb(0, 153, 153);
        color: #FFFFFF;
        padding: 16px 12px;
        border-right: none;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
        font-size: 18px;
        line-height: normal;
        border-radius: 3px 0 0 3px;
        border: 0;
    }

    .discount-btn span {
        display: none;
    }

    .mega-menu-link:hover .mega-menu {
        display: block !important;
        animation: showMenu 0.4s ease-in-out forwards;
    }

    .mega-menu-item:hover {
        /*border: 2px solid;*/
        /*border-radius: 12px;*/
        /*transform: scale(1.15, 1.15);*/
    }

    .mega-menu-image {
        transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .mega-menu-item:hover .mega-menu-image {
        transform: scale(0.975, 0.975);
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
        /*border: 2px solid #009999;*/
    }

    .mega-menu-item :nth-child(2) {
        padding-bottom: 4px;
        transition: 0.25s ease-out;
        /*transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);*/
    }

    .mega-menu-item:hover :nth-child(2) {
        transform: translateY(8px);
        /*border-bottom: 2px solid #009999;*/
    }

    .header__menu-list-item:hover .has-mega-menu:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 100%;
        height: 50px;
        width: 200%;
        transform: translateX(-50%);
    }

    .mega-menu-link:hover .has-mega-menu svg {
        transform: rotate(180deg);
    }

    .mega-menu-image {
        display: block;
        padding-bottom: 100%;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .mega-menu {
        position: absolute;
        left: 0;
        top: 100%;
        background-color: rgb(249, 249, 249);
        width: 100%;
        padding: 56px 0 96px;
        z-index: 11;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }

    .header__menu-list-item:not(.mega-menu-link):before, .has-mega-menu:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 4px;
        background-color: #009999;
        bottom: 0;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease;
    }

    .header__menu-list-item:not(.mega-menu-link):hover::before, .header__menu-list-item.mega-menu-link:hover .has-mega-menu:before {
        transform-origin: left;
        transform: scaleX(1);
    }

    .header__menu-list-item:hover {
        color: #009999;
    }

    .comagic-c-buttons {
        display: none !important;
    }
}

@media screen and (max-width: 1199px ) {
    .discount-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 96%;
        background: transparent;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px;
        color: rgb(0, 153, 153);
        padding: 0 24px;
        height: 36px;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 16px;
        border: 2px solid rgb(0, 153, 153);
        margin: 0 auto;
        border-radius: 3px;
    }

    .reviews__list .reviews__slide {
        flex: 0 0 calc(50% - 9px);
        max-width: calc(50% - 9px);
    }

    .video-bottom {
        padding: 0 20px;
    }

    .mySwiper .swiper-pagination {
        display: none;
    }

    .header__container .container {
        max-width: 95%;
    }

    .header {
        position: relative;
    }

    .has-mega-menu.active {
        color: #009999;
    }

    .has-mega-menu.active svg {
        transform: rotate(180deg);
    }

    .comagic-c-mobile.comagic-c-mobile--promo {
        --promo-image: url('https://pro100septik.ru/catalog/view/theme/prostoseptik/assets/img/uis-banner-img.png') !important;
        background-position: center;
        background-size: cover !important;
    }

    .comagic-c-mobile .comagic-c-mobile__btn-send {
        background-color: rgb(0, 153, 153);
        border: 2px solid rgb(0, 153, 153);
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 16px;
        color: rgb(255, 255, 255) !important;
        text-align: center;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        padding: 20px 0;
        text-decoration: none;
        border-radius: 5px;
        z-index: 1;
    }

    .comagic-c-buttons {
        left: 10px !important;
    }

    .partner-card {
        flex: 0 0 calc(33.33% - 27px);
        max-width: calc(33.33% - 27px);
    }

    .icon-with-text__box {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .icon-with-text__img img:first-child {
        width: 80%;
        transform: rotate(0);
    }

    .icon-with-text__img .show-in-hover {
        width: 100%;
        right: 0;
        opacity: 1;
    }

    .icon-with-text__img {
        justify-content: center;
    }

    .icon-with-text__img .icon-zoom {
        opacity: 1;
    }

    .mega-menu-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.5rem;
        padding-left: 0.5rem;
        padding-top: 0.5rem;
    }

    .header__menu-list-item {
        width: 100%;
        font-size: 18px;
    }

    .mega-menu .container {
        max-width: 100%;
    }

    .mega-menu-list li {
        flex: auto;
        max-width: 100%;
    }

    .mega-menu-item {
        font-size: 16px;
        color: inherit;
        gap: 0;
        padding: 3px 0;
    }

}

@media screen and (max-width: 992px) {

    .category-banner__img {
        display: none;
    }

    .category-banner__img-2 {
        position: static;
        margin: 20px auto;
        max-width: 170px;
    }

    .category-banner {
        padding: 10px 20px 20px;
    }

    .title__indent-top {
        margin-bottom: 10px;
    }

    .quiz-hero__desc {
        font-size: 16px;
    }

    .quiz-hero__title {
        font-size: 24px;
    }

    .quiz-wrapper.quiz-wrapper__transparent {
        padding: 0;
    }

    .promseptik-hero__btn {
        margin: 20px 0;
    }

    .promseptik-hero__wrapper {
        flex-direction: column;
    }

    .promseptik-hero__text {
        text-align: center;
        padding: 0;
    }

    .promseptik-hero__gallery {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .promseptik-hero__desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
    }

    .sreview_wrapper {
        padding: 44px 20px;
        margin: 0;
    }

    .icon-with-text__img .icon-zoom {
        display: none;
    }

    .sreview_wrapper .sreview-items {
        flex-direction: column;
    }

    .sreview_wrapper .sreview_title {
        max-width: 100%;
        font-size: 25px;
    }

    .sreview_wrapper .sreview-all .baner-btn {
        width: 100%;
    }

    .sreview_wrapper .sreview-all .baner-btn:hover {
        width: 100%;
    }

    .sreview_wrapper .review-bottom {
        flex-direction: row;
        gap: 8px
    }

    .review-bottom .review-bottom-btn {
        width: calc((100% / 2) - 8px);
    }

    .review-bottom .review-bottom-btn:hover {
        width: calc((100% / 2) - 8px);
    }

    #form-review #review .table {
        max-width: 100%;
    }

    #form-review .form-group .form-group_wrapper {
        max-width: 100%;
    }

    .multi-column__wrapper {
        grid-template-columns: 1fr;
    }

    .multi-column__item {
        min-width: 290px;
    }

    .multi-column__desc {
        position: static;
        padding: 30px 0 0;
    }

    .promseptik-hero-pagination {
        display: none;
    }

    .invite__img {
        display: none;
    }

    .promseptik-banner__img {
        display: none;
    }

    .promseptik-banner {
        padding-top: 60px;
        min-height: auto;
    }

    .promseptik-banner__wrapper {
        max-width: unset;
    }

    .promseptik-map__info {
        position: static;
        border-radius: 0;
    }

    .promseptik-map {
        margin-top: 60px;
    }

    .icon-with-text__wrapper .section-header {
        margin-bottom: 0;
    }

    .icon-with-text {
        margin-top: 60px;
        padding: 60px 0;
    }

    .quiz-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .quiz-steps li {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .quiz-wrapper {
        padding: 20px;
        min-height: unset;
        gap: 32px;
    }

    .quiz-item_title {
        font-size: 22px;
    }

    .radio-label {
        font-size: 16px;
    }

    .header-quiz .block__right-side {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }

    .textblock h1 {
        font-size: 25px;
    }

    .textblock h2 {
        font-size: 22px;
    }

    .textblock h3 {
        font-size: 20px;
    }

    .textblock h4 {
        font-size: 18px;
    }

    .textblock h5 {
        font-size: 16px;
    }

    .textblock h6 {
        font-size: 16px;
    }

    .about-page .history-section .wrapper .features {
        display: flex;
        flex-direction: column;
        gap: 0.5rem
    }
    .about-page .history-section .wrapper {
        max-width: 80%;
    }

    .about-page .history-section .wrapper .item {
        position: relative;
    }

    .about-page .history-section .wrapper .item:nth-child(n) {
        top: initial;
        left: initial;
    }

    .about-page .history-section .wrapper .item {
        width: 40%;
    }

    .about-page .history-section .wrapper .features .item:nth-child(even) {
        align-self: end;
    }

    .about-page .history-section .wrapper .item .circle {
        font-size: 42px;
    }

    .about-page .history-section .wrapper .item .tooltip {
        display: flex;
        flex-direction: column;
        text-align: start;
        opacity: 1;
    }

    .about-page .history-section .wrapper .features .item:nth-child(n) .tooltip {
        top: 25%;
    }


    .about-page .history-section .wrapper .features .item:nth-child(odd) .tooltip {
        left: 200%;
    }

    .about-page .history-section .wrapper .features .item:nth-child(even) .tooltip {
        left: -80%;
    }

    .about-page .history-section .wrapper .item .tooltip p:nth-child(1) {
        max-width: 150px;
        text-align: start;
        align-self: start;
    }

    .about-page .history-section .wrapper .item .tooltip p:nth-child(2) {
        text-align: start;
        max-width: 150px;
        min-width: initial;
        align-self: start;
    }

    .about-page .history-section .bg-image {
        display: none;
    }

    .about-page .callback-section .wrapper__body {
        flex-direction: column-reverse;
    }

    .about-page .callback-section .wrapper__body .wrapper__form {
        width: 100%;
    }

    .about-page .callback-section .wrapper__body .wrapper__form form {
        padding: 20px;
    }

    .about-page .callback-section .wrapper__body .wrapper__side {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .partners.swiper {
        padding-bottom: 36px;
    }

    .modal__discount .form-order .label-checkbox, .modal .form-order .label-checkbox {
        font-size: 12px;
    }

    .modal, .modal__discount {
        /*max-height: 73%;*/
    }

    .modal-title {
        font-size: 24px !important;
        margin-bottom: 32px;
    }

    .modal-text {
        font-size: 12px;
    }

    #main-form-modal {
        padding: 32px 36px;
    }

    .header-quiz__wrapper,
    .promseptik-banner__wrapper {
        padding: 20px;
    }

    .header-quiz__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .header-quiz__wrapper {
        gap: 16px;
    }

    .promseptik-banner__wrapper .section-header {
        margin: 0;
    }

    .icon-with-text__list li {
        flex-direction: column;
    }

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

    .promseptik-map__info {
        padding: 20px;
    }

    .promseptik-title {
        font-size: 32px;
    }

    #promseptik-page .container:not(.container__screen) {
        padding: 0 15px;
    }

    .photo-gallery .foto-galery-wrap {
        flex-direction: column !important;
    }

    .photo-gallery .foto-galery-descr {
        max-width: 100%;
    }

    .quiz-hero__wrapper {
        padding: 60px 20px;
    }

    .reviews__navigation .swiper-pagination {
        margin: 20px 0;
    }

    .reviews__navigation .swiper-navigation {
        display: none;
    }

    .review .sreview-all .btn {
        width: 100%;
    }

    .reviews__slider {
        padding-bottom: 0;
        margin-top: 0;
    }

    .installation-page .container {
        width: 95%;
        margin: 0 auto;
    }

    .installation-page .head-section {
        background: url("./../img/installation-page/head-bg.webp") no-repeat top center;
    }

    .installation-page .head-section p {
        width: 100%;
    }

    .installation-page .page-title {
        margin-bottom: 72px;
    }

    .installation-page .setup-section {
        background: url("./../img/installation-page/setup-section/bg.webp") no-repeat top left;
    }

    .installation-page .advantages-section .cards-wrapper {
        grid-template-columns: 100%;
        row-gap: 16px;
    }

    .installation-page .advantages-section .cards-wrapper .card {
        padding: 24px;
    }

    /* SEO posts */
    .seo_post_container .title__indent-top {
        margin: 92px 0 0;
    }

    .seo_post_container .post_descr.post_descr-head {
        margin-top: 16px;
        width: 75%;
    }

    /* how we work section */
    .seo-page .how-we-work .items_wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* why we section */
    .seo-page .why-we .items_wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* About page */
    .about-page section {
        padding: 42px 0 !important;
    }

    .about-page .container {
        max-width: 95%;
    }

    .about-page .title-section {
        text-align: center;
        font-size: 26px;
    }

    .about-page .title-section .descr {
        font-size: 20px !important;
    }

    .about-page .head-section {
        padding: 4px 0 120px 0;
    }

    .about-page .head-section .head-wrapper {
        padding: 16px
    }

    .about-page .head-section .page-title {
        margin: 0 auto;
        padding: 64px 0 40px;
        border: none;
        font-size: 36px;
    }

    .about-page .head-section .title-sub {
        text-align: center;
    }

    .about-page .head-section .descr {
        text-align: start;
        font-size: 16px;
    }

    .about-page .head-section .btn-white {
        width: 100%;
        margin-top: 16px;
    }

    .about-page .head-section .head-wrapper {
        position: relative;
        max-height: 250px;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .about-page .head-section .head-wrapper.expanded {
        max-height: 1000px; /* большое значение для раскрытия */
    }

    .about-page .head-section .toggle-wrapper {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
    }

    .about-page .head-section .toggle-btn {
        /*margin-top: 1rem;*/
        font-weight: bold;
        background: #FFFFFF;
        border: none;
        color: #2D2D2D;
        padding: 4px 32px;
        border-radius: 5px;
        cursor: pointer;
        opacity: 0.85;
    }

    .about-page .head-section .toggle-btn #arrowIcon {
        transition: transform 0.3s ease;
    }

    .about-page .head-section .toggle-btn #arrowIcon.rotated {
        transform: rotate(180deg);
    }

    /* Градиент поверх контента снизу */
    .about-page .head-section .gradient-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
        pointer-events: none; /* чтобы клик проходил сквозь */
        z-index: 1;
    }

    .about-page .head-section .head-wrapper.expanded .gradient-overlay {
        display: none;
    }

    .about-page .history-section .title-section {
        margin-bottom: 40px;
    }

    .about-page .mission-section {
        position: relative;
        padding-bottom: 144px;
    }

    .about-page .mission-section .title-section {
        padding-top: 120px;
        margin-bottom: 54px;
        position: relative;
        z-index: 1;
    }

    .about-page .mission-section .descr {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .about-page .mission-section .row {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .about-page .mission-section .row img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.5;
    }

    .about-page .services-section .cards-wrapper {
        grid-gap: 20px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .about-page .advantages-section .title-section {
        margin-bottom: 40px;
    }

    .about-page .advantages-section .wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .about-page .advantages-section .wrapper .card-title {
        font-size: 16px;
    }

    .about-page .advantages-section .wrapper .card-descr {
        font-size: 14px;
    }

    .about-page .reviews-section .title-section {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .about-page .reviews-section .title-section {
        font-size: 20px;
    }

    .about-page .reviews-section .swiper-pagination {
        display: block;
    }

    .about-page .partners-section .title-section {
        margin-bottom: 24px;
    }

    .about-page .partners-section .partner-card {
        padding: 6px;
    }

    .about-page .callback-section .wrapper .title-section .descr {
        margin-bottom: 40px;
    }

    .about-page .map-section {
        display: flex;
        flex-direction: column-reverse;

    }

    .about-page .map-section .info {
        position: relative;
        right: initial;
        bottom: initial;
        width: 100%;
        max-width: 100%;
        padding: 24px;
        align-content: flex-start;
    }

    .about-page .map-section .info .info-title {
        font-size: 26px;
    }

    .about-page .map-section .info .info-desc {
        font-size: 20px;
    }

    .about-page .map-section .info .info-contacts {

    }

    .about-page .info .info-contacts .info-contacts__item:nth-child(1) {
        font-size: 22px;
    }

    .about-page .info .info-contacts .info-contacts__item:nth-child(1) img {
        width: 24px;
        height: auto;
    }

    .about-page .info .info-contacts .info-contacts__item:nth-child(2) {
        font-size: 22px;
    }

    .about-page .info .info-contacts .info-contacts__item:nth-child(2) img {
        width: 24px;
        height: auto;
    }
}

    @media screen and (max-width: 576px) {
        .reviews__list .reviews__slide {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .promseptik-hero__gallery {
            flex: auto;
            max-width: 100%;
        }

        .partner-card {
            flex: 0 0 calc(50% - 10px);
            max-width: calc(50% - 10px);
        }

        .promseptik-title {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .promseptik-hero {
            margin-bottom: 60px;
        }

        .foto-galery-descr-title {
            font-size: 20px;
        }

        .foto-galery-info__value {
            font-size: 24px;
        }

        .foto-galery-info__label {
            font-size: 18px;
        }

        .foto-galery-desc {
            font-size: 18px;
        }

        .about-blocks__wrapper {
            gap: 40px;
            grid-template-columns: 1fr;
        }

        .solutions__wrapper {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .solutions__sticky {
            position: static;
        }

        .solutions__list {
            gap: 40px;
        }

        .product-list {
            padding-top: 60px;
        }

        .invite__list > li {
            gap: 13px;
            margin-bottom: 40px;
            font-size: 20px;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .multi-column {
            padding-top: 60px;
        }

        .icon-with-text {
            padding: 60px 0;
            margin-top: 60px;
        }

        .thank-you {
            padding: 30px 0 0;
        }

        .thank-you > .container > svg {
            width: 80px;
            height: 80px;
        }

        .thank-you__title {
            font-size: 28px;
        }

        .thank-you__desc {
            font-size: 16px;
        }

        .thank-you__social-list img {
            width: 44px;
            height: 44px;
        }

        .thank-you__social {
            padding: 0 10px 10px;
        }

        .thank-you__social-text {
            padding: 10px;
        }
        /* SEO posts */
    .seo_post_container .post_descr.post_descr-head {
        width: 100%;
    }
    .seo_post_img__wrapper:after {
        background: linear-gradient(0deg, #FFF 10%, rgba(255, 255, 255, 0) 75%);
    }

    /* how we work section */
    .seo-page .how-we-work .items_wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    /* why we section */
    .seo-page .why-we .items_wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .seo-page .why-we .items_wrapper > div {
        padding: 24px;
        font-size: 14px;
    }
}
