@charset "UTF-8";
:root {
    --bg-black: #f2f2f2;
    --color-black: #3a3a3a;
    --logo-black: #393e3a;
    --logo-green: #61a337;
    --logo-green-dark: #538138;
    --color-white: #fff;
}
@font-face {
font-display:swap;
    font-family: "Rubik";
    font-display: auto;
    font-size: normal;
    font-weight: 100;
    src: url('/wp-content/themes/mudvor/assets/css/../font/Rubik-Light.ttf');
}
@font-face {
font-display:swap;
    font-family: "Rubik";
    font-display: auto;
    font-size: normal;
    font-weight: 400;
    src: url('/wp-content/themes/mudvor/assets/css/../font/Rubik-Regular.ttf');
}
@font-face {
font-display:swap;
    font-family: "Rubik";
    font-display: auto;
    font-size: normal;
    font-weight: 500;
    src: url('/wp-content/themes/mudvor/assets/css/../font/Rubik-Medium.ttf');
}
@font-face {
font-display:swap;
    font-family: "Rubik";
    font-display: auto;
    font-size: normal;
    font-weight: 600;
    src: url('/wp-content/themes/mudvor/assets/css/../font//Rubik-Bold.ttf');
}
@font-face {
font-display:swap;
    font-family: "Rubik";
    font-display: auto;
    font-size: normal;
    font-weight: 900;
    src: url('/wp-content/themes/mudvor/assets/css/../font/Rubik-Black.ttf');
}
body {
    font-family: "Rubik", serif;
    color: var(--color-black);
    font-weight: 400;
    font-size: 16px;
    background-color: var(--color-white);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
h1 {
    font-weight: 600;
}
@media (max-width: 767px) {
    h1 {
        font-size: calc(34px + 27.2 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    h1 {
        font-size: calc(34px + 16 * 100vw / 1900);
    }
}
h2 {
    font-weight: 500;
}
@media (max-width: 767px) {
    h2 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    h2 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
h3 {
    font-weight: 500;
}
@media (max-width: 767px) {
    h3 {
        font-size: calc(20px + 13.6 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    h3 {
        font-size: calc(20px + 8 * 100vw / 1900);
    }
}
h4 {
    font-weight: 500;
}
@media (max-width: 767px) {
    h4 {
        font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    h4 {
        font-size: calc(20px + 4 * 100vw / 1900);
    }
}
p {
    line-height: 1.4;
}
@media (max-width: 767px) {
    p {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    p {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
a {
    text-decoration: none;
    color: var(--color-black);
}
p:not(:last-child) {
    margin-bottom: 10px;
}
address {
    font-style: normal;
}
hr {
    border: none;
    height: 1px;
    background-color: #e1e1e1;
    margin: 24px 0 0;
}
strong {
    font-weight: 500;
}
.container {
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    padding: 60px 15px;
    margin: 0 auto;
}
.btn {
    display: inline-block;
    border: none;
    background: #8bc867;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    color: var(--color-white);
    font-weight: 400;
    box-sizing: border-box;
    padding: 18px 45px;
    border-radius: 10px 10px 10px 10px;
    font-size: 20px;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
}
@media (max-width: 991px) {
    .btn {
        padding: 14px 35px;
    }
}
.wrapper-body--active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0006;
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    transition: all 0.2s ease-in-out;
    z-index: 10;
}
.remove {
    display: none;
}
.mr-t-50 {
    margin-top: 50px;
}
.mr-b-20 {
    margin-bottom: 20px;
}
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}
.page-numbers:not(:last-child) {
    margin-right: 10px;
}
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    cursor: pointer;
}
.page-numbers:hover {
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    border: 1px solid #2cb742;
    color: #fff;
}
.page-numbers.current {
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    border: 1px solid #2cb742;
    color: #fff;
}
.header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
@media (max-width: 900px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 1px solid #e1e1e1;
        z-index: 100;
    }
}
.container-header {
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width: 920px) {
    .container-header {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-navigation .btn {
    padding: 11px 20px;
}
.logo__img {
    width: 80px;
}
@media (max-width: 920px) {
    .logo__img {
        width: 60px;
    }
}
@media (max-width: 575px) {
    .logo__img {
        width: 45px;
    }
}
.search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 4px 4px;
    background-color: #fff;
    box-shadow:
        #091e4240 0 4px 8px -2px,
        #091e4214 0 0 0 1px;
    position: relative;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 575px) {
    .search {
        width: 190px;
        height: 35px;
        background-color: var(--color-white);
    }
}
.search__input {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    background: url('/wp-content/themes/mudvor/assets/css/../img/icon/search.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 50% center;
    box-sizing: border-box;
    padding: 10px;
    pointer-events: none;
    cursor: pointer;
}
.asl_w_container.asl_w_container_1 {
    min-width: auto;
}
div.asl_m .probox .promagnifier .innericon svg,
div.asl_m .probox .prosettings .innericon svg,
div.asl_m .probox .proloading svg {
    margin-top: -6px;
}
.asl_content div.asl_r .results .item .asl_content h3,
div.asl_r .results .item .asl_content h3 a {
    display: block;
    margin-top: 10px;
}
@media (max-width: 575px) {
    .search__input {
        pointer-events: auto;
        background-position: 95% center;
        color: #161820cc;
    }
    div.asl_m .probox .promagnifier .innericon svg,
    div.asl_m .probox .prosettings .innericon svg,
    div.asl_m .probox .proloading svg {
        margin-top: 0;
    }
}
.search__input::-moz-placeholder {
    color: transparent;
}
.search__input::placeholder {
    color: transparent;
}
.search svg {
    position: absolute;
    right: 10px;
    cursor: pointer;
}
.search-mask:hover {
    width: 300px;
    background-color: var(--color-white);
}
@media (max-width: 575px) {
    .search-mask:hover {
        width: auto;
    }
}
@media (max-width: 420px) {
    .search-mask:hover {
        box-shadow:
            #091e4240 0 4px 8px -2px,
            #091e4214 0 0 0 1px;
        width: 180px;
        margin-left: 0;
    }
}
@media (max-width: 575px) {
    .search__input::-moz-placeholder {
        color: #16182000;
    }
    .search__input::placeholder {
        color: #16182000;
    }
}
.search-mask:hover .search__input {
    background-position: 95% center;
    pointer-events: auto;
}
.search-mask:hover .search__input::-moz-placeholder {
    color: #161820cc;
}
.search-mask:hover .search__input::placeholder {
    color: #161820cc;
}
.adres-hero {
    display: flex;
    align-items: center;
    width: 320px;
}
@media (max-width: 900px) {
    .adres-hero {
        display: none;
    }
}
.adres-hero--time {
    width: 200px;
}
@media (max-width: 1090px) {
    .adres-hero--time {
        display: none;
    }
}
.adres-hero svg {
    margin-right: 10px;
}
.adres-hero__title {
    color: #161820cc;
    margin-bottom: 4px;
    font-size: 14px;
}
.adres-hero__text {
    font-size: 14px;
}
.img-time {
    width: 20px;
    margin-right: 10px;
}
.adres-hero:first-child {
    width: 280px;
}
.adres-hero:last-child {
    width: 300px;
}
.phone-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 575px) {
    .phone-mail {
        display: none;
    }
}
.phone-mail--mobile {
    display: none;
    margin-top: 20px;
    text-align: center;
}
@media (max-width: 575px) {
    .phone-mail--mobile {
        display: block;
    }
}
.phone-mail__tel {
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .phone-mail__tel {
        font-size: calc(16px + 0 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .phone-mail__tel {
        font-size: calc(16px + 0 * 100vw / 1900);
    }
}
.phone-mail__modal {
    font-size: 16px;
    font-weight: 0;
    margin-top: 4px;
    color: var(--logo-green);
    border-bottom: 1px dashed var(--logo-green);
}
.social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}
@media (max-width: 767px) {
    .social {
        display: none;
    }
}
.social__link {
    display: flex;
    align-self: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 4px 4px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    margin-right: 10px;
}
@media (max-width: 1239px) {
    .social__link {
        width: 40px;
        height: 40px;
    }
}
.social__img {
    width: 20px;
}
.wrapper-basket__content {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
.wrapper-basket__title {
    font-weight: 500px;
    color: var(--logo-green);
    border-bottom: 1px dashed var(--logo-green);
}
@media (max-width: 1239px) {
    .wrapper-basket__title {
        border-bottom: none;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .wrapper-basket__title {
        display: none;
    }
}
.link-basket {
    display: flex;
    align-items: center;
}
@media (max-width: 1239px) {
    .link-basket {
        width: 100px;
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .link-basket {
        width: auto;
    }
}
@media (max-width: 1239px) {
    .group-basket {
        margin-top: 10px;
    }
}
@media (max-width: 420px) {
    .group-basket {
        margin-top: 0;
    }
}
.img {
    width: 20px;
}
.burger {
    display: none;
    width: 30px;
    height: 25px;
    border: none;
    background-color: transparent;
    font-size: 0;
    position: relative;
}
@media (max-width: 900px) {
    .burger {
        display: block;
    }
}
.burger::before,
.burger::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #393e3a;
    border-radius: 20px 20px;
    transition: transform 0.2s ease-in-out;
}
.burger::before {
    top: 0;
}
.burger::after {
    bottom: 0;
}
.burger__line {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #393e3a;
    border-radius: 20px 20px;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
.burger--active::before {
    top: 45%;
    transform: rotate(45deg);
}
.burger--active::after {
    bottom: 45%;
    transform: rotate(-45deg);
}
.burger--active .burger__line {
    opacity: 0;
}
.header-menu {
    border-width: 0;
    background-color: var(--color-white);
    background-position: center center;
    border-color: transparent;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 15;
}
@media (max-width: 900px) {
    .header-menu {
        border: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateX(150%);
        transition: transform 0.2s ease-in-out;
    }
}
.header-menu--active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.header-menu--transform {
    transform: translateY(0%);
}
.container-header-menu {
    padding: 0 15px;
}
.list-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 900px) {
    .list-menu {
        padding-top: 10px;
        flex-direction: column;
    }
}
.list-menu__item {
    text-align: center;
    width: 14.2%;
}
@media (max-width: 900px) {
    .list-menu__item {
        width: 100%;
        text-align: left;
    }
}
.list-menu__link {
    display: block;
    box-sizing: border-box;
    padding: 18px 20px;
    color: var(--color-black);
}
@media (max-width: 1010px) {
    .list-menu__link {
        padding: 18px 10px;
    }
}
@media (max-width: 900px) {
    .list-menu__link {
        padding: 8px 4px;
    }
}
.list-menu__link:hover {
    text-decoration: underline;
    color: var(--logo-green);
}
.list-menu__item:not(:last-child) {
    border-right: 1px solid #eee;
}
@media (max-width: 900px) {
    .list-menu__item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}
.dropdown {
    position: relative;
}
.dropdown-content {
    position: absolute;
    left: calc(-100% - 15px);
    z-index: 20;
    box-sizing: border-box;
    padding: 14px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out;
}
@media (max-width: 900px) {
    .dropdown-content {
        display: none;
    }
}
.dropdown:hover .dropdown-content {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}
.dropdown-list {
    display: flex;
    justify-content: space-between;
}
.dropdown-list__item {
    width: calc(33.333% - 15px);
    background-color: var(--color-white);
    border-radius: 12px 12px 12px 12px;
    text-align: left;
    box-shadow:
        #091e4240 0 4px 8px -2px,
        #091e4214 0 0 0 1px;
}
.dropdown-list__header {
    width: 100%;
    position: relative;
    border-bottom: 3px solid var(--logo-green);
}
.dropdown-list__header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 65px;
    bottom: 0;
    background-image: linear-gradient(180deg, #0000001a 5%, #000000a6 47%, #000000e6 97%);
}
.dropdown-list__body {
    box-sizing: border-box;
    padding: 20px;
}
@media (max-width: 1100px) {
    .dropdown-list__body {
        padding: 10px;
    }
}
.dropdown-img {
    width: 100%;
    height: 248px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
@media (max-width: 1239px) {
    .dropdown-img {
        height: 200px;
    }
}
@media (max-width: 1100px) {
    .dropdown-img {
        height: 170px;
    }
}
@media (max-width: 991px) {
    .dropdown-img {
        height: 140px;
    }
}
.dropdown-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--color-white);
}
@media (max-width: 767px) {
    .dropdown-title {
        font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .dropdown-title {
        font-size: calc(18px + 2 * 100vw / 1900);
    }
}
.dropdown-link:hover .dropdown-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff9;
    bottom: -2px;
}
.list-drop-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}
.list-drop-menu__item {
    line-height: 1.5;
    box-sizing: border-box;
    padding-left: 12px;
    position: relative;
}
.list-drop-menu__item::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 3px;
    background-color: var(--logo-green);
    left: 0;
    top: 10px;
}
.list-drop-menu__link:hover {
    color: var(--logo-green);
}
.see-links:hover {
    transition: all 0.2s ease-in-out;
    color: var(--logo-green);
    text-decoration: underline;
    cursor: pointer;
}
.list-drop-menu {
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.05s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: #777 #eee;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.list-drop-menu--expanded {
    max-height: 250px;
    margin-bottom: 0;
    overflow-y: scroll;
}
.dropdown-company {
    position: absolute;
    left: -1px;
    background-color: var(--color-white);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    border: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
}
@media (max-width: 900px) {
    .dropdown-company {
        position: static;
        opacity: 1;
        border: none;
    }
}
.dropdown-company-list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
@media (max-width: 900px) {
    .dropdown-company-list__item {
        box-sizing: border-box;
        margin-left: 16px;
    }
}
.dropdown-company-list__item:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
}
.dropdown-company-list__link {
    display: block;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}
.dropdown-company-list__link:hover {
    background-color: #f5f5f5;
}
@media (max-width: 900px) {
    .dropdown-company-list__link::before {
        position: absolute;
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 100%;
        border: 1px solid #888;
        top: 12px;
        left: 0;
    }
    .dropdown-company-list__link {
        padding: 8px 10px 8px 13px;
    }
}
.dropdown:hover .dropdown-company {
    opacity: 1;
    pointer-events: auto;
}
.hero {
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.hero .hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
    top: 0;
    left: 0;
	z-index: -1;
}
.hero .hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero .hero-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #0000002b 13%, #0000 97%);
    top: 0;
    left: 0;
}
.container-hero {
    padding: 150px 15px;
}
@media (max-width: 1239px) {
    .container-hero {
        padding: 100px 15px;
    }
}
@media (max-width: 991px) {
    .container-hero {
        padding: 80px 15px;
    }
}
@media (max-width: 900px) {
    .container-hero {
        padding: 50px 15px;
        padding-top: 100px;
    }
}
.container-hero h1 {
    color: var(--color-white);
    margin-bottom: 70px;
    text-shadow: 0 4px 6px #000000bf;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.wrapper-slider {
    display: flex;
    align-items: center;
    margin-top: 70px;
}
.wrapper-slider__title {
    color: var(--color-white);
    font-weight: 600;
    width: 150px;
}
@media (max-width: 767px) {
    .wrapper-slider__title {
        font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-slider__title {
        font-size: calc(18px + 2 * 100vw / 1900);
    }
}
.swiper {
    width: calc(100% - 150px);
}
.swiper--product {
    width: 100%;
    margin-top: 40px;
}
.swiper .swiper-wrapper {
    align-items: center;
}
.swiper .swiper-slide {
    background-color: #ffffffbf;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 20px 20px;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    transition: 0.2s;
}
.swiper .pagination {
    margin-left: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    z-index: 100;
}
.swiper .pagination span {
    font-size: 0;
    opacity: 1;
    margin: 0 6px !important;
    border: 1px solid #fff;
}
.swiper .pagination span.swiper-pagination-bullet-active {
    background-color: transparent;
    transform: scale(1.5);
}
.link-slide {
    color: var(--color-black);
}
.link-slide__img {
    width: 100%;
}
.link-slide span {
    border-bottom: 1px dashed var(--color-black);
}
@media (max-width: 767px) {
    .link-slide span {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .link-slide span {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
.link-slide span:hover {
    border-bottom: 1px dashed var(--logo-green);
    color: var(--logo-green);
}
.hero-catalog {
    padding-bottom: 150px;
}
@media (max-width: 700px) {
    .hero-catalog {
        padding-bottom: 30px;
    }
}
.container-hero-catalog {
    border: 1px solid #eee;
    padding: 50px 36px 150px;
    border-radius: 60px;
    margin-top: 40px;
    position: relative;
}
@media (max-width: 1400px) {
    .container-hero-catalog {
        padding: 50px 15px 150px;
    }
}
@media (max-width: 900px) {
    .container-hero-catalog {
        padding: 50px 15px 30px;
    }
}
@media (max-width: 700px) {
    .container-hero-catalog {
        padding: 50px 15px 30px;
    }
}
.container-hero-catalog h2 {
    margin-bottom: 30px;
}
.wrapper-hero-catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}
@media (max-width: 1239px) {
    .wrapper-hero-catalog {
        gap: 20px;
    }
}
.wrapper-hero-catalog__item {
    width: calc(50% - 30px);
}
@media (max-width: 1239px) {
    .wrapper-hero-catalog__item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 600px) {
    .wrapper-hero-catalog__item {
        width: 100%;
    }
}
.wrapper-hero-catalog__item--last {
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #e1e1e1;
    background-color: #f5f5f5;
    border-radius: 12px 12px;
}
@media (max-width: 600px) {
    .wrapper-hero-catalog__item--last {
        padding: 30px 15px;
    }
}
.wrapper-hero-catalog__bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    width: 100%;
    height: 340px;
}
@media (max-width: 1239px) {
    .wrapper-hero-catalog__bg {
        height: 320px;
    }
}
@media (max-width: 991px) {
    .wrapper-hero-catalog__bg {
        height: 300px;
    }
}
@media (max-width: 900px) {
    .wrapper-hero-catalog__bg {
        height: 270px;
    }
}
@media (max-width: 767px) {
    .wrapper-hero-catalog__bg {
        height: 250px;
    }
}
@media (max-width: 650px) {
    .wrapper-hero-catalog__bg {
        height: 220px;
    }
}
.wrapper-hero-catalog__item:nth-child(1) .wrapper-hero-catalog__bg {
    background-image: url('/wp-content/themes/mudvor/assets/css/../img/all/deti.jpg');
}
.wrapper-hero-catalog__item:nth-child(2) .wrapper-hero-catalog__bg {
    background-image: url('/wp-content/themes/mudvor/assets/css/../img/all/sport.jpg');
}
.wrapper-hero-catalog__item:nth-child(3) .wrapper-hero-catalog__bg {
    background-image: url('/wp-content/themes/mudvor/assets/css/../img/all/maf.jpg');
}
.link-title {
    transition: all 0.3s ease-in-out;
}
.link-title h3 {
    margin: 20px 0;
}
.link-title:hover h3 {
    color: var(--logo-green);
}
.link-title svg path {
    stroke: var(--logo-black);
}
.link-title:hover svg path {
    stroke: var(--logo-green);
}
.wrap-title-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrap-title-hero--last {
    transform: translateY(140%);
}
@media (max-width: 600px) {
    .wrap-title-hero--last {
        transform: translateY(0%);
    }
}
.wrap-title-hero--last h3 {
    width: 340px;
}
@media (max-width: 767px) {
    .wrap-title-hero--last h3 {
        font-size: calc(26px + 32.3 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrap-title-hero--last h3 {
        font-size: calc(26px + 19 * 100vw / 1900);
    }
}
.wrapper-hero-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 40px 24px;
    border: 1px solid #e1e1e1;
    background-color: #f5f5f5;
    border-radius: 45px;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -80px;
}
@media (max-width: 1335px) {
    .wrapper-hero-form {
        width: 90%;
    }
}
@media (max-width: 1176px) {
    .wrapper-hero-form {
        width: calc(100% - 30px);
    }
}
@media (max-width: 1085px) {
    .wrapper-hero-form {
        flex-direction: column;
    }
}
@media (max-width: 700px) {
    .wrapper-hero-form {
        padding: 20px 15px;
        position: static;
        margin-top: 40px;
        width: 100%;
    }
}
.wrapper-hero-form__content {
    width: 35%;
}
@media (max-width: 1085px) {
    .wrapper-hero-form__content {
        width: 45%;
        text-align: center;
        margin-bottom: 10px;
    }
}
@media (max-width: 900px) {
    .wrapper-hero-form__content {
        width: 100%;
    }
}
.wrapper-hero-form__text {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 6px;
    text-align: center;
}
.wrapper-hero-form__title {
    font-weight: 600;
}
@media (max-width: 767px) {
    .wrapper-hero-form__title {
        font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-hero-form__title {
        font-size: calc(18px + 2 * 100vw / 1900);
    }
}
.wrapper-hero-form__form {
    width: 64%;
}
@media (max-width: 1085px) {
    .wrapper-hero-form__form {
        width: 80%;
    }
}
@media (max-width: 900px) {
    .wrapper-hero-form__form {
        width: 100%;
    }
}
.wrapper-hero-form__subtext {
    font-size: 14px;
    color: #777;
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
}
@media (max-width: 400px) {
    .wrapper-hero-form__subtext {
        font-size: 13px;
    }
}
.wrapper-hero-form__subtext a {
    color: #777;
    font-weight: 500;
}
.form-podbor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 700px) {
    .form-podbor {
        flex-direction: column;
    }
}
.form-podbor__input {
    width: 33%;
    height: 50px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #e1e1e1;
    background-color: var(--color-white);
    border-radius: 12px;
}
@media (max-width: 700px) {
    .form-podbor__input {
        width: 100%;
        margin-bottom: 10px;
        height: 44px;
    }
}
.form-podbor .btn {
    padding: 14px 20px;
}
@media (max-width: 700px) {
    .form-podbor .btn {
        width: 100%;
    }
}
.about {
    background-color: #f8f8f8;
    position: relative;
}
@media (max-width: 1650px) {
    .about {
        overflow: hidden;
    }
}
.container-about {
    padding: 50px 15px;
}
.container-about--proiz {
    padding-top: 20px;
}
.about-group {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1063px) {
    .about-group {
        flex-direction: column;
    }
}
.about-group__content {
    width: 100%;
}
.about-group__content .text:not(:last-child) {
    margin-bottom: 10px;
}
.linka-about svg {
    margin-top: 1px;
    transform: rotate(-90deg);
}
.wrapper-about {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    margin-top: 30px;
    z-index: 1;
}
.wrapper-about__item {
    width: calc(25% - 15px);
    background-color: #fff;
    border-radius: 12px;
    box-shadow:
        #0e3f7e0a 0 0 0 1px,
        #2a33450a 0 1px 1px -0.5px,
        #2a33460a 0 3px 3px -1.5px,
        #2a33460a 0 6px 6px -3px,
        #0e3f7e0a 0 12px 12px -6px,
        #0e3f7e0a 0 24px 24px -12px;
}
@media (max-width: 991px) {
    .wrapper-about__item {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .wrapper-about__item {
        width: 100%;
    }
}
.wrapper-about__img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
}
.wrapper-about__text {
    line-height: 1.4;
    font-size: 16px;
    margin: 16px;
}
.wrap-numbers {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 640px;
    position: relative;
    z-index: 0;
}
@media (max-width: 991px) {
    .wrap-numbers {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .wrap-numbers {
        gap: 14px;
    }
}
.wrap-numbers__item {
    width: 200px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow:
        #0e3f7e0a 0 0 0 1px,
        #2a33450a 0 1px 1px -0.5px,
        #2a33460a 0 3px 3px -1.5px,
        #2a33460a 0 6px 6px -3px,
        #0e3f7e0a 0 12px 12px -6px,
        #0e3f7e0a 0 24px 24px -12px;
}
@media (max-width: 991px) {
    .wrap-numbers__item {
        width: calc(33.333% - 15px);
    }
}
@media (max-width: 600px) {
    .wrap-numbers__item {
        padding: 12px;
        width: calc(51% - 14px);
    }
}
.wrap-numbers__item:nth-child(3) {
    background: #8bc867;
    background: linear-gradient(61deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    color: #fff;
}
.wrap-numbers__item:nth-child(4) {
    width: 310px;
    background: #8bc867;
    background: linear-gradient(61deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    color: #fff;
}
@media (max-width: 991px) {
    .wrap-numbers__item:nth-child(4) {
        width: calc(50% - 10px);
    }
}
.wrap-numbers__item:nth-child(5) {
    width: 310px;
}
@media (max-width: 991px) {
    .wrap-numbers__item:nth-child(5) {
        width: calc(50% - 10px);
    }
}
@media (max-width: 500px) {
    .wrap-numbers__item:nth-child(5) {
        width: 100%;
    }
}
.wrap-numbers__title {
    font-weight: 600;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .wrap-numbers__title {
        font-size: calc(26px + 23.8 * (100vw - 320px) / 1920);
    }
}
@media (min-width: 767px) {
    .wrap-numbers__title {
        font-size: calc(26px + 0.7291666667vw);
    }
}
@media (max-width: 767px) {
    .wrap-numbers__text {
        font-size: calc(15px + 1.7 * (100vw - 320px) / 1920);
    }
}
@media (min-width: 767px) {
    .wrap-numbers__text {
        font-size: calc(15px + 0.0520833333vw);
    }
}
.img-about {
    position: absolute;
    bottom: -70px;
    right: 0;
    z-index: 0;
}
@media (max-width: 1650px) {
    .img-about {
        right: -180px;
    }
}
@media (max-width: 1450px) {
    .img-about {
        right: -280px;
    }
}
@media (max-width: 1350px) {
    .img-about {
        right: -400px;
    }
}
@media (max-width: 1200px) {
    .img-about {
        right: -500px;
    }
}
@media (max-width: 1100px) {
    .img-about {
        right: -600px;
    }
}
@media (max-width: 991px) {
    .img-about {
        display: none;
    }
}
@media (max-width: 575px) {
    .container-hero-contact {
        padding-top: 10px;
    }
}
.container-hero-contact h2 {
    margin-bottom: 20px;
}
.wrapper-hero-contact {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .wrapper-hero-contact {
        flex-direction: column;
    }
}
.wrapper-hero-contact__content {
    width: 45%;
}
.wrapper-hero-contact__content .title {
    line-height: 1.4;
}
@media (max-width: 767px) {
    .wrapper-hero-contact__content .title {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-hero-contact__content .title {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
@media (max-width: 767px) {
    .wrapper-hero-contact__content {
        width: 100%;
    }
}
.wrapper-hero-contact__online {
    width: 50%;
    box-shadow:
        #091e4240 0 4px 8px -2px,
        #091e4214 0 0 0 1px;
    box-sizing: border-box;
    padding: 30px;
    border-radius: 4px 4px;
}
@media (max-width: 700px) {
    .wrapper-hero-contact__online {
        padding: 15px;
    }
}
.wrapper-hero-contact__online h3 {
    margin-bottom: 10px;
}
.wrapper-hero-contact__online .text {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .wrapper-hero-contact__online {
        width: 100%;
    }
}
.group-contact {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 30px 0;
}
@media (max-width: 575px) {
    .group-contact {
        padding: 15px 0;
    }
}
.group-contact__icon {
    width: 100%;
}
.group-contact__title {
    font-size: 18px;
    font-weight: 500;
}
.group-contact__text {
    font-weight: 400;
    margin-top: 4px;
}
.group-contact__link {
    display: flex;
    align-self: center;
    background-color: #28a8e9;
    border-radius: 10px 10px 10px 10px;
    box-sizing: border-box;
    padding: 14px 45px;
    color: #fff;
}
@media (max-width: 575px) {
    .group-contact__link {
        width: 49%;
        justify-content: center;
    }
}
.group-contact__link:not(:last-child) {
    margin-right: 10px;
    background-color: #2cb742;
}
.group-contact__img {
    margin-right: 10px;
}
.circle-contact {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px;
    margin-right: 10px;
}
@media (max-width: 575px) {
    .circle-contact {
        width: 45px;
        height: 45px;
    }
}
.group-contact:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.form-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-contact__input {
    width: 100%;
    height: 50px;
    margin-bottom: 12px;
    box-sizing: border-box;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 10px 10px;
}
@media (max-width: 575px) {
    .form-contact__input {
        height: 45px;
    }
}
.form-contact__file {
    display: none;
}
.form-contact__label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #eee;
    color: var(--color-black);
    box-sizing: border-box;
    padding: 10px;
    font-weight: 500;
    margin: 12px 0;
    cursor: pointer;
}
@media (max-width: 767px) {
    .form-contact__label {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1920);
    }
}
@media (min-width: 767px) {
    .form-contact__label {
        font-size: calc(16px + 0.1041666667vw);
    }
}
.form-contact__img {
    width: 30px;
}
.form-contact__item {
    display: flex;
    width: 100%;
    margin: 10px 0;
}
@media (max-width: 600px) {
    .form-contact__item {
        flex-direction: column;
    }
}
.btn-label {
    display: flex;
    justify-content: center;
    background-color: #fff;
    width: calc(33.333% - 10px);
    box-sizing: border-box;
    padding: 12px 20px;
    box-shadow:
        #0000000d 0 0 0 1px,
        #d1d5db 0 0 0 1px inset;
    border: 1px solid transparent;
}
@media (max-width: 600px) {
    .btn-label {
        width: 100%;
    }
}
.btn-label:not(:last-child) {
    margin-right: 15px;
}
@media (max-width: 600px) {
    .btn-label:not(:last-child) {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
.form-contact__item label {
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    cursor: pointer;
}
@media (max-width: 575px) {
    .form-contact__item label {
        width: 31.8%;
    }
}
.form-contact__item label::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    border: 1px solid #61a337;
    top: 1px;
    left: 10px;
}
.form-contact__item label:not(:last-child) {
    margin-right: 10px;
}
.form-contact__radio {
    display: none;
}
.form-contact__radio:checked + label::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #61a337;
    top: 4px;
    left: 13px;
}
.form-contact__text {
    text-align: center;
}
.form-contact .btn {
    width: 250px;
    margin: 10px auto;
}
@media (max-width: 575px) {
    .form-contact .btn {
        width: 100%;
    }
}
.forms-text {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
}
.footer-img {
    width: 100%;
    width: 150px;
}
.container-footer {
    padding-top: 30px;
    padding-bottom: 50px;
}
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
@media (max-width: 1082px) {
    .footer-content {
        flex-direction: column;
    }
}
.footer-content__logo {
    width: 25%;
}
@media (max-width: 1378px) {
    .footer-content__logo {
        width: 28%;
    }
}
@media (max-width: 1128px) {
    .footer-content__logo {
        width: 30%;
    }
}
@media (max-width: 1082px) {
    .footer-content__logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}
.footer-content .text {
    line-height: 1.4;
    margin-top: 10px;
}
.footer-logo__img {
    width: 200px;
}
.footer-menu {
    width: 35%;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1082px) {
    .footer-menu {
        width: 100%;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}
.footer-navigation__title {
    font-weight: 500;
}
@media (max-width: 767px) {
    .footer-navigation__title {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .footer-navigation__title {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
}
@media (max-width: 1082px) {
    .footer-list {
        margin-top: 0;
        margin-bottom: 20px;
    }
}
.footer-list__item {
    line-height: 1.8;
}
.footer-list__link {
    color: var(--color-white);
}
.footer-list__link:hover {
    text-decoration: underline;
}
.footer-contact {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    width: 30%;
}
@media (max-width: 1082px) {
    .footer-contact {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
.footer-contact__phone {
    font-weight: 500;
    color: var(--color-white);
}
.footer-contact__mail {
    font-weight: 400;
    color: var(--color-white);
}
.footer-contact__text {
    margin: 10px 0;
}
.footer-contact__adres {
    font-weight: 400;
}
.footer-contact__link {
    display: block;
    margin-top: 10px;
    color: var(--color-white);
}
.footer-contact .btn {
    display: block;
    width: 300px;
    text-transform: none;
    text-align: center;
    padding: 15px 20px;
    margin: 14px 0;
}
@media (max-width: 400px) {
    .footer-contact .btn {
        width: 100%;
        padding: 13px 20px;
    }
}
.developed {
    background-color: #474747;
    box-sizing: border-box;
    padding: 10px;
}
.developed__link {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
}
.developed__link:hover {
    text-decoration: underline;
}
.container-advantages {
    padding-top: 90px;
}
@media (max-width: 1239px) {
    .container-advantages {
        padding-top: 20px;
    }
}
@media (max-width: 630px) {
    .container-advantages {
        padding: 40px 15px;
        padding-top: 10px;
    }
}
.wrapper-advantages {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 1239px) {
    .wrapper-advantages {
        gap: 10px;
    }
}
.wrapper-advantages__item {
    background-color: #fff;
    width: calc(33.333% - 20px);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 20px;
    box-shadow:
        #00000029 0 10px 36px 0px,
        #0000000f 0 0 0 1px;
    margin-bottom: 10px;
}
@media (max-width: 1239px) {
    .wrapper-advantages__item {
        width: calc(33.333% - 10px);
    }
}
@media (max-width: 991px) {
    .wrapper-advantages__item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .wrapper-advantages__item {
        width: 100%;
    }
}
.wrapper-advantages__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #8bc867;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    border-radius: 4px;
    margin-bottom: 6px;
}
.wrapper-advantages__icon::before {
    content: "✔";
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}
.wrapper-advantages__title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}
.wrapper-advantages__text {
    line-height: 1.4;
}
@media (max-width: 767px) {
    .wrapper-advantages__text {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-advantages__text {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
.wrapper-advantages__item--active {
    background: #8bc867;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    position: relative;
}
.wrapper-advantages__item--active .btn {
    display: block;
    width: 250px;
    text-align: center;
    background: #fff;
    color: var(--color-black);
    padding: 16px 30px;
    margin: 0 auto;
}
@media (max-width: 1080px) {
    .wrapper-advantages__item--active .btn {
        width: 100%;
        text-align: center;
    }
}
.wrapper-advantages__img {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 1360px) {
    .wrapper-advantages__img {
        right: -20px;
    }
}
@media (max-width: 1180px) {
    .wrapper-advantages__img {
        width: 150px;
    }
}
@media (max-width: 1080px) {
    .wrapper-advantages__img {
        display: none;
    }
}
.name-brend {
    display: block;
    background-color: #fff;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    width: 240px;
    margin: 15px auto;
}
@media (max-width: 1360px) {
    .name-brend {
        padding: 16px;
        font-size: 16px;
    }
}
@media (max-width: 1080px) {
    .name-brend {
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .name-brend {
        margin-top: 0;
    }
}
.container-portfolio {
    padding: 50px 20px;
}
@media (max-width: 1239px) {
    .container-portfolio {
        padding-top: 20px;
    }
}
.container-portfolio h2 {
    font-weight: 500;
}
.container-portfolio h2 span {
    font-weight: 600;
}
.wrapper-portfolio {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .wrapper-portfolio {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}
.wrapper-portfolio__item:nth-child(1) {
    grid-column-start: span 2;
}
.wrapper-portfolio__item:nth-child(7) {
    grid-column-start: span 2;
}
@media (max-width: 767px) {
    .wrapper-portfolio__item:nth-child(8) {
        display: none;
    }
}
.wrapper-portfolio__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 100;
}
.modal:target {
    pointer-events: auto;
    opacity: 1;
}
.container-modal {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .container-modal {
        max-width: 98%;
    }
}
.modal-content {
    position: absolute;
    top: 50px;
    width: 650px;
    background-color: var(--color-white);
    border-radius: 4px 4px;
    box-sizing: border-box;
    padding: 20px;
}
@media (max-width: 700px) {
    .modal-content {
        top: 10px;
        width: 98%;
        padding: 10px;
    }
}
.title-modal {
    width: 80%;
    line-height: 1.35;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .title-modal {
        font-size: calc(22px + 17 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .title-modal {
        font-size: calc(22px + 10 * 100vw / 1900);
    }
}
@media (max-width: 700px) {
    .title-modal {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 10px;
        text-align: center;
    }
}
.close {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 500;
}
@media (max-width: 767px) {
    .close {
        font-size: calc(18px + 10.2 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .close {
        font-size: calc(18px + 6 * 100vw / 1900);
    }
}
.close::after {
    position: absolute;
    content: "✖";
    top: 20px;
    right: 20px;
}
.close:hover {
    color: #e92828;
}
.text-modal {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .text-modal {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .text-modal {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
@media (max-width: 700px) {
    .text-modal {
        margin-bottom: 10px;
        text-align: center;
    }
}
.form-modal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-modal__input {
    width: 49%;
    height: 48px;
    box-sizing: border-box;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #e1e1e1;
    background-color: #f5f5f5;
    border-radius: 10px 10px;
    outline: none;
}
@media (max-width: 575px) {
    .form-modal__input {
        width: 100%;
        height: 40px;
        padding: 10px;
    }
}
.form-modal__input:focus {
    border: 1px solid var(--logo-green);
}
.form-modal__input:nth-child(3) {
    width: 100%;
}
.form-modal__massage {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    background-color: #f5f5f5;
    border-radius: 10px 10px;
    box-sizing: border-box;
    padding: 10px 15px;
    resize: vertical;
    outline: none;
}
@media (max-width: 700px) {
    .form-modal__massage {
        height: 80px;
        padding: 10px;
    }
}
.form-modal__massage:focus {
    border: 1px solid var(--logo-green);
}
.form-modal .btn {
    width: 250px;
    padding: 14px 40px;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .form-modal .btn {
        width: 250px;
        padding: 12px 40px;
    }
}
@media (max-width: 500px) {
    .form-modal .btn {
        width: 100%;
    }
}
.text-form {
    text-align: center;
    line-height: 1.4;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .text-form {
        font-size: calc(14px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .text-form {
        font-size: calc(14px + 2 * 100vw / 1900);
    }
}
@media (max-width: 700px) {
    .text-form {
        margin-top: 10px;
    }
}
.text-form a {
    font-weight: 600;
}
.text-form a:hover {
    color: var(--logo-green);
}
.container-pages {
    padding-top: 50px;
    padding-bottom: 10px;
}
@media (max-width: 900px) {
    .container-pages {
        padding-top: 115px;
    }
}
@media (max-width: 400px) {
    .container-pages {
        padding-top: 75px;
        padding-bottom: 0;
    }
}
.pages-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .pages-wrapper {
        flex-wrap: wrap;
    }
}
.pages-wrapper__item {
    box-sizing: border-box;
    padding: 0 6px 0 0;
    font-weight: 400;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .pages-wrapper__item {
        font-size: calc(12px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .pages-wrapper__item {
        font-size: calc(12px + 4 * 100vw / 1900);
    }
}
@media (max-width: 575px) {
    .pages-wrapper__item {
        padding: 0 4px 0 0;
    }
}
.pages-wrapper__item:not(:last-child)::after {
    content: "»";
    padding-left: 3px;
    font-size: 18px;
    color: #000000a7;
}
@media (max-width: 575px) {
    .pages-wrapper__item:not(:last-child)::after {
        padding-left: 2px;
        font-size: 14px;
    }
}
.pages-wrapper__link {
    color: #000000a7;
}
.catalog--level {
    border-bottom: 1px solid #e1e1e1;
}
.container-catalog {
    padding-top: 30px;
}
.container-catalog .text span {
    font-weight: 600;
}
@media (max-width: 400px) {
    .container-catalog {
        padding-top: 20px;
    }
}
.container-catalog h3 {
    margin-top: 50px;
    margin-bottom: 30px;
}
@media (max-width: 400px) {
    .container-catalog h3 {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}
.container-catalog .wrapper-advantages {
    margin-top: 0;
    margin-bottom: 50px;
}
.wrapper-catalog {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin: 50px 0;
}
@media (max-width: 900px) {
    .wrapper-catalog {
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .wrapper-catalog {
        gap: 10px;
        margin-top: 30px;
    }
}
.wrapper-catalog--info {
    margin: 0;
}
.wrapper-catalog__item {
    width: calc(33.333% - 20px);
    background-color: var(--color-white);
    box-sizing: border-box;
    padding: 26px 20px;
    border-radius: 10px 10px;
    box-shadow:
        #00000029 0 10px 36px 0px,
        #0000000f 0 0 0 1px;
}
@media (max-width: 900px) {
    .wrapper-catalog__item {
        width: calc(50% - 15px);
        padding: 15px;
    }
}
@media (max-width: 600px) {
    .wrapper-catalog__item {
        width: calc(50% - 5px);
    }
}
@media (max-width: 530px) {
    .wrapper-catalog__item {
        width: 100%;
    }
}
.wrapper-catalog__link {
    display: block;
    text-align: center;
}
.wrapper-catalog__img {
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 30px;
}
@media (max-width: 1239px) {
    .wrapper-catalog__img {
        height: 190px;
    }
}
@media (max-width: 991px) {
    .wrapper-catalog__img {
        height: 150px;
    }
}
@media (max-width: 900px) {
    .wrapper-catalog__img {
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .wrapper-catalog__img {
        height: 120px;
    }
}
@media (max-width: 530px) {
    .wrapper-catalog__img {
        height: 250px;
    }
}
@media (max-width: 450px) {
    .wrapper-catalog__img {
        height: 200px;
    }
}
@media (max-width: 400px) {
    .wrapper-catalog__img {
        height: 160px;
    }
}
.wrapper-catalog__title {
    display: inline;
    text-align: center;
}
@media (max-width: 767px) {
    .wrapper-catalog__title {
        font-size: calc(20px + 5.1 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-catalog__title {
        font-size: calc(20px + 3 * 100vw / 1900);
    }
}
.wrapper-catalog__link:hover .wrapper-catalog__title {
    color: var(--logo-green);
    border-bottom: 1px dashed var(--logo-green);
}
.list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin: 16px 0;
}
.list__item {
    line-height: 1.3;
    box-sizing: border-box;
    padding-left: 18px;
    position: relative;
}
@media (max-width: 767px) {
    .list__item {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .list__item {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
.list__item::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 12px;
    height: 4px;
    background-color: var(--logo-green);
    border-radius: 20px 20px;
}
.list__item span {
    font-weight: 600;
}
.list__item:not(:last-child) {
    padding-bottom: 6px;
}
.title-menu {
    margin-bottom: 20px;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    color: var(--color-white);
    box-sizing: border-box;
    padding: 8px 6px;
    border-radius: 6px 6px;
}
@media (max-width: 767px) {
    .title-menu {
        font-size: calc(20px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .title-menu {
        font-size: calc(20px + 2 * 100vw / 1900);
    }
}
.menu-catalog-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu-catalog-list__item {
    overflow: hidden;
}
@media (max-width: 767px) {
    .menu-catalog-list__item {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .menu-catalog-list__item {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
.menu-catalog-list__item:not(:last-child) {
    margin-bottom: 3px;
}
.menu-catalog-list__link:hover {
    color: var(--logo-green);
}
.dropdown-menu-prod {
    position: relative;
}
.group-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 6px 4px;
    border: 1px solid #e1e1e1;
    border: transparent;
    border-bottom: 1px solid #e1e1e1;
}
.group-menu--active {
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 6px 6px;
}
.group-menu svg {
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}
.group-menu--active svg {
    transform: rotate(180deg);
}
.menu-product {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}
.menu-product-list {
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: var(--color-white);
    margin: 14px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #bfbfbf;
}
.menu-product-list__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    box-sizing: border-box;
    padding-left: 20px;
}
.menu-product-list__link:hover {
    color: var(--logo-green);
}
.wrapper-filter {
    display: flex;
    margin: 40px 0;
}
@media (max-width: 475px) {
    .wrapper-filter {
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0;
    }
}
.wrapper-filter__item {
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 10px 10px;
    cursor: pointer;
}
@media (max-width: 475px) {
    .wrapper-filter__item {
        width: calc(50% - 5px);
        margin-top: 10px;
    }
}
.wrapper-filter__item--active {
    background: #8bc867;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    color: var(--color-white);
    border: 1px solid #8bc867;
}
.wrapper-filter__item:not(:last-child) {
    margin-right: 16px;
}
@media (max-width: 475px) {
    .wrapper-filter__item:not(:last-child) {
        margin-right: 0;
    }
}
.wrapper-filter-page {
    display: flex;
    margin: 40px 0;
}
@media (max-width: 475px) {
    .wrapper-filter-page {
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0;
    }
}
.wrapper-filter-page__link {
    display: block;
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 10px 10px;
    cursor: pointer;
}
.wrapper-filter-page__link--active {
    background: #8bc867;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    color: var(--color-white);
    border: 1px solid #8bc867;
}
@media (max-width: 475px) {
    .wrapper-filter-page__link {
        width: calc(50% - 5px);
        margin-top: 10px;
    }
}
.wrapper-filter-page__link--active {
    background: #8bc867;
    background: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8bc867",endColorstr="#29a840",GradientType=1);
    color: var(--color-white);
    border: 1px solid #8bc867;
}
.wrapper-filter-page__link:not(:last-child) {
    margin-right: 16px;
}
@media (max-width: 475px) {
    .wrapper-filter-page__link:not(:last-child) {
        margin-right: 0;
    }
}
.wrapper-product {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .wrapper-product {
        gap: 10px;
    }
}
.wrapper-product__item {
    width: calc(33.333% - 15px);
    box-shadow:
        #00000029 0 10px 36px 0px,
        #0000000f 0 0 0 1px;
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px 10px;
    position: relative;
}
@media (max-width: 1239px) {
    .wrapper-product__item {
        padding: 15px;
    }
}
@media (max-width: 991px) {
    .wrapper-product__item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 900px) {
    .wrapper-product__item {
        width: calc(50% - 5px);
    }
}
@media (max-width: 575px) {
    .wrapper-product__item {
        width: 100%;
    }
}
.wrapper-product__item svg {
    fill: #000;
}
.wrapper-product__link:hover {
    color: var(--logo-green);
}
.wrapper-product__img {
    width: 100%;
}
.wrapper-product__title {
    text-align: center;
    margin-top: 14px;
    border-bottom: 1px dashed transparent;
}
@media (max-width: 767px) {
    .wrapper-product__title {
        font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-product__title {
        font-size: calc(18px + 2 * 100vw / 1900);
    }
}
@media (max-width: 500px) {
    .wrapper-product__title {
        margin-top: 10px;
    }
}
.btn-default {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    font-size: 0;
}
.btn-favourites {
    cursor: pointer;
}
.list-product {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 20px;
}
@media (max-width: 600px) {
    .list-product {
        margin-top: 10px;
    }
}
.list-product__item {
    display: flex;
    justify-content: space-between;
    line-height: 1.5;
}
.list-product__name {
    color: #6d6d6d;
}
.title-product {
    font-weight: 500;
}
@media (max-width: 767px) {
    .title-product {
        font-size: calc(22px + 30.6 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .title-product {
        font-size: calc(22px + 18 * 100vw / 1900);
    }
}
.wrapper-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}
@media (max-width: 767px) {
    .wrapper-info {
        flex-direction: column;
        margin-top: 20px;
    }
}
.wrapper-info__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 15px);
    border: 1px solid #e1e1e1;
    border-radius: 6px 6px;
}
@media (max-width: 991px) {
    .wrapper-info__slider {
        width: calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .wrapper-info__slider {
        width: 100%;
    }
}
.wrapper-info__img {
    width: 100%;
}
.wrapper-info__content {
    width: calc(50% - 15px);
}
@media (max-width: 991px) {
    .wrapper-info__content {
        width: calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .wrapper-info__content {
        width: 100%;
        margin-top: 20px;
    }
}
.wrapper-info__title {
    font-weight: 500;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .wrapper-info__title {
        font-size: calc(18px + 10.2 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-info__title {
        font-size: calc(18px + 6 * 100vw / 1900);
    }
}
@media (max-width: 575px) {
    .wrapper-info__title {
        margin-bottom: 12px;
    }
}
.wrapper-info__text {
    color: #888;
}
.list-options {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .list-options {
        font-size: calc(14px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .list-options {
        font-size: calc(14px + 2 * 100vw / 1900);
    }
}
@media (max-width: 575px) {
    .list-options {
        gap: 6px;
        margin-top: 15px;
    }
}
.list-options__item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #bfbfbf;
}
.list-options__name {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    font-weight: 500;
}
.list-options__text {
    max-width: 270px;
    text-align: end;
    margin: 0;
    margin-left: 6px;
}
.list-options__text--sostav {
    max-width: 405px;
    margin-left: 0;
}
@media (max-width: 400px) {
    .list-options__text {
        max-width: 200px;
    }
}
.desc-product {
    margin-top: 20px;
}
.desc-product__title {
    color: #000000a7;
    margin-bottom: 4px;
}
.desc-product__text {
    line-height: 1.35;
}
.group-btn {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
@media (max-width: 455px) {
    .group-btn {
        flex-direction: column;
        margin-top: 20px;
    }
}
.group-btn .btn {
    padding: 12px 25px;
}
@media (max-width: 930px) {
    .group-btn .btn {
        padding: 12px 15px;
    }
}
@media (max-width: 455px) {
    .group-btn .btn {
        width: 100%;
        margin-top: 20px;
    }
}
.counter {
    display: flex;
    width: 200px;
    border: 1px solid #e7e7e7;
    margin-right: 20px;
    border-radius: 4px 4px;
    color: #3a3a3a;
}
@media (max-width: 930px) {
    .counter {
        margin-right: 10px;
    }
}
@media (max-width: 455px) {
    .counter {
        margin-right: 0;
    }
}
.counter__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.333%;
    color: #3a3a3a;
    height: 44px;
    text-align: center;
}
.counter__item button {
    background-color: transparent;
    color: #3a3a3a;
    border: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.counter__item button:hover {
    background-color: #e7e7e7;
}
.counter__item:nth-child(2) {
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
}
.btn-basket:disabled {
    background: #575757;
    color: var(--color-white);
    cursor: no-drop;
}
.tab {
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid #e7e7e7;
    margin-top: 40px;
}
@media (max-width: 600px) {
    .tab {
        flex-direction: column;
        margin-top: 30px;
    }
}
.tab button {
    display: flex;
    align-items: center;
    background-color: inherit;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 14px 16px;
    color: #3a3a3a;
    transition: 0.3s;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
@media (max-width: 600px) {
    .tab button {
        padding: 10px;
    }
}
.tab button svg {
    margin-right: 10px;
}
.tab button:hover {
    background-color: #f1f1f1;
}
.tab button.active {
    border-bottom: 2px solid var(--logo-green);
}
.tabcontent {
    display: none;
    padding: 14px 0;
    border-top: none;
}
.tabcontent h3 {
    margin: 20px 0;
}
@media (max-width: 600px) {
    .tabcontent h3 {
        margin: 10px 0;
    }
}
.tabcontent p {
    font-size: 16px;
}
.tabcontent p a {
    display: block;
}
.list-info__item {
    line-height: 1.5;
}
.wrapper-info-klient {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
    margin-bottom: 80px;
}
@media (max-width: 991px) {
    .wrapper-info-klient {
        margin-top: 10px;
        margin-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .wrapper-info-klient {
        margin-bottom: 40px;
    }
}
.wrapper-info-klient__item {
    width: calc(25% - 15px);
    text-align: center;
    background-color: var(--color-white);
    box-shadow:
        #00000029 0 10px 36px 0px,
        #0000000f 0 0 0 1px;
    box-sizing: border-box;
    padding: 25px 30px;
    border-radius: 6px 6px;
}
@media (max-width: 1239px) {
    .wrapper-info-klient__item {
        padding: 15px;
        width: calc(25% - 10px);
    }
}
@media (max-width: 991px) {
    .wrapper-info-klient__item {
        width: calc(50% - 5px);
        margin-top: 10px;
    }
}
@media (max-width: 575px) {
    .wrapper-info-klient__item {
        padding: 10px;
    }
}
.wrapper-info-klient__img {
    width: 40px;
    margin-bottom: 4px;
}
@media (max-width: 575px) {
    .wrapper-info-klient__img {
        width: 35px;
    }
}
.wrapper-info-klient__text {
    line-height: 1.35;
}
@media (max-width: 767px) {
    .wrapper-info-klient__text {
        font-size: calc(14px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-info-klient__text {
        font-size: calc(14px + 4 * 100vw / 1900);
    }
}
.swiper .swiper-slide--card {
    position: relative;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px 10px;
}
@media (max-width: 600px) {
    .swiper .swiper-slide--card {
        padding: 10px;
    }
}
.swiper-slide__img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 10px;
}
@media (max-width: 1300px) {
    .swiper-slide__img {
        height: 170px;
    }
}
@media (max-width: 1267px) {
    .swiper-slide__img {
        height: 280px;
    }
}
@media (max-width: 1200px) {
    .swiper-slide__img {
        height: 250px;
    }
}
@media (max-width: 1150px) {
    .swiper-slide__img {
        height: 230px;
    }
}
@media (max-width: 1050px) {
    .swiper-slide__img {
        height: 200px;
    }
}
@media (max-width: 900px) {
    .swiper-slide__img {
        height: 180px;
    }
}
@media (max-width: 780px) {
    .swiper-slide__img {
        height: 240px;
    }
}
@media (max-width: 756px) {
    .swiper-slide__img {
        height: 290px;
    }
}
@media (max-width: 540px) {
    .swiper-slide__img {
        height: 240px;
    }
}
@media (max-width: 400px) {
    .swiper-slide__img {
        height: 180px;
    }
}
.swiper-slide__title {
    margin-bottom: 16px;
    display: block;
    text-align: center;
}
@media (max-width: 767px) {
    .swiper-slide__title {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .swiper-slide__title {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
@media (max-width: 1300px) {
    .swiper-slide__title {
        margin-top: 30px;
    }
}
@media (max-width: 500px) {
    .swiper-slide__title {
        margin-top: 0;
    }
}
.swiper-slide__title:hover {
    color: var(--logo-green);
}
.slider-text {
    text-align: left;
    line-height: 1.4;
}
.slider-text:last-child {
    margin-bottom: 18px;
}
.slide-category {
    opacity: 0;
}
.swiper-pagination {
    margin-top: 30px;
}
.accordion {
    background-color: var(--color-white);
    border: 1px solid #e1e1e1;
    border-radius: 6px 6px;
    padding: 18px;
    color: #3a3a3a;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    cursor: pointer;
}
@media (max-width: 767px) {
    .accordion {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .accordion {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
@media (max-width: 600px) {
    .accordion {
        padding: 10px 5px;
    }
}
.accordion:not(:last-child) {
    margin-bottom: 14px;
}
@media (max-width: 600px) {
    .accordion:not(:last-child) {
        margin-bottom: 10px;
    }
}
.active-accordion,
.accordion:hover {
    background-color: #f5f5f5;
}
.accordion:after {
    content: "+";
    color: #777;
    font-weight: 700;
    float: right;
    margin-left: 5px;
}
.active-accordion:after {
    content: "−";
}
.panel {
    padding: 0 18px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.container-basket {
    padding-top: 40px;
}
@media (max-width: 991px) {
    .container-basket {
        padding-top: 20px;
        padding-bottom: 30px;
    }
}
.container-basket h1 {
    font-weight: 500;
}
@media (max-width: 767px) {
    .container-basket h1 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .container-basket h1 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
.wrapper-basket-page {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px 0;
}
@media (max-width: 991px) {
    .wrapper-basket-page {
        margin: 30px 0;
        flex-direction: column-reverse;
    }
}
.basket-list {
    width: calc(100% - 390px);
}
@media (max-width: 1239px) {
    .basket-list {
        width: calc(100% - 360px);
    }
}
@media (max-width: 991px) {
    .basket-list {
        width: 100%;
    }
}
.basket-scroll {
    max-height: 370px;
    background-color: var(--color-white);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 4px 10px 10px 2px;
    transition: max-height 0.05s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: #777;
    scroll-behavior: smooth;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .basket-scroll {
        max-height: 500px;
    }
}
.list-product-basket {
    width: 100%;
}
.list-product-basket__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--color-white);
    box-shadow:
        #0000000d 0 6px 24px 0px,
        #00000014 0 0 0 1px;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 5px 5px;
}
@media (max-width: 1239px) {
    .list-product-basket__item {
        padding: 10px;
    }
}
@media (max-width: 767px) {
    .list-product-basket__item {
        padding-top: 0;
        flex-direction: column;
        position: relative;
    }
}
.list-product-basket__item:not(:last-child) {
    margin-bottom: 16px;
}
.list-product-basket__img {
    width: 120px;
    height: 70px;
    border: 1px solid #e1e1e1;
    border-radius: 4px 4px;
}
@media (max-width: 1239px) {
    .list-product-basket__img {
        width: 100px;
        height: 60px;
    }
}
@media (max-width: 767px) {
    .list-product-basket__img {
        width: 100%;
        height: auto;
        border: 1px solid transparent;
    }
}
.list-product-basket__content {
    width: calc(100% - 400px);
    margin-left: 20px;
}
@media (max-width: 1239px) {
    .list-product-basket__content {
        width: calc(100% - 340px);
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .list-product-basket__content {
        width: 100%;
        margin: 10px;
    }
}
.list-product-basket__title {
    margin-bottom: 6px;
}
@media (max-width: 767px) {
    .list-product-basket__title {
        font-size: calc(16px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .list-product-basket__title {
        font-size: calc(16px + 4 * 100vw / 1900);
    }
}
.list-product-basket__art {
    color: #888;
}
@media (max-width: 1239px) {
    .list-product-basket .counter {
        margin-right: 10px;
    }
}
.link-product:hover {
    color: var(--logo-green);
    border-bottom: 1px dashed var(--logo-green);
}
.counter {
    width: 150px;
    margin-right: 60px;
    color: #3a3a3a;
}
@media (max-width: 455px) {
    .counter {
        margin-right: 0;
    }
}
.delete-product {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 2px 2px;
    box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
}
.delete-product::before {
    content: "✖";
}
.delete-product:hover {
    transition: all 0.05s ease-in-out;
    background: #f05151;
    border: 1px solid #f05151;
    color: var(--color-white);
}
@media (max-width: 767px) {
    .delete-product {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}
.basket-info {
    width: 350px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    position: sticky;
    top: 80px;
}
@media (max-width: 991px) {
    .basket-info {
        display: none;
        width: 100%;
    }
}
.basket-info h3 {
    margin-bottom: 14px;
}
@media (max-width: 767px) {
    .basket-info h3 {
        font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .basket-info h3 {
        font-size: calc(18px + 4 * 100vw / 1900);
    }
}
.wrapper-all-products__content {
    display: flex;
    justify-content: space-between;
}
.wrapper-social-basket {
    margin-top: 24px;
}
.wrapper-social-basket .btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
}
.group-social-basket {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #d7d9dc;
    margin-top: 18px;
    width: 100%;
}
.group-social-basket__text {
    font-size: 16px;
    line-height: 1.4;
}
.group-social-basket__item {
    display: flex;
    align-items: center;
    margin-left: 10px;
    width: calc(40% - 10px);
}
.social-basket-link {
    text-decoration: none;
}
.social-basket-link img {
    width: 38px;
}
@media (max-width: 1180px) {
    .social-basket-link img {
        width: 35px;
    }
}
.social-basket-link:not(:last-child) {
    display: block;
    margin-right: 10px;
}
.form-basket {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}
.form-basket__input {
    width: 49%;
    height: 50px;
    box-sizing: border-box;
    padding: 14px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 6px 6px;
    outline-color: #60a3377c;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .form-basket__input {
        width: 100%;
        margin-bottom: 10px;
        height: 40px;
    }
}
.form-basket__input--first {
    width: 100%;
}
.form-basket__massage {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    padding: 14px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 6px 6px;
    resize: vertical;
    outline-color: #60a3377c;
}
@media (max-width: 575px) {
    .form-basket__massage {
        width: 100%;
        margin-bottom: 0;
        padding: 10px;
        height: 90px;
    }
}
.form-basket .btn {
    padding: 14px 30px;
}
@media (max-width: 500px) {
    .form-basket .btn {
        width: 100%;
        padding: 12px 30px;
    }
}
.group-form {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
}
.form-basket__checkbox {
    display: none;
}
.label-basket {
    display: block;
    margin: 10px 0;
    margin-top: 30px;
    box-sizing: border-box;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}
.label-basket--contact {
    margin: 0;
}
@media (max-width: 500px) {
    .label-basket {
        margin-top: 10px;
    }
}
.label-basket::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid #bfbfbf;
    top: -2px;
    left: 0;
    border-radius: 3px;
}
.label-basket a {
    color: var(--logo-green);
    font-weight: 500;
}
.form-basket__checkbox:checked + .label-basket::after {
    position: absolute;
    content: "✔";
    top: -1px;
    left: 4px;
    color: var(--logo-green);
    font-weight: 500;
    font-size: 18px;
}
.container-contact {
    padding-top: 40px;
}
.wrapper-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .wrapper-contact {
        flex-direction: column;
        margin-top: 30px;
    }
}
.wrapper-contact__content {
    width: calc(50% - 15px);
}
@media (max-width: 900px) {
    .wrapper-contact__content {
        width: 100%;
    }
}
.wrapper-contact__locations {
    width: calc(50% - 15px);
}
@media (max-width: 900px) {
    .wrapper-contact__locations {
        width: 100%;
        margin-top: 20px;
    }
}
.wrap-group-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px 0;
}
.wrap-group-contact__info {
    text-align: right;
}
.wrap-group-contact__text {
    line-height: 1.4;
}
.wrap-group-contact:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
}
.title-contact {
    font-size: 18px;
    font-weight: 500;
}
.contact-phone {
    display: block;
    line-height: 1.4;
}
.contact-email {
    display: block;
    line-height: 1.4;
}
.contact-social {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}
.contact-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 2px 2px;
}
.contact-social__link:not(:last-child) {
    margin-right: 10px;
}
.contact-social__img {
    width: 16px;
}
#map {
    width: 100%;
    height: 260px;
}
@media (max-width: 900px) {
    #map {
        height: 300px;
    }
}
@media (max-width: 450px) {
    #map {
        height: 250px;
    }
}
.link-partner {
    display: flex;
    align-items: center;
    color: #348bdc;
    box-sizing: border-box;
    padding: 3px 4px;
    border-radius: 2px 2px;
    border: 1px solid transparent;
}
.link-partner svg {
    margin-left: 4px;
}
.link-partner:hover {
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    text-decoration: underline;
}
.wrapper-form {
    margin-top: 60px;
    background: linear-gradient(180deg, #edf4f0, #edf4ee 53.66%, #f5f5f5);
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 30px;
}
@media (max-width: 575px) {
    .wrapper-form {
        padding: 10px;
        margin-top: 40px;
    }
}
.wrapper-form h3 {
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .wrapper-form h3 {
        font-size: calc(22px + 17 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-form h3 {
        font-size: calc(22px + 0.5263157895vw);
    }
}
.form-cont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-cont__item {
    width: 49%;
}
@media (max-width: 991px) {
    .form-cont__item {
        width: 100%;
    }
}
.form-cont__input {
    background: #fff;
    border: 1px solid #1b2b454f;
    border-radius: 6px;
    line-height: 21px;
    outline: none;
    box-sizing: border-box;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 10px;
}
.form-cont__input:focus {
    border: 1px solid var(--logo-green);
}
.form-cont__massage {
    background: #fff;
    border: 1px solid #1b2b454f;
    border-radius: 6px;
    line-height: 21px;
    outline: none;
    box-sizing: border-box;
    padding: 10px 15px;
    resize: vertical;
    width: 100%;
    height: calc(100% - 10px);
    margin-bottom: 10px;
}
@media (max-width: 400px) {
    .form-cont__massage {
        height: 110px;
    }
}
.form-cont__massage:focus {
    border: 1px solid var(--logo-green);
}
.form-cont__group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}
.form-cont__group .btn {
    padding: 12px 40px;
    margin-right: 10px;
}
@media (max-width: 1317px) {
    .form-cont__group .btn {
        padding: 12px 30px;
    }
}
.form-cont__text {
    font-size: 14px;
    line-height: 1.4;
}
@media (max-width: 1400px) {
    .form-cont__text span {
        font-size: 14px;
    }
}
.form-cont__text a {
    font-weight: 400;
    text-decoration: underline;
}
@media (max-width: 1276px) {
    .form-cont__item:nth-child(3) .form-cont__group {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .form-cont__item:nth-child(3) .form-cont__group .btn {
        padding: 12px 40px;
        margin-bottom: 10px;
    }
}
.form-cont__item:nth-child(4) .form-cont__group {
    width: 340px;
}
@media (max-width: 991px) {
    .form-cont__item:nth-child(4) .form-cont__group {
        margin: 0 auto;
        margin-top: 20px;
    }
}
@media (max-width: 575px) {
    .form-cont__item:nth-child(4) .form-cont__group {
        width: 100%;
    }
}
.form-link {
    display: inline-block;
}
.form-link:not(:last-child) {
    margin-right: 10px;
}
.blog {
    border-bottom: 1px solid #e1e1e1;
}
.container-blog {
    padding-top: 30px;
}
.container-blog h1 {
    font-weight: 500;
}
@media (max-width: 767px) {
    .container-blog h1 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .container-blog h1 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
.blog .text span {
    font-weight: 500;
}
.wrapper-blog {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 767px) {
    .wrapper-blog {
        margin-top: 30px;
    }
}
.wrapper-blog__item {
    width: calc(33.333% - 16px);
    border: 1px solid #e1e1e1;
    border-radius: 6px 6px;
}
@media (max-width: 991px) {
    .wrapper-blog__item {
        width: calc(50% - 16px);
    }
}
@media (max-width: 767px) {
    .wrapper-blog__item {
        width: 100%;
    }
}
.wrapper-blog__link:hover {
    color: #61a337;
}
.wrapper-blog__img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 6px 6px 0 0;
}
@media (max-width: 1239px) {
    .wrapper-blog__img {
        height: 220px;
    }
}
.wrapper-blog__title {
    line-height: 1.3;
    box-sizing: border-box;
    padding: 10px;
}
@media (max-width: 767px) {
    .wrapper-blog__title {
        font-size: calc(20px + 5.1 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-blog__title {
        font-size: calc(20px + 3 * 100vw / 1900);
    }
}
@media (max-width: 1239px) {
    .wrapper-blog__title {
        padding: 4px 10px;
    }
}
.wrapper-blog__text p {
    font-size: 16px;
    box-sizing: border-box;
    padding: 10px;
    line-height: 1.35;
}
.group-blog {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}
.group-blog__icon {
    margin-right: 10px;
}
.group-blog__text {
    color: #888;
}
.blog-info {
    border-bottom: 1px solid #e1e1e1;
}
.container-blog-info {
    padding-top: 40px;
}
.container-blog-info h1 {
    font-weight: 500;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .container-blog-info h1 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .container-blog-info h1 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
.container-blog-info h3 {
    margin: 30px 0 10px;
}
.container-blog-info .text span {
    font-weight: 500;
}
@media (max-width: 991px) {
    .container-blog-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.img-blog-info {
    width: 450px;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
    float: right;
    margin: 0 0 15px 20px;
    border-radius: 4px;
}
@media (max-width: 991px) {
    .img-blog-info {
        width: 340px;
        height: 250px;
    }
}
.img-blog-info--about {
    width: 520px;
}
@media (max-width: 767px) {
    .img-blog-info {
        width: 300px;
        height: 200px;
    }
}
@media (max-width: 575px) {
    .img-blog-info {
        width: 100%;
        height: 250px;
        float: none;
        margin: 0 0 15px;
    }
}
.company--error {
    border-bottom: 1px solid #e1e1e1;
}
.container-company {
    padding-top: 40px;
    padding-bottom: 60px;
}
.container-company h1 {
    font-weight: 500;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .container-company h1 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .container-company h1 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
.container-company h2 {
    margin-bottom: 30px;
}
.container-company h3 {
    margin: 26px 0 10px;
}
.wrapper-company {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .wrapper-company {
        flex-direction: column;
    }
}
.wrapper-company__content {
    width: calc(50% - 15px);
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .wrapper-company__content {
        width: 100%;
        margin-bottom: 16px;
    }
}
.wrapper-company__content .btn {
    margin-top: 20px;
}
@media (max-width: 575px) {
    .wrapper-company__content .btn {
        width: 100%;
        text-align: center;
    }
}
.wrapper-company__photo {
    width: calc(50% - 15px);
}
@media (max-width: 991px) {
    .wrapper-company__photo {
        width: 100%;
    }
}
.wrapper-grid {
    display: grid;
    grid-template-rows: 228px 228px;
    grid-template-columns: 50% 50%;
    gap: 20px;
}
@media (max-width: 1239px) {
    .wrapper-grid {
        grid-template-rows: 200px 200px;
    }
}
@media (max-width: 767px) {
    .wrapper-grid {
        grid-template-rows: 150px 150px;
    }
}
@media (max-width: 575px) {
    .wrapper-grid {
        grid-template-rows: 120px 120px;
    }
}
.wrapper-grid .item-grid-0 {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
    border-radius: 4px 4px;
}
.wrapper-grid .item-grid-1 {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
    border-radius: 4px 4px;
}
.wrapper-grid .item-grid-2 {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
    border-radius: 4px 4px;
}
.wrapper-grid__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px 4px;
}
.wrapper-sertifikat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    padding: 14px 20px;
    border-radius: 6px 6px;
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
}
@media (max-width: 767px) {
    .wrapper-sertifikat {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-sertifikat {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
@media (max-width: 1239px) {
    .wrapper-sertifikat {
        padding: 10px;
    }
}
@media (max-width: 820px) {
    .wrapper-sertifikat {
        padding-bottom: 10px;
        flex-direction: column;
    }
}
.wrapper-sertifikat__name {
    display: flex;
    align-items: center;
    width: 70%;
}
@media (max-width: 1100px) {
    .wrapper-sertifikat__name {
        width: 65%;
    }
}
@media (max-width: 820px) {
    .wrapper-sertifikat__name {
        width: 100%;
    }
}
.wrapper-sertifikat__img {
    width: 30px;
    margin-right: 10px;
}
.wrapper-sertifikat__save {
    display: flex;
    justify-content: space-between;
    width: 25%;
}
@media (max-width: 1100px) {
    .wrapper-sertifikat__save {
        width: 30%;
    }
}
@media (max-width: 820px) {
    .wrapper-sertifikat__save {
        width: 100%;
        justify-content: flex-start;
    }
}
.wrapper-sertifikat:not(:last-child) {
    margin-bottom: 10px;
}
.file-link {
    display: flex;
    align-items: center;
}
.file-link:hover {
    color: #61a337;
    text-decoration: underline;
}
@media (max-width: 820px) {
    .file-link {
        margin-right: 20px;
    }
}
.svg-save {
    width: 20px;
    margin-left: 8px;
    fill: #3a3a3a;
}
.svg-see {
    width: 22px;
    margin-left: 8px;
    stroke: #3a3a3a;
}
.file-link:hover .svg-save {
    fill: #61a337;
}
.file-link:hover .svg-see {
    stroke: #61a337;
}
.project {
    border-bottom: 1px solid #e1e1e1;
}
.container-project {
    padding-top: 30px;
    padding-bottom: 50px;
}
.container-project h1 {
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}
@media (max-width: 767px) {
    .container-project h1 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .container-project h1 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
.wrapper-project {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.wrapper-project__item {
    width: calc(33.333% - 15px);
    overflow: hidden;
}
@media (max-width: 991px) {
    .wrapper-project__item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 575px) {
    .wrapper-project__item {
        width: 100%;
    }
}
.wrapper-project__link {
    position: relative;
}
.wrapper-project__link::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #000000d9 13%, #00000080 47%, #00000008 100%);
    width: 100%;
    height: 150px;
    z-index: 10;
}
.wrapper-project__img {
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.35s ease-in-out;
}
@media (max-width: 1239px) {
    .wrapper-project__img {
        height: 290px;
    }
}
@media (max-width: 767px) {
    .wrapper-project__img {
        height: 250px;
    }
}
@media (max-width: 575px) {
    .wrapper-project__img {
        height: 290px;
    }
}
@media (max-width: 400px) {
    .wrapper-project__img {
        height: 270px;
    }
}
.wrapper-project__img:hover {
    transform: scale(1.2);
}
.wrapper-project__title {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 35px;
    text-align: center;
    color: #fff;
    z-index: 11;
}
@media (max-width: 767px) {
    .wrapper-project__title {
        font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-project__title {
        font-size: calc(20px + 4 * 100vw / 1900);
    }
}
.container-project-slider {
    position: relative;
}
.mySlides {
    display: none;
}
.mySlides img {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 520px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1239px) {
    .mySlides img {
        width: 100%;
        height: 450px;
    }
}
@media (max-width: 991px) {
    .mySlides img {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .mySlides img {
        height: 350px;
    }
}
@media (max-width: 575px) {
    .mySlides img {
        height: 300px;
    }
}
@media (max-width: 400px) {
    .mySlides img {
        height: 270px;
    }
}
.cursor {
    cursor: pointer;
}
.wrapper-btn-project {
    width: 80%;
    margin: 0 auto;
}
@media (max-width: 1239px) {
    .wrapper-btn-project {
        width: 100%;
    }
}
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}
.next {
    right: 10%;
    border-radius: 3px 0 0 3px;
}
@media (max-width: 1239px) {
    .next {
        right: 0;
    }
}
.prev:hover,
.next:hover {
    background-color: #000c;
}
.row-project {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 0 auto;
    margin-top: 20px;
    width: 80%;
    overflow-x: auto;
}
@media (max-width: 1239px) {
    .row-project {
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }
}
.column {
    width: calc(25% - 15px);
    margin: 0;
}
@media (max-width: 767px) {
    .column {
        width: calc(25% - 10px);
    }
}
.column img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1239px) {
    .column img {
        height: 120px;
    }
}
@media (max-width: 767px) {
    .column img {
        height: 70px;
    }
}
@media (max-width: 400px) {
    .column img {
        height: 70px;
    }
}
.demo {
    opacity: 0.6;
}
.active,
.demo:hover {
    opacity: 1;
}
#title-404 {
    text-align: center;
}
@media (max-width: 767px) {
    #title-404 {
        font-size: calc(45px + 161.5 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    #title-404 {
        font-size: calc(45px + 95 * 100vw / 1900);
    }
}
.wrapper-error {
    background-color: #f5f5f6;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    padding: 40px 30px;
    border-radius: 8px 8px;
    width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 1100px) {
    .wrapper-error {
        width: 100%;
        margin: 0;
        margin-top: 40px;
    }
}
.wrapper-error h1 {
    margin-bottom: 10px;
}
.wrapper-error__text {
    line-height: 1.7;
}
@media (max-width: 767px) {
    .wrapper-error__text {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-error__text {
        font-size: calc(16px + 0.1052631579vw);
    }
}
.wrapper-error__text a {
    color: var(--logo-green);
    font-weight: 500;
}
.wrapper-error__text a:hover {
    text-decoration: underline;
}
.btn-error {
    margin-top: 40px;
}
.btn-error .btn {
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px 8px;
    border: 1px solid transparent;
    margin-right: 14px;
}
.btn-error__line {
    border: 1px solid #2cb742;
    box-sizing: border-box;
    padding: 14px 20px;
    border-radius: 8px 8px;
    font-size: 16px;
}
.main-catalog {
    border-bottom: 1px solid #e1e1e1;
}
.container-main-catalog {
    padding-top: 30px;
}
h1 {
    font-weight: 500;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    h1 {
        font-size: calc(28px + 20.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    h1 {
        font-size: calc(28px + 12 * 100vw / 1900);
    }
}
@media (max-width: 767px) {
    h1 {
        margin-bottom: 30px;
    }
}
.wrapper-main-catalog {
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
}
@media (max-width: 991px) {
    .wrapper-main-catalog {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .wrapper-main-catalog {
        margin: 20px 0;
    }
}
.wrapper-main-catalog__item {
    width: 32%;
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 20px 20px;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 1239px) {
    .wrapper-main-catalog__item {
        height: 400px;
    }
}
@media (max-width: 991px) {
    .wrapper-main-catalog__item {
        width: 48%;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .wrapper-main-catalog__item {
        width: 100%;
        margin-bottom: 20px;
        height: auto;
        border: 1px solid #e1e1e1;
    }
}
.wrapper-main-catalog__header {
    position: absolute;
    height: 480px;
}
@media (max-width: 1239px) {
    .wrapper-main-catalog__header {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .wrapper-main-catalog__header {
        position: static;
        height: auto;
    }
}
.wrapper-main-catalog__img {
    position: relative;
    width: 100%;
    height: 480px;
    -o-object-fit: cover;
    object-fit: cover;
    object-fit: cover;
    border-radius: 20px 20px;
    z-index: 0;
    transition: height 0.35s ease-in-out;
}
@media (max-width: 1239px) {
    .wrapper-main-catalog__img {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .wrapper-main-catalog__img {
        position: static;
        height: 200px;
    }
}
.wrapper-main-catalog__title {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: var(--color-white);
    z-index: 10;
}
@media (max-width: 767px) {
    .wrapper-main-catalog__title {
        font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-main-catalog__title {
        font-size: calc(18px + 2 * 100vw / 1900);
    }
}
@media (max-width: 767px) {
    .wrapper-main-catalog__title {
        top: 150px;
    }
}
.wrapper-main-catalog__content {
    width: 100%;
    height: 50%;
    box-sizing: border-box;
    padding: 15px;
    scrollbar-width: thin;
    scrollbar-color: #777 #eee;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: scroll;
}
@media (max-width: 767px) {
    .wrapper-main-catalog__content {
        height: auto;
    }
}
.main-catalog-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-catalog-list__item {
    line-height: 1.3;
}
.main-catalog-list__link {
    color: #575757;
}
.main-catalog-list__link:hover {
    color: #2cb742;
    border-bottom: 1px dashed #2cb742;
}
.catalog-mask:hover {
    border: 1px solid #e1e1e1;
}
@media (min-width: 767px) {
    .catalog-mask:hover .wrapper-main-catalog__img {
        top: -30%;
        height: 80%;
    }
    .catalog-mask:hover .wrapper-main-catalog__title {
        top: 40%;
    }
    .catalog-mask:hover .wrapper-main-catalog__content {
        position: absolute;
        bottom: 0;
        z-index: 10;
    }
}
.wrapper-news {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.wrapper-news__item {
    width: calc(33.333% - 15px);
    box-sizing: border-box;
    padding: 14px;
    border-radius: 6px 6px;
    box-shadow:
        #00000029 0 10px 36px 0px,
        #0000000f 0 0 0 1px;
    background: #fff;
    position: relative;
}
@media (max-width: 1240px) {
    .wrapper-news__item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 767px) {
    .wrapper-news__item {
        width: 100%;
    }
}
.wrapper-news__link {
    display: block;
    overflow: hidden;
}
.wrapper-news__img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px 4px;
    transition: transform 0.2s ease-in-out;
}
@media (max-width: 400px) {
    .wrapper-news__img {
        height: 200px;
    }
}
.wrapper-news__title {
    font-weight: 500;
    text-align: center;
    margin: 10px 0;
}
@media (max-width: 767px) {
    .wrapper-news__title {
        font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-news__title {
        font-size: calc(16px + 2 * 100vw / 1900);
    }
}
.wrapper-news__text {
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.wrapper-news__text p {
    font-size: 16px;
}
.date-public {
    position: absolute;
    padding: 0 16px;
    background: #f5f5f7;
    border-radius: 15px;
    color: #737373;
    font-size: 12px;
    line-height: 30px;
    left: 30px;
    top: 25px;
    z-index: 1;
}
.wrapper-news__link:hover .wrapper-news__img {
    transform: scale(1.2);
}
.link-news:hover {
    color: #61a337;
}
.container-news {
    max-width: 1000px;
    margin: 0 auto;
}
.news-img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;
    margin: 20px 0;
}
@media (max-width: 991px) {
    .news-img {
        height: 300px;
    }
}
@media (max-width: 450px) {
    .news-img {
        height: 220px;
    }
}
.wrapper-photo-news {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
}
.wrapper-photo-news__item {
    width: calc(33.33% - 11px);
}
@media (max-width: 991px) {
    .wrapper-photo-news__item {
        width: calc(50% - 11px);
    }
}
@media (max-width: 767px) {
    .wrapper-photo-news__item {
        width: 100%;
    }
}
.wrapper-photo-news__img {
    width: 100%;
    height: 270px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px 6px;
}
@media (max-width: 450px) {
    .wrapper-photo-news__img {
        height: 220px;
    }
}
.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 550px;
}
@media (max-width: 767px) {
    .video-container {
        height: 300px;
    }
}
@media (max-width: 567px) {
    .video-container {
        height: 250px;
    }
}
.my-video {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-top: 20px;
}
.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24L27 14v20" fill="white"/></svg>')
        no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: opacity 0.3s;
    cursor: pointer;
}
.my-video::-webkit-media-controls-start-playback-button {
    display: none;
}
.wrapper-klient {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.wrapper-klient__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(50% - 15px);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 6px 6px;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
    .wrapper-klient__item {
        width: 100%;
    }
}
@media (max-width: 550px) {
    .wrapper-klient__item {
        flex-direction: column-reverse;
        padding: 10px;
    }
}
.wrapper-klient__content {
    width: calc(100% - 220px);
}
@media (max-width: 1240px) {
    .wrapper-klient__content {
        width: calc(100% - 170px);
    }
}
@media (max-width: 550px) {
    .wrapper-klient__content {
        width: 100%;
    }
}
.wrapper-klient__content .btn {
    padding: 12px 50px;
}
@media (max-width: 550px) {
    .wrapper-klient__content .btn {
        width: 100%;
        text-align: center;
    }
}
.wrapper-klient__title {
    font-weight: 500;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .wrapper-klient__title {
        font-size: calc(20px + 0 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .wrapper-klient__title {
        font-size: calc(20px + 0 * 100vw / 1900);
    }
}
@media (max-width: 550px) {
    .wrapper-klient__title {
        text-align: center;
    }
}
.wrapper-klient__text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 16px;
}
.wrapper-klient__img {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #cfcfcf;
}
@media (max-width: 1240px) {
    .wrapper-klient__img {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 550px) {
    .wrapper-klient__img {
        width: 100%;
        border-radius: 6px 6px;
        margin-bottom: 12px;
    }
}
.category-description {
    margin: 30px 0 0;
}
.category-description h2 {
    margin: 24px 0 14px;
}
@media (max-width: 767px) {
    .category-description h2 {
        font-size: calc(22px + 6.8 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .category-description h2 {
        font-size: calc(22px + 4 * 100vw / 1900);
    }
}
.category-description h3 {
    margin: 10px 0;
    font-weight: 500;
}
@media (max-width: 767px) {
    .category-description h3 {
        font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
}
@media (min-width: 767px) {
    .category-description h3 {
        font-size: calc(18px + 0 * 100vw / 1900);
    }
}
.category-description p {
    font-size: 16px;
}
.category-description ul li {
    line-height: 1.55;
}

.title-group {
    display: flex;
    align-items: center;
}

.title-group h1 {
    margin: 0;
}

.title-group span {
    display: block;
    margin: 0 0 0 10px;
    color: #000000a7;
}
.wrapper-info__slider {
    display: flex;
    gap: 14px;
    border: none;
}

@media (max-width: 1100px) {
    .wrapper-info__slider {
        flex-direction: column-reverse;
        gap: 10px;
    }
}

/* Левая колонка */
.wrapper-info__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 1100px) {
    .wrapper-info__thumbnails {
        flex-direction: row;
        width: 100%;
    }
}

.wrapper-info__thumb {
    width: 82px;
    height: 82px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 1px solid #e1e1e1;
    transition: 0.3s;
}
@media (max-width: 1360px) {
    .wrapper-info__thumb {
        width: 78px;
        height: 78px;
    }
}
@media (max-width: 1320px) {
    .wrapper-info__thumb {
        width: 73px;
        height: 73px;
    }
}
@media (max-width: 1250px) {
    .wrapper-info__thumb {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 1200px) {
    .wrapper-info__thumb {
        width: 68px;
        height: 68px;
    }
}
@media (max-width: 1170px) {
    .wrapper-info__thumb {
        width: 65px;
        height: 65px;
    }
}
@media (max-width: 1130px) {
    .wrapper-info__thumb {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 1100px) {
    .wrapper-info__thumb {
        width: calc(25% - 11px);
    }
}

.wrapper-info__thumb:hover {
    opacity: 1;
}

.wrapper-info__thumb--active {
    opacity: 1;
    border-color: linear-gradient(304deg, #8bc867 0%, #29a840 100%);
}

/* Правая картинка */
.wrapper-info__main {
    width: calc(100% - 90px);
}
@media (max-width: 1100px) {
    .wrapper-info__main {
        flex: auto;
    }
}

@media (max-width: 767px) {
    .wrapper-info__main {
        width: 100%;
    }
}

.wrapper-info__img--new {
    justify-content: space-between;
    width: 100%;
    /* max-height: 380px; */
    border: none;
    object-fit: cover;
}

.thumb {
    cursor: pointer;
    border: 1px solid transparent;
}

.thumb.active {
    border-color: black;
}

.viewer {
    width: 100%;
    height: 500px;
    position: relative;
    background: #eee;
    overflow: hidden;
}

@media (max-width: 767px) {
    .viewer {
        height: 290px;
    }
}

.viewer img,
.viewer canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 10;
}
