/* USER VARIABLES SECTION */

:root {
    --siniy: #00568e;
    --goluboy: #41c0f0;
    --seryy: #44454a;
    --seryy-svetlyy: #f7f7f9;
    --svetlyy-seryy2: #fbfbfb;
    --chernyy: #000;
    --regular-text: 16px;
    --lineheight: 1.65;
    --font-family: "Open Sans", sans-serif;
    --second-family: "Poppins", sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0.938rem;
}

.row,
.row>* {
    --bs-gutter-x: 1.875rem;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1720px;
    }
}

@media (max-width: 991px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100%;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    z-index: 1;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

/* GENERAL CSS SETTINGS */

.svg-block {
    position: absolute;
    bottom: -9999px;
    left: -9999px;
    overflow: hidden;
    opacity: 0;
   /* visibility: hidden; */
    height: 0;
}

.img-right {
    float: right;
    margin-left: 50px;
}

.img-left {
    float: left;
    margin-right: 50px;
}

.animate__animated {
    /* Анимация будет длиться 1 секунду */
    animation-duration: 2s;
    /* Запуск анимации один раз */
    animation-iteration-count: 1;
}

@media (max-width: 767px) {

    .img-right,
    .img-left {
        float: none;
        width: 100%;
        display: block;
        margin: 0 0 10px 0;
    }
}

::placeholder {
    color: #000;
    opacity: 1;
}

input,
textarea {
    outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: #14295e;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--text);
    font-weight: 400;
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background: #fff;
}

body.hidden {
    overflow: hidden;
}

body.hidden::before{
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0, .6);
    z-index: 3;
}

/* common */
.phone {
    display: flex;
    align-items: center;
    gap: 0 11px;
    text-decoration: none;
    transition: 0.2s ease-out;
    overflow: hidden;
}

.phone svg {
    fill: none;
    stroke: #fff;
    width: 23px;
    height: 23px;
}

.phone span {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-family: var(--second-family);
}

.phone:hover {
    transform: scale(1.1);
}

.email {
    display: inline-flex;
    align-items: center;
    gap: 0 19px;
    text-decoration: none;
    transition: 0.2s ease-out;
    font-weight: 600;
}

.email svg {
    fill: #fff;
    width: 25px;
    height: 19px;
}

.email span {
    font-family: var(--font-family);
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}

.email:hover {
    transform: scale(1.1);
}

.address {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.address svg {
    fill: none;
    stroke: #fff;
    width: 25px;
    height: 25px;
}

.address span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}

.social {
    display: flex;
    align-items: center;
    gap: 0 14px;
    padding: 0;
    margin: 0;
}

.social li {
    list-style-type: none;
}

.social li a {
    display: block;
    text-decoration: none;
}

.social li a svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}

.btn-basket,
.btn-compare,
.btn-search {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    position: relative;
}

.btn-basket svg,
.btn-compare svg,
.btn-search svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    transition: 0.2s ease-out;
}

.btn-basket:hover svg,
.btn-compare:hover svg,
.btn-search:hover svg {
    transform: scale(1.1);
}

.btn-compare span {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #ff2929;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 10px;
    line-height: 10px;
    color: #fff;
    position: absolute;
    top: -3px;
    right: -6px;
}

.btn-compare--disabled {
    pointer-events: none;
}

.msfavorites-total{
    opacity: 0;
}

.msfavorites-total.active{
    opacity: 1;
}
 
.msfavorites-total.active[data-value="0"]{
    opacity: 0 !important
}

.btn-basket span {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #ff2929;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 10px;
    line-height: 10px;
    color: #fff;
    position: absolute;
    top: -3px;
    right: -6px;
}

.lang {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 22px;
    transition: 0.2s ease-out;
}

.lang:hover {
    transform: scale(1.1);
    color: #fff;
}

.btn-menu {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    height: 24px;
    width: 35px;
}

.btn-menu span {
    background: #fff;
    border-radius: 20px;
    position: absolute;
    display: block;
    height: 4px;
}

.btn-menu span:first-child {
    width: 26px;
    top: 0;
    right: 0;
    transition: 0.2s ease-in;
}

.btn-menu span:nth-child(2) {
    width: 35px;
    top: 10px;
    transition: 0.3s ease-in;
}

.btn-menu span:last-child {
    width: 20px;
    bottom: 0;
    right: 0;
    transition: 0.2s ease-in;
}

.btn-menu.active span:nth-child(2) {
    visibility: hidden;
    opacity: 0;
    width: 0;
}

.btn-menu.active span:last-child {
    transform: rotate(45deg);
    width: 24px;
    top: 12px;
}

.btn-menu.active span:first-child {
    transform: rotate(-45deg);
    width: 24px;
    top: 12px;
}

.c-prev {
    left: 5%;
    position: absolute;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);
}

.c-prev svg {
    stroke: #fff;
    stroke-width: 0px;
    width: 27px;
    height: 16px;
    transform: scale(-1);
}

.c-next {
    right: 5%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.c-next svg {
    stroke: #fff;
    stroke-width: 0px;
    width: 27px;
    height: 16px;
}

.btn {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    transition: .2s ease-in;
    height: 60px;
    width: 100%;
    max-width: 417px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: var(--chernyy);
}

.btn:hover {
    background: var(--seryy-svetlyy);
}

.control-group {
    width: 100%;
    max-width: 390px;
    width: 100%;
}

.control-group input {
    border: 1px solid #fff;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 34px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    width: 100%;
    background: transparent;
}

.control-group input::placeholder {
    color: #fff;
}

.logo {
    text-decoration: none;
    display: block;
}

.btn-home {
    max-width: 540px;
    background: var(--chernyy);
    color: #fff;
    border: 1px solid var(--chernyy);
    margin: 0 auto;
    text-decoration: none;
}

.btn-home:hover {
    background: transparent;
    color: var(--chernyy);
}

.c-mobile-pagination {
    display: flex;
    justify-content: center;
    gap: 0 25px;
}

.c-mobile-pagination .swiper-pagination-bullet {
    padding: 0;
    width: 21px;
    height: 2px;
    border-radius: 5px;
    opacity: 1;
    background: #bdbdbd;
    margin: 0 !important;
}

.c-mobile-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--chernyy);
}

@media(max-width: 991px) {
    .logo {
        width: 128px;
    }

    .logo img {
        object-fit: contain;
        width: 100%;
    }
}

/* end common */

/* header */
.header {
    padding: 21px 0;
    position: fixed;
    /* width: 100%; */
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1001;
    transition: 0.2s ease-out;
}

.header__logo-black {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.header--inner .header__logo-black {
    visibility: visible;
    opacity: 1;
    display: block;
}

.header--inner .header__logo-white {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.header--inner .phone svg {
    stroke: var(--chernyy);
}

.header--inner .phone span {
    color: var(--chernyy);
}

.header--inner .btn-basket svg,
.header--inner .btn-compare svg,
.header--inner .btn-search svg {
    fill: var(--chernyy);
}

.header--inner .btn-menu span {
    background: var(--chernyy);
}

.header--inner .header__lang {
    color: var(--chernyy);
}

.header--scroll {
    padding: 41px 0 38px 0;
    background: #000;
}

.header--scroll .header__logo-black {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.header--scroll .header__logo-white {
    visibility: visible;
    opacity: 1;
    display: block;
}

.header--scroll .phone svg {
    stroke: #fff;
}

.header--scroll .phone span {
    color: #fff;
}

.header--scroll .btn-basket svg,
.header--scroll .btn-compare svg,
.header--scroll .btn-search svg {
    fill: #fff;
}

.header--scroll .btn-menu span {
    background: #fff;
}

.header--scroll .header__lang {
    color: #fff;
}

.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__right-elements {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.header__right-btn {
    display: flex;
    align-items: center;
    gap: 0 30px;
    margin: 0 129px 0 0;
}

.header__phone {
    margin: 0 68px 0 0;
}

.header__navigate {
    display: flex;
    align-items: center;
    gap: 0 37px;
}

.header__menu {
    position: absolute;
    top: 0;
    right: -100%;
    opacity: 0;
    visibility: hidden;
    width: 1489px;
    background: #000;
    padding: 120px 196px 88px 119px;
    z-index: 88;
    transition: 0.3s ease-out;
}

.header__menu.show {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.header__menu-flex {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 70px 0;
}

.header__menu-item {
    width: 100%;
    max-width: 429px;
}

.header__menu-item h2 {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 24px 0;
    margin: 0 0 30px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #fff;
}

.header__menu-item h2 a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #fff;
}

.header__menu-item ul {
    padding: 0;
    margin: 0;
}

.header__menu-item ul li {
    list-style-type: none;
    margin: 0 0 15px 0;
}

.header__menu-item ul li:last-child {
    margin: 0;
}

.header__menu-item ul li a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: #fff;
}

.header--active {}

.header--active .phone svg {
    stroke: #fff;
}

.header--active .phone span {
    color: #fff;
}

.header--active .btn-basket svg,
.header--active .btn-compare svg,
.header--active .btn-search svg {
    fill: #fff;
}

.header--active .btn-menu span {
    background: #fff;
}

.header--active .header__lang {
    color: #fff;
}

@media(max-width: 1400px) {
    .header__menu {
        width: 100%;
    }
}

@media(max-width: 1025px) {
    .header__right-btn {
        gap: 0 25px;
        margin: 0 93px 0 0;
    }

    .header__phone {
        margin: 0 25px 0 0;
    }

    .header__phone.phone span {
        display: none;
    }

    .header__navigate {
        gap: 0 24px;
    }
}

@media(max-width: 991px) {
    .header {
        padding: 32px 0;
    }

    .header__lang {
        display: none;
    }

    .header__right-btn {
        margin: 0 22px 0 0;
        gap: 0 17px;
        order: 0;
    }

    .header__phone {
        margin: 0 17px 0 0;
        order: 1;
    }

    .header__btn-compare {
        display: none;
    }

    .header__navigate {
        order: 2;
    }

    .header--active .header__btn-search,
    .header--active .header__btn-basket,
    .header--active .header__phone {
        display: none;
    }

    .header--active .header__lang,
    .header--active .header__btn-compare {
        display: block;
    }

    .header__menu {
        padding: 100px 13px 66px 13px;
    }

    .header__menu-item {
        max-width: 100%;
    }

    .header__menu-item h2 {
        margin: 0 0 30px 0;
        font-size: 22px;
        line-height: 22px;
    }

    .header__menu-item h2 a {
        font-size: 22px;
        line-height: 22px;
    }

    .header__menu-item ul li a {
        font-size: 20px;
        line-height: 20px;
    }

    .header__menu-item ul {
        padding: 0 0 0 32px;
    }

    .header--active {
        overflow: scroll;
        height: 100%;
    }
}

/* end header */

/* footer */
.footer {
    background: #000;
    padding: 31px 0 0 0;
}

.footer__logo {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.footer__top {
    margin: 0 0 112px 0;
}

.footer__phone {
    line-height: 20px;
    gap: 0 16px;
    margin: 0 0 20px 0;
    display: inline-flex;
    padding: 20px 0 0 0;
}

.footer__email span,
.footer__phone span{
    font-weight: 400;
    font-size: 18px;
    font-family: var(--font-family);
}

@media(min-width: 992px){
    .footer__email span,
    .footer__phone span{
        font-weight: 600;
        font-size: 20px;
    }
}

.footer__top-right-info {
    max-width: 357px;
    margin: 0 0 0 auto;
    padding: 17px 0 0 0;
}

.footer__social {
    margin: 20px 0 0 0;
}

.footer__top-info-wrap {
    display: flex;
    flex-direction: column;
}

.footer__navigate {
    padding: 33px 0 35px 0;
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
    position: relative;
}

.footer__navigate-manu {
    display: flex;
    align-items: center;
    gap: 0 150px;
    padding: 0;
    margin: 0;
}

.footer__navigate-manu li {
    list-style-type: none; 
}

.footer__navigate-manu>li>a {
    display: flex;
    align-items: center;
    gap: 0 24px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    gap: 0 24px;
}

.footer__submenu {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1920px;
    width: auto;
    padding: 0;
    gap: 0 11px;
    visibility: hidden;
    transition: 0.2s ease-in-out;
    opacity: 0;
}

.footer__submenu li {
    flex: 1 0 auto;
}

.footer__submenu li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0 11px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}

.footer__submenu li a::before {
    content: "";
    height: 21px;
    width: 1px;
    background: #fff;
}

.footer__submenu.show {
    bottom: 100%;
    opacity: 1;
    visibility: visible;
}

.footer__submenu li:first-child a::before {
    display: none;
}

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom-row {
    align-items: center;
}

.footer__bottom-copy {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}

.footer__bottom-developer {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0 33px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    text-decoration: none;
}

.footer__bottom-developer svg {
    width: 87px;
    height: 32px;
}

.footer__bottom-developer:hover {
    color: #fff;
}

.footer__top-left {
    display: flex;
    flex-direction: column;
}

.footer__top-left .footer__phone:hover,
.footer__top-left .footer__email:hover {
    transform: scale(1.01);
}

@media(max-width: 1025px) {
    .footer {
        padding: 54px 0 0 0;
    }

    .footer__top {
        margin: 26px 0 63px 0;
    }

    .footer__address.address span {
        font-size: 17px;
        line-height: 20px;
    }

    .footer__navigate {
        padding: 26px 0;
    }

    .footer__submenu {
        gap: 10px 0;
        flex-direction: column;
        position: unset;
        margin: 20px 0 0 0;
        display: none;
        align-items: baseline;
        transform: translateX(0);
    }

    .footer__submenu.show {
        left: unset;
        bottom: unset;
        display: flex;
    }

    .footer__submenu li a {
        font-size: 15px;
        line-height: 15px;
        justify-content: start;
    }

    .footer__submenu li a::before {
        display: none;
    }
}

@media(max-width: 991px) {
    .footer {
        display: flex;
        flex-direction: column;
        padding: 59px 0 0 0;
    }

    .footer__logo {
        order: 0;
        width: 267px;
    }

    .footer__navigate {
        order: 1;
        border: none;
        padding: 61px 0;
    }

    .footer__navigate-manu>li>a {
        justify-content: space-between;
    }

    .footer__navigate-manu>li {
        width: 100%;
        padding: 24px 0 23px 0;
        border-bottom: 1px solid #828282;
    }

    .footer__navigate-manu li:first-child {
        padding-top: 0;
    }

    .footer__navigate-manu li:last-child {
        border: none;
    }

    .footer__navigate-manu {
        flex-direction: column;
    }

    .footer__submenu {
        padding: 41px 0 20px 31px;
        margin: 0;
        gap: 32px 0;
    }

    .footer__submenu li a {
        font-size: 20px;
        line-height: 20px;
    }

    .footer__top {
        order: 2;
        margin: 0 0 0 0;
    }

    .footer__top-left {
        flex-direction: row;
        justify-content: space-between;
        margin: 0 0 29px 0;
    }

    .footer__phone,
    .footer__email {
        padding: 0;
        margin: 0;
        gap: 0 10px;
        font-weight: 400;
    }

    .footer__top-right-info {
        margin: 0;
        padding: 0;
    }

    .footer__bottom {
        order: 3;
        margin: 47px 0 0 0;
        border-top: 1px solid #828282;
        padding: 25px 0 40px 0;
    }

    .footer__bottom-row {
        flex-direction: column;
    }

    .footer__bottom-copy {
        text-align: center;
        margin: 0 0 13px 0;
    }

    .footer__bottom-developer {
        justify-content: center;
    }
}

@media(max-width: 400px) {

    .footer__phone span,
    .footer__email span {
        font-size: 16px;
        line-height: 16px;
    }
}

/* end footer */

/* main */
.main {
    overflow: hidden;
}

.main--inner {
    padding: 97px 0 0 0;
}

/* end main */

/* slider-home */
.slider-home {
    height: 920px;
    overflow: hidden;
}

.slider-home__slide {
    position: relative;
    height: 920px;
}

.slider-home__slide::before {
    content: "";
    position: absolute;
    background: #080908;
    display: block;
    opacity: 0.7;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slider-home__slide-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.slider-home__slide-info {
    position: absolute;
    top: 364px;
    width: 100%;
    margin: 0 auto;
}

.slider-home__slide-info h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 28px 0;
}

.slider-home__slide-info p {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 33px;
    line-height: 40px;
    color: #fff;
}

.slider-home__slide-bottom {
    position: absolute;
    z-index: 2;
    margin: 0 auto;
    bottom: 27px;
    width: 100%;
}

.slider-home__slide-bottom-row {
    border-top: 1px solid #828282;
    padding: 7px 0 0 0;
    max-width: 772px;
    display: flex;
    justify-content: space-between;
}

.slider-home__slide-bottom-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.slider-home__slide-bottom-item strong {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
}

.slider-home__slide-bottom-item span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    max-width: 150px;
    display: block;
}

.slider-home__pagination {
    position: absolute;
    bottom: 24px !important;
    z-index: 99;
    right: 0;
    justify-content: end;
    display: flex;
    align-items: center;
    max-width: 1720px;
    margin: 0 auto !important;
    gap: 0 65px;
    padding: 0 15px;
}

.slider-home__pagination .swiper-pagination-bullet {
    margin: 0 !important;
    padding: 0 !important;
    background: none;
    border-radius: unset;
    opacity: 1;
    font-size: 30px;
    line-height: 40px;
    font-family: var(--second-family);
    color: #fff;
    width: auto !important;
    height: auto !important;
    position: relative;
}

.slider-home__pagination .swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-home__pagination .swiper-pagination-bullet:last-child::before {
    display: none;
}

.slider-home__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 700;
}

.slider-home__prev {
    right: calc(5% + 45px);
    left: auto;
    position: absolute;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);
}

.slider-home__next {
    right: 5%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.slider-home__next svg,
.slider-home__prev svg {
    fill: #fff;
}

@media(max-width: 1440px) {
    .slider-home__slide-info h2 {
        text-align: center;
    }

    .slider-home__slide-info p {
        text-align: center;
    }
}

@media(max-width: 1025px) {
    .slider-home {
        height: 788px;
    }

    .slider-home__slide {
        height: 788px;
    }

    .slider-home__slide-info {
        top: 314px;
    }

    .slider-home__slide-info h2 {
        font-size: 50px;
        line-height: 50px;
        margin: 0 0 31px 0;
    }

    .slider-home__slide-info p {
        font-size: 25px;
        line-height: 40px;
    }

    .slider-home__pagination {
        display: none;
    }

    .slider-home__slide-bottom-item strong {
        font-size: 35px;
        line-height: 35px;
    }

    .slider-home__slide-bottom-item span {
        font-size: 17px;
        line-height: 20px;
    }

    .slider-home__slide-bottom-row {
        gap: 0 33px;
        justify-content: start;
        max-width: 708px;
    }
}

@media(max-width: 991px) {

    .slider-home {
        height: 622px;
    }

    .slider-home__slide {
        height: 622px;
    }

    .slider-home__slide-bottom {
        display: none;
    }

    .slider-home__slide-info {
        top: 204px;
    }

    .slider-home__slide-info h2 {
        font-size: 40px;
        line-height: 40px;
        text-align: center;
    }

    .slider-home__slide-info p {
        margin: 0;
        font-size: 22px;
        line-height: 25px;
        text-align: center;
    }

    .slider-home__next {
        transform: none;
        right: 16px;
        top: unset;
        bottom: 32px;
    }

    .slider-home__pagination {
        display: flex;
        justify-content: start;
    }

    .slider-home__prev {
        visibility: visible;
        right: 57px;
        top: unset;
        left: unset;
        bottom: 19px;
    }
}

/* end slider-home */

/* title-block */
.title-block {
    position: relative;
    margin: 0 0 50px 0;
}

.title-inner-block {
    margin: 0 0 70px 0;
}

.title {
    padding: 20px 0 0 90px;
    position: relative;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0;
}

.title a {
    text-decoration: none;
    color: var(--chernyy);
    font-size: 55px;
    line-height: 55px;
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: .2s ease-in;
}

.title a:hover {
    color: #828282;
}

.title::before {
    content: "";
    height: 1px;
    width: 123px;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
}

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

.title-block__arrows {
    display: flex;
    align-items: center;
    gap: 0 45px;
    justify-content: end;
}

.title-block__arrows .c-prev,
.title-block__arrows .c-next {
    position: unset;
    transform: unset;
    display: flex;
    border: none;
    padding: 0;
    background-color: transparent;
}

.title-block__arrows .c-prev svg,
.title-block__arrows .c-next svg {
    stroke: var(--chernyy);
}

.title-block--center {
    margin: 0 0 46px 0;
}

.title-block--center .title {
    text-align: center;
    color: #fff;
    padding: 0;
}

.title-block--center .title::before {
    display: none;
}

.title-block--partners {
    margin: 0 0 108px 0;
}

@media(max-width: 1025px) {

    .title {
        font-size: 40px;
        line-height: 40px;
        padding: 20px 0 0 64px;
    }

    .title a {
        font-size: 40px;
        line-height: 40px;
    }
}

@media(max-width: 991px) {
    .title-block {
        margin: 0 0 30px 0;
    }

    .title-inner-block {
        margin: 0 0 50px 0;
    }

    .title {
        font-size: 35px;
        line-height: 35px;
        padding: 14px 0 0 22px;
    }

    .title a {
        font-size: 35px;
        line-height: 35px;
    }

    .title-block__arrows {
        margin: 46px 0 0 0;
    }

    .title::before {
        width: 68px;
    }
}

/* end title-block */

/* categores */
.categores {
    padding: 170px 0 0 0;
}

.categores__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.categores__item {
    display: block;
    position: relative;
    text-decoration: none;
    width: 33.33%;
}

.categores__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--chernyy);
    opacity: 0.35;
    transition: 0.3s ease-in;
}

.categores__item-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.categores__item-head {
    position: absolute;
    top: 36px;
    left: 71px;
    z-index: 22;
    transition: 0.3s ease-in;
}

.categores__item-head span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    margin: 0 0 3px 0;
    transition: 0.3s ease-in;
}

.categores__item-head h3 {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
    color: #fff;
    transition: 0.3s ease-in;
    white-space: nowrap;
}

@media(min-width: 768px) {

    .categores__item:hover::before {
        opacity: 0.7;
    }

    .categores__item:hover .categores__item-head span {
        visibility: hidden;
        opacity: 0;
    }

    .categores__item:hover .categores__item-head {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media(max-width: 1400px) {
    .categores__item {
        height: 369px;
    }

    .categores__item-img {
        height: 100%;
    }

    .categores__item-img img {
        object-fit: cover;
    }
}

@media(max-width: 1025px) {
    .categores__item-head {
        left: 31px;
    }

    .categores__item-head h3 {
        font-size: 20px;
        line-height: 20px;
        white-space: wrap;
    }

    .categores__item {
        height: 369px;
    }

}

@media(max-width: 991px) {
    .categores {
        padding: 100px 0 0 0;
    }

    .categores__row {
        gap: 2px;
    }

    .categores__item {
        height: 258px;
        width: calc(50% - 2px);
    }

    .categores__item-head h3 {
        font-size: 18px;
        line-height: 18px;
    }

    .categores__item-head {
        left: 15px;
    }
}

/* end categores */

/* popular-product */
.popular-product {
    padding: 170px 0 130px 0;
}

.popular-product--inner {
    padding: 160px 0 170px 0;
}

@media(max-width: 1025px) {
    .popular-product {
        padding: 100px 0 100px 0;
    }
}

/* end popular-product */

/* product */
.product-swiper__slide {
    /*opacity: 0;*/
    transition: .2s ease-in;
}

.product-class-visible {
    opacity: 1;
}

.product {
    position: relative;
    text-decoration: none;
    padding: 10px 15px 0 15px;
    transition: .2s ease-in;
    background: #fff;
    height: 435px;
}

.product__link {
    display: block;
    text-decoration: none;
}

.product:hover {
    box-shadow: 0 0 13px 0 rgba(106, 106, 106, 0.1);
}

.product-swiper {
    overflow: visible;
}

.product__info {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.product__info li {
    list-style-type: none;
    width: 65px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.product__info-red {
    background: #cd4d4d;
}

.product__info-green {
    background: #649567;
}

.product__info-orange {
    background: #cd804d;
}

.product__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 272px;
    margin: 0 0 13px 0;
}

.product h3 {
    text-align: center;
    margin: 0 0 5px 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--chernyy);
}

.product h3 strong {
    font-weight: 600;
}

.product p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #828282;
    margin: 0 0 11px 0;
    padding: 0;
}

.product__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 24px;
}

.product__footer strong {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 17px;
    line-height: 17px;
    text-align: center;
    color: var(--chernyy);
}

.product__footer span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 17px;
    line-height: 17px;
    color: #bdbdbd;
    text-decoration: line-through;
}

.product__wrap-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 88;
    opacity: 0;
    transition: .2s ease-in;
}

.product__wrap-btn button {
    width: 53px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--seryy-svetlyy);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none;
    transition: .2s ease-in;
}

.product__wrap-btn button svg {
    width: 20px;
    height: 20px;
    fill: var(--chernyy);
}

button.product__btn-basket {
    background: var(--chernyy);
}

button.product__btn-basket svg {
    fill: #fff;
}

.product:hover .product__wrap-btn {
    opacity: 1;
}

@media(max-width: 1025px) {
    .product__img img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

@media(max-width: 991px) {
    .product {
        height: 335px;
    }

    .product__img {
        height: 141px;
    }

    .product__img img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .product h3 {
        font-size: 15px;
        line-height: 15px;
        margin: 0 0 10px 0;
    }

    .product p {
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 12px 0;
    }

    .product__footer strong,
    .product__footer span {
        font-size: 16px;
        line-height: 16px;
    }

    .product__wrap-btn {
        display: none;
    }

    .product__wrap-btn button {
        width: 50%;
    }

    .product__footer {
        gap: 0 14px;
    }
}

/* end product */

/* contact-us */
.contact-us {
    background: var(--chernyy);
    padding: 42px 0 68px 0;
    margin: 0 0 170px 0;
}

.contact-us__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-us--inner {
    margin: 170px 0;
}

.contact-map {
    height: 670px;
}

@media(max-width: 1700px) {
    .contact-us__form {
        gap: 32px 28px;
        justify-content: center;
    }

    .contact-us__form .control-group,
    .contact-us__form .btn-callback {
        flex: 1 0 calc(25% - (28px * 3) / 4);
        max-width: none;
        width: unset;
    }
}

@media(max-width: 1025px) {

    .contact-us {
        padding: 27px 0 47px 0;
        margin: 0 0 100px 0;
    }

    .contact-us__form .control-group {
        flex: 1 0 calc(33.33% - (28px * 2) / 3);
    }

    .contact-us__form .btn-callback {
        max-width: 293px;
    }

    .contact-us  + .portfolio--inner{
        padding-top: 0;
    }
}

@media(max-width: 991px) {
    .contact-us__form {
        gap: 30px 0;
    }

    .contact-us__form .control-group {
        flex: 1 0 100%;
    }

    .contact-us__form .btn-callback {
        max-width: 100%;
    }

    .contact-us--inner {
        margin: 0;
    }
}

/* end contact-us */

/* services */
.services {
    padding: 0 0 170px 0;
}

.services__list {
    flex-direction: column;
    gap: 30px 0;
    display: flex;
}

.services__item {
    display: flex;
    box-shadow: 0 6px 10px 0 rgba(106, 106, 106, 0.1);
    background: #fff;
    height: 234px;
    gap: 0 41px;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.services__item:hover {
    box-shadow: 0 6px 10px 0 rgba(106, 106, 106, 0.3);
}

.services__img {
    width: 50%;
}

.services__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.services__info {
    width: 50%;
    padding: 17px 160px 0 0;
}

.services__info h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    color: var(--chernyy);
    margin: 0 0 11px 0;
    padding: 0;
}

.services__info p {
    padding: 0;
    margin: 0 0 23px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #828282;

}

.services__item-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0 21px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    transition: .2s ease-in;
}

.services__item-link svg {
    fill: var(--chernyy);
    stroke: var(--chernyy);
    width: 17px;
    height: 8px;
    transition: .2s ease-in;
}

.services__item-link:hover,
.services__item:hover .services__item-link {
    color: #828282;
}

.services__item-link:hover svg {
    fill: #828282;
    stroke: #828282;
}

@media(max-width: 1400px) {
    .services__info {
        position: relative;
    }

    .services__info h3 {
        margin: 0 0 10px 0;
        font-size: 25px;
        line-height: 25px;
    }

    .services__info p {
        font-size: 17px;
        line-height: 25px;
        margin: 0;
    }

    .services__item-link {
        position: absolute;
        bottom: 22px;
    }
}

@media(max-width: 1025px) {
    .services {
        padding: 0 0 100px 0;
    }

    .services__item {
        height: 209px;
    }
}

@media(max-width: 991px) {
    .services__list {
        gap: 40px 0;
    }

    .services__item {
        flex-direction: column;
        height: auto;
    }

    .services__img {
        width: 100%;
    }

    .services__info {
        padding: 14px 15px 61px 15px;
        width: 100%;
    }

    .services__item-link {
        bottom: 16px;
    }
}

/* end services */

/* seo-block */
.seo-block {
    padding: 170px 0;
}

.seo-block__content {
    height: 128px;
    position: relative;
    overflow: hidden;
}

.seo-block__content::before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    transition: .2s ease-in;
}

.seo-block__content.show::before {
    background: transparent;
}

.seo-block__content.show {
    height: auto;
}

.seo-block__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 30px 0 0 0;
    background: none;
    border: none;
    width: 100%;
}

.seo-block__btn svg {
    width: 20px;
    height: 10px;
    stroke: var(--chernyy);
    fill: none;
}

.seo-block__btn.active svg {
    transform: scale(-1);
}

@media(max-width: 1025px) {
    .seo-block {
        padding: 102px 0;
    }
}

/* end seo-block */

/* cms-content */
.cms-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #828282;

}

/* end cms-content */

/* portfolio */
.portfolio {
    padding: 170px 0 0 0;
}

.portfolio__item {
    display: block;
    position: relative;
    text-decoration: none;
}

.portfolio__item::before {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--chernyy);
    opacity: 0.4;
    position: absolute;
    transition: .2s ease-out;
}

.portfolio__item:hover::before {
    opacity: 0.8;
}

.portfolio__item-img {
    height: 766px;
}

.portfolio__item-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.portfolio__item h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 100%;
    max-width: 334px;
    margin: 0 auto;
    display: block;
}

.portfolio__btn.btn-more{
    width: 100%;
}

.portfolio__btn {
    background: var(--chernyy);
    color: #fff;
    border: 1px solid var(--chernyy);
    text-decoration: none;
    margin: 70px auto 0 auto;
}

.portfolio__btn:hover {
    background: #fff;
    color: var(--chernyy);
}

.portfolio--inner {
    padding: 0 0 170px 0;
}

.portfolio-inner-page {
    padding: 0 0 80px 0;
}

.portfolio-inner-page__content {
    margin: 112px 0 0 0;
}

.portfolio-inner-page__intro{
    padding: 0 15px;
}

@media(min-width: 992px) {
    .portfolio-inner-page__intro{
        max-width: 960px;
        margin: 0 auto;
    }
}

.portfolio-inner-page__intro .portfolio-inner-page__content{
    margin-top: 0;
}

.portfolio-inner-page__content{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
}

.portfolio-inner-page__content p{
    margin: 0 0 20px 0;
}

.portfolio-inner-page__content p:last-child {
    margin: 0;
}

.portfolio-inner-page__row {
    display: flex;
    justify-content: end;
    gap: 0 128px;
}

.portfolio-inner-page__left-content {
    max-width: 770px;
    width: 100%;
}

.portfolio-inner-page__left-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 28px 0;
}

.portfolio-inner-page__left-content p:last-child {
    margin: 0;
}

.portfolio-inner-page__left-content-img {
    margin: 28px 0 0 0;
}

.portfolio-inner-page__left-content-img-mobile {
    display: none;
}

@media(max-width: 1440px) {
    .portfolio-inner-page__row {
        gap: 0 50px;
        align-items: self-start;
    }

    .portfolio-inner-page__img {
        max-width: 600px;
    }

    .portfolio-inner-page__img img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

@media(max-width: 1025px) {
    .portfolio {
        padding: 100px 0 0 0;
    }

    .portfolio__item h2 {
        font-size: 25px;
        line-height: 25px;
    }
}

@media(max-width: 1024px) {

    .portfolio__item-img {
        height: 465px;
    }

    .portfolio--inner {
        padding: 100px 0;
    }

    .portfolio-inner-page__left-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .portfolio-inner-page__row {
        flex-direction: column;
    }

    .portfolio-inner-page__left-content-img-mobile {
        display: block;
        margin: 0 0 26px 0;
    }

    .portfolio-inner-page__left-content-img-mobile img {
        display: block;
        width: 100%;
    }

    .portfolio-inner-page__img {
        display: none;
    }

    .portfolio-inner-page__left-content-img {
        padding: 0 15px;
    }

    .portfolio-inner-page__left-content p {
        padding: 0 15px;
        font-size: 16px;
        line-height: 30px;
        order: 2;
    }

    .portfolio-inner-page__content {
        font-size: 16px;
        line-height: 30px;
        margin: 37px 0 0 0;
    }

    .portfolio-inner-page__left-content-img {
        margin: 0 0 44px 0;
    } 
}


@media(max-width: 991px) {
    .portfolio__item {
        height: 216px;
    }

    .portfolio__item-img {
        height: 100%;
    }

    .portfolio__row {
        gap: 15px 0;
    }

    .portfolio__btn {
        margin: 40px 0 0 0;
        max-width: 100%;
    }
}

/* end portfolio */


/* partners */
.partners {
    padding: 88px 0 76px 0;
    background: var(--seryy-svetlyy);
}

.partners__swiper-link {
    display: block;
    text-decoration: none;
    /* text-align: center; */
}

.partners__swiper-link img {
    filter: grayscale(100%);
    transition: .2s ease-in;
    object-fit: contain;
    width: 100%;
}

.partners__swiper-link:hover img {
    filter: grayscale(0);
}

.partners-mobile-pagination {
    display: none;
}

@media(max-width: 1025px) {
    .partners {
        padding: 32px 0 58px 0;
    }
}

@media(max-width: 991px) {
    .partners {
        padding: 32px 0 0 0;
    }

    .partners__swiper {
        padding: 0 0 58px 0;
    }

    .partners .title-block--partners {
        margin: 0 0 60px 0;
    }

    .partners .title-block__arrows {
        display: none;
    }

    .partners-mobile-pagination {
        display: flex;
        bottom: 20px !important;
    }
}

/* end partners */

/* product-week */
.product-week {
    background-image: url("../images/week-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 0 68px 0;
    margin: 0 0 170px 0;
}

.product-week__img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 58px 0 0 0;
}

.product-week__desc {
    padding: 64px 0 0 0;
}

.product-week__desc h2 {
    font-family: var(--font3);
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.03em;
    color: #fff;
    padding: 0;
    margin: 0 0 25px 0;
}

.product-week__desc p {
    padding: 0;
    margin: 0 0 36px 0;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
}

.product-week__desc-link {
    display: flex;
    align-items: center;
    gap: 0 13px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    text-decoration: none;
    transition: .2s ease-in;
}

.product-week__desc-link:hover {
    color: #fff;
}

.product-week__desc-link svg {
    fill: #fff;
    stroke: #fff;
    width: 17px;
    height: 8px;
}

.product-week__info {
    padding: 71px 0 0 0;
}

.product-week__info h2 {
    padding: 0;
    margin: 0 0 37px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 45px;
    color: #fff;
}

.product-week__info ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px 0;
    padding: 0;
    margin: 0;
}

.product-week__info ul li {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    width: 50%;
}

.product-week__info ul li img {
    object-fit: contain;
    width: 35px;
    height: 35px;
}

.product-week__info ul li p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #fff;
    padding: 0;
    margin: 0;
}

@media(max-width: 1025px) {
    .product-week {
        margin: 0 0 100px 0;
    }

    .product-week__desc h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 35px 0;
    }

    .product-week__desc p {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 66px 0;
    }

    .product-week__info h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 22px 0;
    }

    .product-week__img img {
        object-fit: contain;
        width: 100%;
    }

    .product-week__info ul {
        gap: 33px 30px;
    }

    .product-week__info ul li {
        width: calc(50% - (30px / 2));
    }
}

@media(max-width: 991px) {
    .product-week {
        background-position: top center;
        padding: 27px 0 62px 0;
        background-image: url('../images/week-bg-mobile.jpg');
    }

    .product-week__desc {
        padding: 0;
    }

    .product-week__desc h2 {
        font-size: 35px;
        line-height: 35px;
        margin: 0 0 13px 0;
    }

    .product-week__img {
        padding: 0;
        height: 216px;
    }

    .product-week__img img {
        height: 100%;
    }

    .product-week__desc p {
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 10px 0;
    }

    .product-week__desc-link {
        justify-content: center;
    }

    .product-week__img {
        margin: 40px 0 46px 0;
    }

    .product-week__info {
        padding: 0;
    }

    .product-week__info h2 {
        font-size: 30px;
        line-height: 30px;
    }
}

/* end product-week */

/* about-us */
.about-us {
    padding: 0 0 170px 0;
}

.about-us__row {
    display: flex;
    gap: 0 38px;
}

.about-us__left-content {
    overflow: hidden;
}

.about-us__left-content h2 {
    font-family: var(--font3);
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 18px 0;
    padding: 0;
}

.about-us__left-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #4f4f4f;
    margin: 0;
}

.about-us__right{
    max-width: 850px;
}

.about-us__right img{
    max-width: 850px;
}

.about-benefis {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0 58px;
    padding: 0;
    margin: 50px 0 0 0;
}

.about-benefis li {
    list-style-type: none;
    max-width: 285px;
}

.about-benefis__icon {
    margin: 0 0 29px 0;
}

.about-benefis li h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    margin: 0 0 9px 0;
    padding: 0;
}

.about-benefis li p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #828282;
    margin: 0;
}

.about-inner {
    padding: 0 0 170px 0;
}

.about-inner__row {
    display: flex;
    justify-content: end;
}

.about-inner__slider {
    max-width: 978px;
    margin: 0;
}

.about-inner__content {
    width: 100%;
    max-width: 822px;
    margin: 0 62px 0 0;
    padding: 32px 0 0 0;
}

.about-inner__content h1 {
    font-family: var(--font3);
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 28px 0;
}

.about-inner__content-desc {
    padding: 0 0 0 56px;
}

.about-inner__content-desc p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 20px 0;
}

.about-inner__content-desc p:last-child {
    margin: 0;
}

.about-inner__slider-bottom-arrow {
    position: absolute;
    bottom: 46px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0 46px;
    width: 100%;
    padding: 0 46px;
}

.about-inner__slider-bottom-arrow .c-prev,
.about-inner__slider-bottom-arrow .c-next {
    position: unset;
    transform: none;
}

.about-inner__content-nubmer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 57px;
    margin: 40px 0 0 0;
}

.about-inner__content-nubmer-item {
    width: 100%;
    max-width: 259px;
}

.about-inner__content-nubmer-item h3 {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 55px;
    line-height: 55px;
    color: var(--chernyy);
    margin: 0 0 10px 0;
}

.about-inner__content-nubmer-item p {
    margin: 0;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #828282;
}

.about-us__left-content-mobile-img {
    display: none;
}

@media(max-width: 1400px) {
    .about-us__right {
        display: none;
    }

    .about-benefis {
        justify-content: start;
        padding: 0 15px;
    }

    .about-us__left-content {
        padding: 0 15px 0 0;
    }

    .about-us__left-content .img-left {
        margin-right: 32px;
    }

    .about-inner__row {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .about-inner__content {
        max-width: 100%;
    }

    .about-inner__slider {
        max-width: 100%;
    }
}

@media(max-width: 1200px) {
    .about-inner__slide img {
        object-fit: contain;
        width: 100%;
    }

    .about-inner__content {
        padding: 46px 15px 0 15px;
    }

    .about-inner__content-desc {
        padding: 0;
    }
}

@media(max-width: 1025px) {
    .about-us {
        padding: 0 0 100px 0;
    }
}

@media(max-width: 991px) {
    .about-us__left-content {
        padding: 0 15px;
    }

    .about-us__left-content .img-left {
        display: none;
    }

    .about-us__left-content h2 {
        position: relative;
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 35px;
        line-height: 35px;
        padding: 14px 0 0 22px;
        letter-spacing: -0.03em;
        color: var(--chernyy);
        margin: 0 0 30px 0;
    }

    .about-us__left-content h2::before {
        content: "";
        height: 1px;
        width: 123px;
        position: absolute;
        left: 0;
        top: 0;
        background: #000;
    }

    .about-us__left-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .about-benefis {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 45px 0;
        padding: 0 15px;
        margin: 40px 0 0 0;
    }

    .about-benefis li {
        max-width: 100%;
        width: 100%;
    }

    .about-benefis__icon {
        text-align: center;
        margin: 0 0 30px 0;
    }

    .about-benefis li h3 {
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        margin: 0 0 11px 0;
    }

    .about-benefis li p {
        text-align: center;
        font-size: 16px;
        line-height: 24px;
    }

    .about-us__left-content-mobile-img {
        display: block;
        margin: 30px 0 0 0;
    }

    .about-us__left-content-mobile-img img {
        display: block;
        width: 100%;
    }

    .about-inner__slide img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .about-inner__slider-bottom-arrow {
        justify-content: space-between;
        padding: 0 15px;
    }

    .about-inner {
        padding: 0 0 48px 0;
    }

    .about-inner__content-desc {
        padding: 0;
    }

    .about-inner__content-desc p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-inner__content-nubmer-item {
        max-width: 153px;
    }

    .about-inner__content-nubmer {
        margin: 28px 0 0 0;
        padding: 0;
        flex-wrap: wrap;
        gap: 30px 0;
        justify-content: space-between;
    }

    .about-inner__content-nubmer-item p {
        font-size: 17px;
        line-height: 20px;
    }

    .about-inner__content h1 {
        font-size: 35px;
        line-height: 35px;
        margin: 0 0 30px 0;
    }
}

/* end about-us  */

/* cookies */
.cookies {
    background: var(--chernyy);
    border-bottom: 1px solid #fff;
    padding: 23px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
}

.cookies--unset {
    position: unset;
}

.cookies__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    color: #fff;
}

.cookies__wrap-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
}

.cookies__btn-info {
    text-decoration: none;
    max-width: 292px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.cookies__btn-info:hover {
    color: var(--chernyy);
}

.cookies__btn-success {
    max-width: 292px;
}

.cookies__btn-success:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

@media(max-width: 991px) {
    .cookies {
        padding: 22px 0 29px 0;
    }

    .cookies__text {
        text-align: center;
        margin: 0 0 22px 0;
        font-size: 18px;
        line-height: 24px;
    }
}

/* end cookies */

/* info-page */
.info-page {
    padding: 100px 0;
}

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

.info-page--404 .btn-home {
    margin-top: 84px;
}

.info-page__content h1 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 60px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 28px 0 0 0;
}

.info-page--success .btn-home {
    margin-top: 29px;
}

@media(max-width: 991px) {
    .info-page {
        padding: 86px 0 100px 0;
    }

    .info-page--404 img {
        display: block;
        width: 100%;
    }
}

/* end info-page */

/* breadcrumbs */
.breadcrumbs {
    padding: 33px 0 0 0;
    margin: 0 0 77px 0;
}

.breadcrumbs__row {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 7px;
}

.breadcrumbs__row li,
.breadcrumbs__row li a {
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: -0.03em;
    color: #828282;
}

.breadcrumbs__row li a {
    display: flex;
    align-items: center;
    gap: 0 7px;
    text-decoration: none;
}

.breadcrumbs__row li a::after {
    content: '';
    height: 15px;
    width: 1px;
    background: #828282;
    margin-bottom: -3px;
}

@media(max-width: 1024px) {
    .breadcrumbs {
        padding: 0;
        margin: 0 0 48px 0;
    }

    .breadcrumbs__row {
        flex-wrap: wrap;
        gap: 7px;
    }
}


/* end breadcrumbs */

/* content-page */
.content-page {
    padding: 0 0 170px 0;
}

.content-page__cms {
    padding: 0 0 0 96px;
    margin: 39px 0 0 0;
}

.content-page__cms p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 50px 0;
}

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

.content-page__cms ul {
    padding: 0;
    margin: 0 0 60px 0;
    list-style-position: inside;
}

.content-page__cms ul li {
    margin: 0 0 28px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
}


.content-page__cms ul li:last-child {
    margin: 0;
}

@media(max-width: 1024px) {
    .content-page__cms {
        padding: 0;
        margin: 30px 0 0 0;
    }

    .content-page__cms p {
        font-size: 16px;
        line-height: 30px;
        margin: 0 0 30px 0;
    }

    .content-page__cms ul {
        margin: 0 0 30px 0;
    }

    .content-page__cms ul li {
        font-size: 16px;
        line-height: 30px;
    }
}

/* end content-page */

/* service-page */
.service-page {
    padding: 0 0 170px 0;
}

/* end service-page */

/* service-inner-page */
.service-inner-page {}

.contact-us--service {
    margin: 0;
}

.service--portfolio {
    padding: 160px 0 170px 0;
}

.service-inner-page__row {
    display: flex;
    gap: 0 50px;
}

.service-inner-page__content {
    max-width: 843px;
    width: 100%;
}

.service-inner-page__content p {
    padding: 0;
    margin: 0 0 40px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
}

.service-inner-page__content ul {
    padding: 0;
    margin: 0;
}

.service-inner-page__content ul li {
    list-style-position: inside;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 27px 0;
}

.service-inner-page__content ul li:last-child {
    margin: 0;
}

@media(max-width: 1440px) {
    .service-inner-page {
        padding: 0 0 80px 0;
    }

    .service-inner-page__img {
        max-width: 600px;
    }

    .service-inner-page__img img {
        object-fit: contain;
        width: 100%;
    }
}

@media(max-width: 991px) {

    .service-inner-page__row {
        flex-wrap: wrap;
    }

    .service-inner-page__img {
        width: 100%;
        max-width: 100%;
        margin: 0 0 46px 0;
    }

    .service-inner-page__content {
        max-width: 100%;
        padding: 0 15px;
    }

    .service-inner-page__content p {
        font-size: 16px;
        line-height: 30px;
        margin: 0 0 38px 0;
    }

    .service-inner-page__content ul li {
        font-size: 16px;
        line-height: 30px;
    }

    .service-inner-page__content ul li strong {
        font-size: 18px;
    }

    .service--portfolio {
        padding: 100px 0;
    }
}

/* end service-inner-page */

/* stage-work */
.stage-work {
    padding: 88px 0 92px 0;
    background: var(--seryy-svetlyy);
}

.stage-work__item-number {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 20px 0;
}

.stage-work__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
}

.stage-work__item-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #828282;
    margin: 9px 0 0 0;
}

@media(max-width: 991px) {
    .stage-work {
        padding: 62px 0 104px 0;
    }

    .stage-work__row {
        gap: 32px 0;
    }
}

/* end stage-work */

/* portfolio-page */
.portfolio-page {
    padding: 0 0 170px 0;
}

.portfolio-page .title-inner-block {
    margin: 0 0 60px 0;
}

.portfolio-page .portfolio__row {
    gap: 34px 0;
}

.portfolio-page .portfolio__btn {
    margin-top: 96px;
}

@media(max-width: 1024px) {

    .portfolio-page .container--portfolio,
    .portfolio .container--portfolio {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .portfolio-page .portfolio__row,
    .portfolio .portfolio__row {
        gap: 11px;
    }

    .portfolio-page .portfolio__row>*,
    .portfolio .portfolio__row>* {
        padding: 0;
        margin: 0;
        max-width: calc(33.33% - (11px * 2) / 3);
    }
}

@media(max-width: 991px) {
    .portfolio-page .portfolio__item {
        height: 613px;
    }

    .portfolio-page .portfolio__row>* {
        max-width: 100%;
    }

    .portfolio-page .portfolio__btn {
        margin: 40px auto 0 auto;
        max-width: calc(100% - 15px);
    }

    .portfolio .portfolio__row {
        flex-direction: column;
    }

    .portfolio .portfolio__row>* {
        max-width: 100%;
    }
}

/* end portfolio-page */

/* faq-page */
.faq-page {
    padding: 0 0 170px 0;
}

.faq-page .title-inner-block {
    margin: 0 0 50px 0;
}

.faq-page__list {
    padding: 0 0 0 96px;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.faq__item-head {
    border: 1px solid #bdbdbd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 99px 0 66px;
    height: 75px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 21px;
    line-height: 21px;
    color: var(--chernyy);
    transition: .2s ease-in;
}

.faq__item-head-icon {
    position: relative;
    height: 20px;
    width: 20px;
    display: block;
}

.faq__item-head-icon::before,
.faq__item-head-icon::after {
    content: '';
    width: 18px;
    height: 4px;
    background: var(--chernyy);
    position: absolute;
    display: block;
    transition: .2s ease-in;
}

.faq__item-head-icon::before {
    top: 9px;
}

.faq__item-head-icon::after {
    transform: rotate(90deg);
    top: 9px;
}

.faq__item.active .faq__item-head {
    background: var(--chernyy);
    border-color: var(--chernyy);
    color: #fff;
}

.faq__item.active .faq__item-head-icon::after {
    opacity: 0;
    visibility: hidden;
}

.faq__item.active .faq__item-head-icon::before {
    background: #fff;
}

.faq__item-body {
    padding: 47px 0 0 66px;
    display: none;
}

.faq__item.active .faq__item-body {
    display: block;
}

.faq__item-body p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
}

@media(max-width: 1024px) {
    .faq-page .title-inner-block {
        margin: 0 0 30px 0;
    }

    .faq-page__list {
        padding: 0;
        gap: 20px 0;
    }

    .faq__item-head {
        font-size: 18px;
        line-height: 20px;
        padding: 15px 19px 16px 25px;
        height: auto;
    }

    .faq__item-body {
        padding: 25px 25px 0 25px;
    }

    .faq__item-body p {
        font-size: 16px;
        line-height: 30px;
    }
}

/* end faq-page */

/* search-page */
.search-page {
    padding: 0;
}

.search-page .title-inner-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-page .title-inner-block span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 -20px 0;
}

.search-page__row {
    gap: 70px 0;
}

@media(max-width: 991px) {
    .search-page .title-inner-block {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 17px 0;
    }

    .search-page .title-inner-block span {
        font-size: 16px;
        line-height: 16px;
    }
}

/* end search-page */

/* popup */
.popup {
    display: none;
    max-width: 1721px;
    width: 100%;
    background: var(--chernyy);
    padding: 68px 94px;
}

.popup__form-search {
    position: relative;
    width: 100%;
}

.popup__form-search input {
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    padding: 0 122px 0 66px;
    height: 75px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 21px;
    line-height: 21px;
    color: #fff;
    background: transparent;
    width: 100%;
}

.popup__form-search input::placeholder {
    color: #fff;
}

.popup__form-search-btn {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 61px;
    top: 26px;
}

.popup__form-search-btn svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}

@media(max-width: 991px) {
    .popup {
        height: 100%;
        z-index: 99999;
        padding: 137px 15px;
    }

    .popup__form-search input {
        border: none;
        border-bottom: 1px solid #fff;
        padding: 0 0 13px 48px;
        height: auto;
        font-size: 18px;
        line-height: 18px;
    }

    .popup__form-search-btn {
        right: unset;
        left: 0;
        top: 0;
    }
}

/* end popup */

/* contact-page */
.contact-page {
    padding: 0 0 89px 0;
}

.contact-page__right h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 44px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 11px 0;
}

.control-group-top {
    display: flex;
    align-items: center;
    gap: 0 13px;
    margin: 0 0 18px 0;
}

.control-group-top input {
    display: flex;
    align-items: center;
    padding: 0 34px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    border: 1px solid var(--chernyy);
    width: 33.33%;
    background: #fff;
    height: 50px;
}

.contact-page__form .c-textarea {
    resize: none;
    height: 165px;
    border: 1px solid var(--chernyy);
    background: #fff;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    padding: 14px 34px;
    margin: 0 0 18px 0;
}

.btn-contact {
    background: var(--chernyy);
    color: #fff;
    border: 1px solid var(--chernyy);
}

.btn-contact:hover {
    background: #fff;
    color: var(--chernyy);
}

.contact-page__info {  
    gap: 45px 0; 
}

.contact-page__item {
    display: flex;
    gap: 0 32px;
    align-items: center;
}

.contact-page__item-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--chernyy);
}

.contact-page__item-info span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.contact-page__item-info a {
    text-decoration: none;
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 50px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.contact-page__item-info p {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 50px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

@media(max-width: 991px) {
    .contact-page__item-info span {
        font-size: 18px;
        line-height: 18px;
        margin: 0 0 16px 0;
    }

    .contact-page__item-info a {
        font-size: 22px;
        line-height: 22px;
    }

    .contact-page__item-info p {
        font-size: 22px;
        line-height: 25px;
    }

    .contact-page__right {
        margin: 46px 0 0 0;
    }

    .contact-page__right h3 {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 23px 0;
    }

    .control-group-top {
        flex-direction: column;
        gap: 25px 0;
    }

    .control-group-top input {
        width: 100%;
        padding: 0 28px;
    }

    .contact-page__form .c-textarea {
        padding: 19px 28px;
    }
}

/* end contact-page */

/* category-page */
.category-page {}

.category-item {
    display: block;
    text-decoration: none;
    transition: .2s ease-out;
    height: 272px;
}

.category-item:hover {
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.1);
}

.category-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--seryy-svetlyy);
    padding: 38px 44px 0 36px;
    height: 100%;
}

.category-item__info h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 74px 0;
}

.category-item__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #fff;
    max-width: 249px;
    width: 100%;
    border: 1px solid var(--chernyy);
    background: var(--chernyy);
    height: 36px;
    transition: .2s ease-in;
}

.category-item__btn svg {
    width: 14px;
    height: 8px;
    fill: #fff;
    transition: .2s ease-in;
}

.category-item__btn-mobile {
    display: none;
}

@media(max-width: 1024px) {
    .category-item__row {
        padding: 25px 20px;
    }

    .category-item__info h3 {
        font-size: 30px;
        line-height: 35px;
    }

    .category-item__img {
        max-width: 200px;
    }

    .category-item__img img {
        object-fit: contain;
        width: 100%;
    }
}

@media(max-width: 991px) {
    .category-item {
        height: auto;
    }

    .category-page__row {
        gap: 50px 0;
    }

    .category-item__row {
        flex-direction: column;
        padding: 22px 14px 114px 14px;
        position: relative;
    }

    .category-item__info h3 {
        margin: 0 0 14px 0;
        font-size: 25px;
        line-height: 25px;
    }

    .category-item__btn {
        position: absolute;
        bottom: 34px;
        max-width: calc(100% - 28px);
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
        height: 60px;
        font-size: 20px;
        line-height: 20px;
    }

    .category-item__btn svg {
        width: 20px;
        height: 12px;
    }
}

/* end category-page */

/* partners-page */
.partners-page {}

.partners-page__content {
    padding: 0 0 0 90px;
    margin: 0;
}

.partners-page__content p {
    margin: 0 0 40px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
}

.partners-page__content p:last-child {
    margin: 0;
}

.partners-page__row {
    margin: 110px 0 0 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.partners-item {
    max-width: 338px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 151px;
    border-right: 1px solid #bdbdbd;
    text-decoration: none;
}

.partners-item:nth-child(n + 6) {
    border-top: 1px solid #bdbdbd;
}

.partners-item:nth-child(5n) {
    border-right: none;
}

.partners-item img {
    filter: grayscale(100%);
    transition: .2s ease-in;
}

.partners-item:hover img {
    filter: grayscale(0);
}

@media(max-width: 1440px) {
    .partners-item img {
        max-width: 200px;
    }
}

@media(max-width: 1024px) {
    .partners-item img {
        max-width: 150px;
    }
}

@media(max-width: 991px) {
    .partners-page__content {
        padding: 0;
    }

    .partners-page__content p {
        font-size: 16px;
        line-height: 30px;
    }

    .partners-page__row {
        margin: 48px 0 0 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
    }

    .partners-item img {
        max-width: none;
    }

    .partners-item {
        width: 50%;
    }

    .partners-item:nth-child(n + 3) {
        border-top: 1px solid #bdbdbd;
    }

    .partners-item:nth-child(2n) {
        border-right: none;
    }

    .partners-item:nth-child(5) {
        border-right: 1px solid #bdbdbd;
    }

    .partners-item img {
        object-fit: contain;
        width: 80%;
    }
}

/* end partners-page */

/* gallery */
.gallery-top__arrows {
    display: flex;
    align-items: center;
    gap: 0 42px;
    justify-content: end;
    position: relative;
    margin: 0 0 40px 0;
}

.gallery__prev,
.gallery__next {
    position: unset;
    transform: none;
}

.gallery__prev svg,
.gallery__next svg {
    fill: var(--chernyy);
    stroke: var(--chernyy);
}

.gallery__pc-collage {
    display: grid;
    gap: 5px 4px;
    overflow: hidden;
    grid-template-columns: repeat(14, 1fr);
}

.gallery__pc-collage-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.gallery__pc-collage-item:first-child {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 6;
    height: 390px;
}

.gallery__pc-collage-item:nth-child(2) {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
    height: 390px;
}

.gallery__pc-collage-item:nth-child(3) {
    grid-column-start: 9;
    grid-column-end: 15;
    grid-row-start: 1;
    grid-row-end: 11;
    height: 785px;
}

.gallery__pc-collage-item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 11;
    height: 390px;
}

.gallery--about {
    padding: 0 0 170px 0;
}

.gallery--mobile {
    display: none;
}

.gallery__mobile-slide img {
    object-fit: contain;
    width: 100%;
}

.gallery__mobile-pagination {
    bottom: 0 !important;
}

@media(max-width: 991px) {
    .gallery--pc {
        display: none;
    }

    .gallery--mobile {
        display: block;
        padding: 0 0 98px 0;
    }

    .gallery__mobile {
        padding: 0 0 36px 0;
    }

    .gallery--about {
        padding: 0;
    }
}

/* end gallery */

/* video-block */
.video-block {
    position: relative;
    height: 614px;
    overflow: hidden;
}

.video-block__img {
    width: 100%;
    height: 100%;
}

.video-block__img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.video-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.video-overlay h2 {
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.03em;
    color: #fff;
    padding: 0;
    margin: 0 0 40px 0;
}

.video-overlay svg {
    width: 53px;
    height: 53px;
}


.video-hidden {
    display: none;
    width: 100%;
    height: 100%;
}

.video-visible {
    display: block;
    width: 100%;
    height: 100%;
}

/* end video-block */

/* work-about-us */
.work-about-us {
    padding: 170px 0 0 0;
}

.work-about-us__content {
    padding: 0 0 0 90px;
    margin: 0 0 70px 0;
}

.work-about-us__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 20px 0;
    padding: 0;
}

.work-about-us__content p:last-child {
    margin: 0;
}

.work-about-us__row {
    display: flex;
}

.work-about-us__icons {
    background: var(--seryy-svetlyy);
    padding: 113px 0 0 80px;
    width: 100%;
}

.work-about-us__icons-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 883px;
    gap: 50px 0;
}

.work-about-us__icons-item {
    width: 50%;
}

.work-about-us__icons-item-img {
    margin: 0 0 26px 0;
}

.work-about-us__icons-item h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    margin: 0 0 9px 0;
}

.work-about-us__icons-item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #828282;
    margin: 0;
}

@media(max-width: 1024px) {
    .work-about-us__img img {
        object-fit: contain;
        width: 100%;
    }

    .work-about-us__row {
        flex-direction: column;
    }

    .work-about-us__icons {
        padding: 37px 15px 89px 15px;
    }
}

@media(max-width: 991px) {
    .work-about-us {
        padding: 100px 0;
    }

    .work-about-us__img img {
        width: 100%;
        display: block;
    }

    .work-about-us__icons-row {
        flex-direction: column;
        gap: 45px 0;
    }

    .work-about-us__icons-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .work-about-us__icons-item p {
        text-align: center;
    }

    .work-about-us__icons-item h3 {
        font-size: 18px;
        line-height: 18px;
    }

    .work-about-us__content {
        padding: 0;
    }

    .work-about-us__content p {
        font-size: 16px;
        line-height: 30px;
    }
}

/* end work-about-us */

/* our-team */
.our-team {
    padding: 170px 0;
}

.our-team-item {}

.our-team-item__img {
    height: 506px;
}

.our-team-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our-team-item__info {
    margin: 17px 0 0 0;
}

.our-team-item__info h2 {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
}

.our-team-item__info p {
    padding: 0;
    margin: 5px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #828282;
}

@media(max-width: 991px) {
    .our-team {
        padding: 100px 0;
    }

    .our-team-item__img {
        height: auto;
    }
}

/* end our-team */

/* category-product-head */
.category-product-head {
    padding: 0 0 150px 0;
}

.category-product-head__row {
    gap: 19px 0;
}

.category-product-item {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--seryy-svetlyy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 25px;
    height: 161px;
    text-decoration: none;
    transition: 0.3s ease-out;
    overflow: hidden;
}

.category-product-item__info {
    max-width: 320px;
}

.category-product-item__info h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 20px 0;
}

.category-product-item__info span {
    display: flex;
    align-items: center;
    gap: 0 12px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: var(--chernyy);
}

.category-product-item__info span svg {
    width: 14px;
    height: 8px;
    fill: var(--chernyy);
    stroke: var(--chernyy);
}

.category-product-item:hover {
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.1);
}

.category-product-item img{
    max-width: 135px;
    max-height: 90%;
}

/* end category-product-head */

/* catalog-product */
.seo-block--catalog-product {
    padding: 130px 0;
}

.catalog-product {}

.catalog-product__row {
    display: flex;
    gap: 0 75px;
}

.catalog-product__filters-list {
    width: 100%;
    max-width: 370px;
    /*height: 100px;*/
    display: flex;
    flex-direction: column;
    gap: 50px 0;
}

.catalog-product__list {
    width: 100%;
    max-width: calc(100% - (370px + 75px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 59px 20px;
}

.catalog-product__item {
    width: 100%;
}

.category-product-head--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-inner-block__img {
    padding: 20px 0 0 0;
}

.category-product-head__content {
    padding: 0 0 0 93px;
}

.category-product-head__content p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
}

.category-product-head--brand {
    padding: 0 0 78px 0;
}

.catalog-product-btn-filter-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: var(--chernyy);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.catalog-product-btn-filter-mobile svg {
    width: 30px;
    height: 30px;
}

.catalog-product__filters-list-btn-close-mobile {
    display: none;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.catalog-product__filters-list-btn-close-mobile svg {
    width: 23px;
    height: 23px;
}

@media(max-width: 1441px) {
    .catalog-product__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 1200px) {
    .catalog-product__row {
        gap: 0 20px;

    }

    .catalog-product__list {
        max-width: calc(100% - (370px + 20px));
    }

    .category-product-head__row .col-xl-4 {
        width: 50%;
    }

    .catalog-product__item .product {
        padding: 0;
    }
}

@media(max-width: 1199px) {
    .catalog-product-btn-filter-mobile {
        display: flex;
    }

    .catalog-product__row {
        flex-direction: column;
    }

    .catalog-product__filters-list {
        max-width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        bottom: 0;
        overflow: auto;
        padding: 34px 15px 85px 15px;
        display: none;
    }

    .catalog-product__filters-list.show {
        display: flex;
    }

    .catalog-product__list {
        max-width: 100%;
    }

    .category-product-head {
        padding: 0 0 64px 0;
    }

    .category-product-item {
        padding: 0 12px;
        height: 161px;
    }

    .category-product-item__info h3 {
        font-size: 19px;
        line-height: 20px;
    }

    .catalog-product__filters-list-btn-close-mobile {
        display: flex;
        justify-content: end;
    }

    .category-product-head--flex {
        flex-direction: column;
        align-items: start;
        margin: 0 0 14px 0;
    }

    .category-product-head__content {
        padding: 0;
    }

    .category-product-head__content p {
        font-size: 16px;
        line-height: 30px;
    }

}

@media(max-width: 991px) {
    .category-product-head__row .col-xl-4 {
        width: 100%;
    }

    .catalog-product__list {
        gap: 35px 0;
    }
}

/* end catalog-product */

/* filter-item */
.filter-item {
    width: 100%;
}

.filter-item__title {
    display: flex;
    align-items: center;
    padding: 0 0 0 38px;
    gap: 0 13px;
    margin: 0 0 25px 0;
    height: 48px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.03em;
    color: #fff;
    background: var(--seryy);
    cursor: pointer;
}

.filter-item__title svg {
    transition: .2s ease-in;
    width: 12px;
    height: 8px;
    fill: none;
    stroke: #fff;
    transform: scale(-1);
}

.filter-item__checkbox-no-control {
    margin: 13px 0 0 0;
}

.filter-item__checkbox-no-control:first-child {
    margin: 0;
}

.filter-item__checkbox-no-control label {
    display: block;
    padding: 0 0 0 20px;
}

.filter-item__checkbox-no-control span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 17px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    cursor: pointer;
}

.filter-item__checkbox-no-control input:checked+span {
    font-weight: 500;
}

.filter-item__checkbox-control {
    margin: 20px 0 0 0;
}

.filter-item__checkbox-control:first-child {
    margin: 0;
}

.filter-item__checkbox-control label {
    display: block;
    cursor: pointer;
}

.filter-item__checkbox-control label span {
    display: block;
    position: relative;
    padding: 0 0 0 33px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 17px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.filter-item__checkbox-control label span::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border: 1px solid var(--seryy);
    border-radius: 1px;
    width: 16px;
    height: 16px;
    background: transparent;
    transition: .2s ease-in;
}

.filter-item__checkbox-control label span::after {
    content: '';
    display: block;
    border-radius: 1px;
    width: 10px;
    height: 10px;
    background: var(--chernyy);
    position: absolute;
    top: 3px;
    left: 3px;
    transform: scale(0);
    transition: .2s ease-in;
}

.filter-item__checkbox-control input:checked+span::after {
    transform: scale(1);
}

.filter-item__checkbox-control input:checked+span {
    font-weight: 600;
}

.filter-item__checkbox-control-no-margin {
    margin: 0;
}

.filter-item__body--flex {
    display: flex;
    align-items: center;
    gap: 23px 28px;
    flex-wrap: wrap;
}

.filter-item__range {
    /*width: 300px;*/
    margin: 50px auto 0; 
    position: relative;
}

.filter-item__slider {
    width: 100%;
    height: 4px;
    background: #ccc;
    border-radius: 5px;
    position: relative;
}

.filter-item__slider input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    position: absolute;
    top: -5px;
    left: 0;
}

.filter-item__slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
}

.filter-item__slider input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
}

.filter-item__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.filter-item__labels span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.filter-item.filter-item--hide .filter-item__title svg {
    transform: scale(1);
}

.filter-item.filter-item--hide .filter-item__body {
    display: none;
}

.filter-item.filter-item--hide .filter-item__range{
    display: none;
}

.filter-item .ui-slider-horizontal .ui-slider-handle{
    margin-left: 0;
}

.filter-item .ui-slider-horizontal .ui-slider-handle:last-child{
    margin-left: -7px;
}

.filter-item .ui-state-default,
.filter-item .ui-widget-content .ui-state-default {
    width: 10px;
    height: 10px;
    border: none;
    background: #44454A;
    border-radius: 50%;
    top: -4px;
    cursor: pointer
}

.filter-item .ui-widget.ui-widget-content {
    height: 1px;
    border: none!important;
    background: #BDBDBD;
}

.filter-item .ui-slider .ui-slider-range {
    height: 1px!important;
    background: #44454A;
}

.filter-item__range label{
    width: 50%;
    max-width: 50%;
}

.filter-item-input{  
    width: 100%;
    border: none;
    font-family: 'Open Sans';
    font-size: 17px;
    font-weight: 400;
    line-height: 23.15px;
    letter-spacing: -0.03em;
    padding: 0;
}

.filter-item__range label:last-child input{
    text-align: right;
}

/* end filter-item */

/* product-inner */

.product-inner__tabs-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 40px;
    margin: 0 0 60px 0;
    border-bottom: 1px solid #828282;
    width: 100%;
}

.product-inner__tab-btn {
    display: flex;
    align-items: center;
    border: none;
    background: none;
    padding: 0 70px;
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    height: 65px;
    transition: .2s ease-in;
    position: relative;
}

.product-inner__tab-btn.active,
.product-inner__tab-btn:hover {
    background: var(--seryy-svetlyy);
    font-family: var(--font-family);
    font-weight: 600;
}

.product-inner__tab-btn::before {
    transition: .2s ease-in;
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #828282;
    left: 0;
    visibility: hidden;
}

.product-inner__tab-btn.active::before,
.product-inner__tab-btn:hover::before {
    visibility: visible;
    width: 100%;
}

.product-inner__tabs-content {
    display: none;
}

.product-inner__tabs-content.active {
    display: block;
}

.product-inner__tabs-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 42px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0 0 25px 0;
}

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

.product-inner__tabs-content-table {
    border-collapse: collapse;
    width: 100%;
}

.product-inner__tabs-content-table tr td {
    border: 1px solid #bdbdbd;
    padding: 15px 74px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    width: 50%;
}

.product-inner__tabs-content-table tr:nth-child(2n) td {
    background: var(--svetlyy-seryy2);
}

.product-inner__tabs-content-table tr td:first-child {
    border-left: none;
}

.product-inner__tabs-content-table tr td:last-child {
    font-weight: 400;
    border-right: none;
}


.product-inner__tabs-notice {
    margin: 56px 0 0 0;
}

.product-inner__tabs-notice-wrap {
    display: flex;
    align-items: center;
    gap: 0 26px;
}

.product-inner__tabs-notice-wrap p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.03em;
    color: #4f4f4f;
    margin: 0;
}

.product-inner__tabs-notice-wrap svg {
    width: 48px;
    height: 48px;
}

.product-inner__head {
    padding: 0 0 128px 0;
}

.product-inner__head .title-block {
    margin: 0 0 41px 0;
}

.product-inner__head-row {
    display: flex;
    flex-wrap: wrap;
}

.product-inner__head-left {
    position: relative;
    max-width: 844px;
    width: 100%;
}

.product-inner__head-info {
    width: 100%;
    max-width: calc(100% - 844px);
    background: var(--seryy-svetlyy);
    position: relative;
    padding: 46px 0 0 76px;
}

.product-inner__head-info::before {
    content: '';
    background: var(--seryy-svetlyy);
    width: 100%;
    height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
}

.product-slider-prev {
    left: 24px;
}

.product-slider-next {
    right: 24px;
}

.product-slider-prev svg,
.product-slider-next svg {
    fill: var(--chernyy);
    stroke: var(--chernyy);
    width: 27px;
    height: 16px;
}

.product-inner__head-slider-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 92px 0;
}

.product-inner__head-left .product__info {
    left: 0;
    top: 0;
}

.product-inner__mobile-article {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    position: absolute;
    right: 0;
    top: 8px;
    display: none;
}

.product-inner-article {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 29px 0;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.product-inner-square-title {
    margin: 0 0 23px 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.product-inner-price-list {
    display: flex;
    align-items: center;
    gap: 0 34px;
    margin: 0 0 40px 0;
}

.new-price {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 35px;
    line-height: 35px;
    color: var(--chernyy);
}

.old-price {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
    color: #bdbdbd;
    text-decoration: line-through;
}

.product-inner-btns {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.product-inner__compare {
    width: 100%;
    max-width: 380px;
    background: #fff;
    gap: 0 17px;
    text-decoration: none;
    border: 1px solid transparent;
}

.product-inner__compare svg {
    width: 25px;
    height: 25px;
    transition: .2s ease-in;
}

.product-inner__compare:hover {
    background: var(--chernyy);
    color: #fff;
}

.product-inner__compare:hover svg {
    fill: #fff;
}

.product-inner__add {
    width: 100%;
    max-width: 380px;
    background: var(--chernyy);
    gap: 0 17px;
    color: #fff;
    border: 1px solid transparent;
}

.product-inner__add:active,
.product-inner__add:focus,
.product-inner__add:hover{
    background: var(--chernyy); 
    color: #fff;
}

.product-inner__add svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    transition: .2s ease-in;
}

@media(min-width: 992px) {
    .product-inner__add:hover {
        background: #fff;
        border-color: var(--chernyy);
        color: var(--chernyy);
    }

    .product-inner__add:hover svg {
        fill: var(--chernyy);
    }
}

.product-inner-installation {
    margin: 0 0 71px 0;
}

.product-inner-installation label {
    display: block;
    cursor: pointer;
}

.product-inner-installation label strong {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.product-inner-installation label span {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    font-family: var(--font-family);
    padding: 0 0 0 50px;
    position: relative;
    display: block;
}

.product-inner-installation label span::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 1px solid var(--chernyy);
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.product-inner-installation label span::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 1px;
    width: 16px;
    height: 16px;
    background: var(--chernyy);
    left: 4px;
    top: 4px;
    transform: scale(0);
    transition: .2s ease-in;
}

.product-inner-installation label input:checked+span::after {
    transform: scale(1);
}

.product-inner-square {
    display: flex;
    align-items: center;
    gap: 0 18px;
    margin: 0 0 43px 0;
}

.product-inner-square__item {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.product-inner-square__item.current span{

    border: 1px solid var(--seryy);
    font-weight: 600;
}

.product-inner-square__item span {
    width: 122px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 19px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    background: #fff;
    border: 1px solid transparent;
}

.product-inner-square__item input:checked+span {
    border: 1px solid var(--seryy);
    font-weight: 600;
}

.product-mobile-pagination {
    display: none;
}

@media(max-width: 1440px) {
    .product-inner__head {
        padding: 0 0 87px 0;
    }

    .product-inner__head-left {
        max-width: 50%;
    }

    .product-inner__head-info {
        max-width: 50%;
        padding: 26px 0 0 34px;
    }

    .product-inner-square {
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media(max-width: 1200px) {
    .popular-product__inner-item {
        width: 33.33%;
    }

    .popular-product__inner-item:nth-child(4) {
        display: none;
    }
}

@media(max-width: 991px) {
    .popular-product__inner-item {
        width: 50%;
    }

    .popular-product__inner-item:nth-child(3) {
        display: none;
    }

    .product-inner__tabs-notice-wrap {
        display: block;
    }

    .product-inner__tabs-notice-wrap p {
        font-size: 15px;
        line-height: 25px;
    }

    .product-inner__tabs-notice-wrap svg {
        float: left;
        margin: 0 10px 0 0;
        width: 23px;
        height: 23px;
    }

    .product-inner__tabs-content p {
        font-size: 16px;
        line-height: 30px;
    }

    .product-inner__tabs-btns {
        margin: 0 0 37px 0;
    }

    .product-inner__tabs-content-table tr td {
        padding: 21px 15px 19px 15px;
        font-size: 17px;
        line-height: 17px;
    }

    .product-inner__head-row {
        flex-direction: column;
    }

    .product-inner__head-left {
        max-width: 100%;
        padding: 73px 0 53px 0;
    }

    .product-inner__head-slider {
        padding: 0 0 39px 0;
    }

    .product-inner__head-info {
        max-width: 100%;
        padding: 27px 15px 40px 15px;
    }

    .product-inner__head-info::before {
        display: none;
    }

    .product-inner-article {
        display: none;
    }

    .product-inner__mobile-article {
        display: block;
    }

    .product-inner-square-title {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 20px 0;
    }

    .product-inner-installation label span::before {
        top: 10px;
    }

    .product-inner-installation label span::after {
        top: 14px;
    }

    .product-inner-square {
        margin: 0 0 38px 0;
    }

    .product-inner-btns {
        flex-direction: column;
        gap: 15px 0;
    }

    .product-inner__compare,
    .product-inner__add {
        max-width: 100%;
    }

    .product-slider-next,
    .product-slider-prev {
        display: none;
    }

    .product-mobile-pagination {
        display: flex;
    }

    .product-inner__head-slider-slide a {
        padding: 0;
        height: 253px;
    }

    .product-inner__head-slider-slide a img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

@media(max-width: 600px) {
    .product-inner__tabs-btns {
        gap: 0 10px;
    }

    .product-inner__tab-btn {
        padding: 0 15px;
        font-size: 18px;
        line-height: 18px;
    }
}

/* end product-inner */

/* compare-page */
.compare-page {
    padding: 0 0 170px 0;
}

.compare-page .title-inner-block {
    margin: 0 0 70px 0;
}

@media(min-width: 992px){
    .compare-page__list{
        overflow: auto;
    }
}

.compare-page__list-head {
    display: flex;
}

.compare-page__list-items {
    display: flex;
}

.compare-head-item {
    flex: 1 0 25%;
}

.compare-item {
    flex: 1 0 25%;
}

.compare-item--info {
    max-width: 25%;
}

.compare-head-item--info {
    padding: 85px 38px 0 38px;
    background: var(--svetlyy-seryy2);
    min-height: 472px;
    max-width: 25%;
}

.compare-head-item--info h2 {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    padding: 0;
}

.compare-head-item--info ol {
    padding: 0;
    margin: 50px 0 0 0;
}

.compare-head-item--info ol li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    margin: 0 0 20px 0;
    list-style-position: inside;
}

.compare-head-item--info ol li:last-child {
    margin: 0;
}

.compare-item table {
    border-collapse: collapse;
    width: 100%;
    padding: 0;
    margin: 0;
}

.compare-item table tr td {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
    padding: 0 28px 0 28px;
    height: 60px;
    border: 1px solid #bdbdbd;
}

.compare-item table tr:nth-child(2n) td {
    background: var(--svetlyy-seryy2);
}

.compare-item table tr td strong {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.compare-page__slider {
    display: none;
}

.compare-page-swiper-slide-tehnical {
    border-top: 1px solid #bdbdbd;
}

.compare-page-swiper-slide-tehnical__item {
    border-right: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
    display: flex;
    flex-direction: column;
    padding: 11px 19px 12px 19px;
    gap: 5px 0;
}

.compare-page-swiper-slide-tehnical__item span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.03em;
    color: #828282;
}

.compare-page-swiper-slide-tehnical__item strong {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.compare-page-swiper {
    padding: 0 0 38px 0;
}

@media(max-width: 1440px) {
    .compare-head-item {
        flex: 1 0 25%;
    }

    .compare-head-item--info {
        max-width: 25%;
    }

    .compare-head-item .product__img img {
        object-fit: contain;
        width: 100%;
    }
}

@media(max-width: 1025px) {
    .compare-page__list {
        display: none;
    }

    .compare-page__slider {
        display: block;
    }
}


/* end compare-page */

/* basket-page */
.basket-page {
    padding: 0 0 100px 0;
}

.basket-page .title-inner-block {
    margin: 0 0 40px 0;
}

.btn-order {
    background: var(--chernyy);
    margin: 57px auto 0 auto;
    max-width: 544px;
    color: #fff;
    border: 1px solid transparent;
    transition: .2s ease-in;
}

.btn-order:hover {
    background: #fff;
    color: var(--chernyy);
    border-color: var(--chernyy);
}

.btn-order[disabled] {
    background-color: #ddd;
    color: #999;
    cursor: default;
    border-color: #ddd;
}

.order-small-security {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #747474;
    margin: 19px 0 0 0;
}

.basket-page__product-head {
    display: flex;
    align-items: center;
    padding: 0 0 11px 0;
}

.product-basket-head-item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
}

.product-w-name {
    width: 100%;
    max-width: 659px;
}

.product-w-price {
    width: 100%;
    max-width: 186px;
}

.product-w-count {
    width: 100%;
    max-width: 234px;
}

.product-w-install {
    width: 100%;
    max-width: 293px;
}

.product-w-total {
    width: 100%;
    max-width: 300px;
}

.product-w-remove {
    width: 100%;
    max-width: 47px;
}

.product-basket-item {
    background: var(--seryy-svetlyy);
    padding: 45px 0;
    border-bottom: 2px solid #e0e0e0;
}

.product-basket-item:last-child {
    border: none;
}

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

.basket-page__product-bottom {
    margin: 18px 0 0 0;
}

.basket-page__product-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 18px 0;
    padding: 0 149px 0 0;
}

.basket-page__product-bottom-sale,
.basket-page__product-bottom-total {
    display: flex;
    align-items: center;
    gap: 0 47px;
    width: 100%;
    justify-content: end;
}

.basket-page__product-bottom-sale strong {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
    text-align: right;
}

.basket-page__product-bottom-sale span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
    width: 100%;
    max-width: 200px;
}

.basket-page__product-bottom-total strong {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--chernyy);
    text-align: right;
}

.basket-page__product-bottom-total span {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
    width: 100%;
    max-width: 200px;
}

.product-basket-info {
    width: 100%;
    max-width: 659px;
    display: flex;
    align-items: center;
    gap: 0 49px;
}

.product-basket-info__img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.product-basket-info__img img{
    max-width: 200px;
}

.product-basket-info__right-name {
    display: block;
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--chernyy);
}

.product-basket-info__right-name strong {
    font-weight: 600;
}

.product-basket-info__right p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #828282;
    margin: 5px 0 0 0;
}

.product-basket-price {
    width: 100%;
    max-width: 186px;
    display: flex;
    flex-direction: column;
}

.product-basket-price .new-price {
    font-size: 20px;
    line-height: 20px;
}

.product-basket-price .old-price {
    font-size: 18px;
    line-height: 18px;
}

.product-basket-count {
    width: 100%;
    max-width: 234px;
}

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

.count-block__minus,
.count-block__plus {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--chernyy);
    cursor: pointer;
    border: none;
}

.count-block__value {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 52px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
    color: var(--chernyy);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* end count */

.product-basket-install {
    width: 100%;
    max-width: 293px;
    position: relative;
    display: flex;
    align-items: center;
}

.product-basket-install__label {
    /*cursor: pointer;*/
    width: 100%;
}

.product-basket-install__label span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    /*padding: 0 0 0 36px;*/
    position: relative;
    display: flex;
    width: 100%;
}

.product-basket-install__label span i {
    font-style: normal;
}
/*
.product-basket-install__label span::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    top: -3px;
    border: 1px solid var(--chernyy);
}

.product-basket-install__label span::after {
    content: '';
    position: absolute;
    border-radius: 1px;
    width: 16px;
    height: 16px;
    left: 4px;
    top: 1px;
    background: var(--chernyy);
    transform: scale(1);
    transition: .2s ease-in;
}

.product-basket-install__label input:checked+span::after {
    transform: scale(1);
}
*/

.product-basket-install__label_empty{
    max-width: 100px;
    text-align: center;
}

.product-basket-total {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: var(--chernyy);
}

.product-basket-total strong {
    font-weight: 600;
}

.product-basket-remove {
    width: 100%;
    max-width: 47px;
}

.product-basket-remove__btn {
    width: 100%;
    height: 123px;
    background: var(--chernyy);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    margin: 0;
}

.product-basket-remove__btn span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    color: #fff;
    transform: rotate(45deg);
}

.basket-page__order {
    padding: 80px 0 0 0;
}

.basket-page__order-title {
    margin: 0 0 38px 0;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 45px;
    line-height: 45px;
    letter-spacing: -0.03em;
    color: var(--chernyy);
}

.basket-page__order-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: var(--chernyy);
    margin: 0 0 20px 0;
}

.basket-page__order-req-fields {
    margin: 15px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #747474;
}

.basket-page__order-top {
    margin: 0 0 55px 0;
}

.basket-page__order-center {
    margin: 0 0 55px 0;
}

.order-basket-control-row {
    display: flex;
    align-items: center;
    gap: 0 27px;
}

.order-basket-control {
    max-width: 402px;
    width: 100%;
}

.order-basket-control input {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    border: 1px solid var(--chernyy);
    padding: 0 29px;
}

.order-basket-control textarea {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--chernyy);
    border: 1px solid var(--chernyy);
    padding: 19px 29px;
    resize: none;
}

.order-basket-control-checkbox {
    max-width: 402px;
    width: 100%;
}

.order-basket-control-checkbox__label {
    display: flex;
    align-items: center;
    border: 1px solid var(--chernyy);
    height: 60px;
    cursor: pointer;
    padding: 0 24px 0 24px;
    justify-content: space-between;
}

.order-basket-control-checkbox__label span {
    position: relative;
    padding: 0 0 0 48px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--chernyy);
    position: relative;
}

.order-basket-control-checkbox__label span::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid var(--chernyy);
    border-radius: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: .2s ease-in;
}

.order-basket-control-checkbox__label span::after {
    content: '';
    display: block;
    border-radius: 1px;
    width: 16px;
    height: 16px;
    background: var(--chernyy);
    position: absolute;
    top: 50%;
    left: 4px;
    transform: scale(0) translateY(-50%);
    transition: .2s ease-in;
}

.order-basket-control-checkbox__label input:checked+span::after {
    transform: scale(1) translateY(-50%);
}

.order-basket-control-checkbox__icon {
    width: 30px;
    height: 30px;
}

.order-basket-control-address {
    flex-wrap: wrap;
    gap: 20px 27px;
    margin: 20px 0 0 0;
    display: none;
}

.order-basket-control-address.show {
    display: flex;
}

.product-basket-install__label--no-pc {
    display: none;
}

@media(max-width: 1440px) {
    .product-basket-info {
        gap: 0 24px;
    }

    .product-basket-info__right-name {
        font-size: 17px;
        line-height: 17px;
    }

    .product-basket-info__right p {
        font-size: 15px;
        line-height: 20px;
    }

    .product-basket-price .new-price {
        font-size: 18px;
        line-height: 18px;
    }

    .product-basket-price .old-price {
        font-size: 16px;
        line-height: 16px;
    }

    .product-basket-install__label span i {
        display: none;
    }

    .product-basket-install__label span::before {
        position: unset;
    }

    .product-basket-install__label span {
        padding: 0;
    }

    .product-basket-install__label span::after {
        top: 4px;
    }

    .product-w-install,
    .product-basket-install {
        max-width: 200px;
    }
}

@media(max-width: 1200px) {

    .product-w-name,
    .product-basket-info {
        max-width: 398px;
    }

    .product-w-price,
    .product-basket-price {
        max-width: 156px;
    }

    .product-w-count,
    .product-basket-count {
        max-width: 184px;
    }

    .product-w-install,
    .product-basket-install {
        max-width: 160px;
    }

    .product-w-total,
    .product-basket-total {
        max-width: 241px;
    }

    .product-w-remove,
    .product-basket-remove {
        max-width: 33px;
    }

    .order-basket-control-row {
        flex-wrap: wrap;
        gap: 20px 30px;
    }

    .order-basket-control,
    .order-basket-control-checkbox {
        max-width: calc(33.50% - (30px * 3 / 4));
    }

    .order-basket-control--textarea {
        max-width: 100%;
    }

    .order-basket-control textarea {
        height: 83px;
    }

    .basket-page__order-title {
        position: relative;
        padding: 20px 0 0 60px;
    }

    .basket-page__order-title::before {
        content: "";
        height: 1px;
        width: 123px;
        position: absolute;
        left: 0;
        top: 0;
        background: #000;
    }

    .basket-page .title {
        padding-left: 60px;
        font-size: 40px;
        line-height: 40px;
    }
}

@media(max-width: 991px) {
    .basket-page .title {
        padding-left: 60px;
        font-size: 35px;
        line-height: 35px;
        padding: 20px 0 0 22px;
    }

    .basket-page__order-title {
        font-size: 35px;
        line-height: 35px;
        padding: 20px 0 0 22px;
    }

    .basket-page__product-head {
        display: none;
    }

    .basket-page__product-bottom-row {
        padding: 0;
    }

    .basket-page__product-bottom-sale span,
    .basket-page__product-bottom-total span {
        max-width: none;
        width: auto;
    }

    .order-basket-control,
    .order-basket-control-checkbox {
        max-width: 100%;
    }

    .order-basket-control--textarea {
        margin: 37px 0 0 0;
    }

    .order-basket-control--textarea textarea {
        height: 91px;
    }

    .product-basket-item {
        padding: 23px 0 41px 0;
        position: relative;
    }

    .product-basket-item__row {
        flex-wrap: wrap;
    }

    .product-basket-info {
        max-width: 100%;
        margin: 0 0 21px 0;
    }

    .product-basket-remove {
        position: absolute;
        width: 30px;
        height: 30px;
        top: 12px;
        right: 14px;
    }

    .product-basket-remove__btn {
        height: 100%;
    }

    .product-basket-install {
        display: none;
    }

    .count-block__minus,
    .count-block__plus {
        width: 35px;
        height: 35px;
    }

    .count-block__value {
        width: 38px;
        height: 35px;
    }

    .product-basket-install__label--no-pc {
        display: block;
    }

    .product-basket-install__label span {
        align-items: center;
        gap: 0 9px;
    }

    .product-basket-install__label span i {
        display: block;
    }

    .product-basket-info__right p {
        margin-bottom: 20px;
    }

    .product-basket-price,
    .product-basket-count,
    .product-basket-total {
        max-width: 33.33%;
    }

    .btn-order {
        max-width: calc(100% - 30px);
    }
}

@media(max-width: 440px) {
    .product-basket-total {
        flex-direction: column;
        gap: 5px 0;
    }
}

/* end basket-page */
.ms2_cost_discount{
    opacity: 0;
}

.ms2_cost_discount.active{
    opacity: 1;
}

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

/*
======================================*/
.search-result .ui-autocomplete{
    position: static;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.search-result .ui-widget.ui-widget-content{
    border: none;
    background: transparent;
    color: #fff;
    padding: 30px 20px;
}

@media(min-width: 992px){
    .search-result .ui-widget.ui-widget-content{ 
        padding: 60px;
    }
}

.search-result .ui-menu .ui-menu-item-wrapper{
    padding: 0 !important;
    border: none !important ;
    font-family: 'Open Sans';
    font-size: 21px;
    font-weight: 400;
    line-height: 28.6px;
}

.search-result .ui-state-active, 
.search-result .ui-autocomplete.ui-widget-content .ui-state-active, 
.search-result .ui-widget-header .ui-state-active, 
.search-result a.ui-button:active, 
.search-result .ui-button:active, 
.search-result .ui-button.ui-state-active:hover {
  border: none !important ;
  background: transparent !important ;
  font-weight: normal ; 
  color: inherit !important;
  padding: 0;
  margin: 0;
}

.search-result .ui-menu .ui-menu-item{
    margin-bottom: 10px;
}

.search-result .ui-autocomplete.ui-widget-content .ui-state-active{
    font-weight: 500 ;
}