@font-face {
    font-family: "MuseoSansCyrl-300";
    src: url("../fonts/MuseoSansCyrl-300.eot"), url("../fonts/MuseoSansCyrl-300.eot?#iefix") format("embedded-opentype"),
        url("../fonts/MuseoSansCyrl-300.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-300.woff") format("woff"),
        url("../fonts/MuseoSansCyrl-300.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MuseoSansCyrl-700";
    src: url("../fonts/MuseoSansCyrl-700.eot"), url("../fonts/MuseoSansCyrl-700.eot?#iefix") format("embedded-opentype"),
        url("../fonts/MuseoSansCyrl-700.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-700.woff") format("woff"),
        url("../fonts/MuseoSansCyrl-700.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/***
====================================================================
RESET STYLES
====================================================================
 ***/
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    margin: 0;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    background: #fff;
    font-family: var(--primary300-font-family);
    font-weight: 300;
}

main {
    display: block;
    min-height: 100vh;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    display: block;
}

hr,
img {
    border: 0;
}

:root {
    --black-color: #0d0d0d;
    --greenDefault-color: #6abf4b;
    --greenActive-color: #498a31;
    --text_p-color: #606060;
    --btnDefault-color: #cbcbcb;
    --btnDisabled-color: #e0e0e0;
    --primary300-font-family: "MuseoSansCyrl-300";
}

/***
====================================================================
  COMPONENTS APP STYLES
====================================================================
***/

.main__wrapper {
    max-width: 1368px;
    margin: 0 auto;
    padding-left: 70px;
    padding-right: 70px;
}

h2,
.section__title {
    color: var(--black-color);
    font-size: 53px;
    line-height: 59px;
    font-weight: 400;
    position: relative;
}

p,
.section__text-p {
    color: var(--text_p-color);
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

h3,
.section__title-small {
    color: var(--black-color);
    font-size: 34px;
    line-height: 40px;
    font-weight: 300;
    position: relative;
}

.btn {
    position: relative;
    display: inline-block;
    background: var(--btnDefault-color);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2em;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 2px;
    overflow: hidden;
    transition: background ease-in-out 0.2s;
    -webkit-transition: background ease-in-out 0.2s;
    -moz-transition: background ease-in-out 0.2s;
}

.btn:hover {
    background: var(--greenDefault-color);
}

.center--title,
.center--text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.center--btn {
    display: block;
    max-width: 145px;
    margin-left: auto;
    margin-right: auto;
}

input[type="text"],
input[type="email"],
input[type="name"],
input[type="tel"],
input[type="number"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    display: block;
    padding: 0;
}

input[type="submit"] {
    border: 0;
}

input:focus,
textarea:focus,
select:focus {
    background-color: none;
}

.m-24 {
    margin-bottom: 24px;
}

.m-32 {
    margin-bottom: 32px;
}

.m-45 {
    margin-bottom: 45px;
}

@media screen and (max-width: 992px) {
    .main__wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media screen and (max-width: 768px) {
    .m-32,
    .m-45 {
        margin-bottom: 16px;
    }

    .main__wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    h2,
    .section__title {
        font-size: 21px;
        line-height: 22px;
        font-weight: 600;
    }

    h3,
    .section__title-small {
        font-size: 21px;
        line-height: 22px;
    }

    .section__title-small {
        font-weight: 600;
    }

    .card__title {
        font-weight: 600;
    }
}

/***
====================================================================
  HEADER STYLES
====================================================================
 ***/
.main__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    height: 80px;
    transition: box-shadow ease 0.3s;
}

.header__with_s {
    box-shadow: none;
}

.header__wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1368px;
    height: 100%;
    padding-left: 70px;
    padding-right: 70px;
}

.header__items {
    height: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.header__logotype {
    position: relative;
    margin-right: auto;
}

.header__contacts {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin-right: 68px;
}

.header__contacts .header__phone {
    line-height: 20px;
    font-size: 12px;
    color: #000000;
}

.header__contacts .header__phone:first-child {
    margin-right: 10px;
}

.header__nav {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.header__search {
    position: relative;
}

.header__menu {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: block;
}

.header__bars {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.header__bars div {
    position: relative;
    margin-bottom: 5px;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    border-radius: 4px;
    transition: all ease-in-out 0.3s;
}

.header__bars div:last-child {
    margin-bottom: 0;
}

.header__menu:hover .header__bars div {
    background: var(--greenDefault-color);
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    transform: rotate(-45deg) translate(-5px, 5px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
    transform: rotate(45deg) translate(-5px, -5px);
}

.change .bar1,
.change .bar3 {
    background: var(--greenDefault-color);
}

@media screen and (max-width: 992px) {
    .header__wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }

    .header__contacts {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header__wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main__header {
        height: 56px;
    }
}

/***
====================================================================
 HEADER-MENU STYLES
====================================================================
 ***/
.header__menu-open {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    padding-top: 64px;
    padding-bottom: 32px;
    background: #fff;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
    box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    z-index: 998;
    visibility: hidden;
    opacity: 0;
}

.header__menu-open.menu-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header__nav_content {
    position: relative;
    margin-bottom: 88px;
}

.header__nav_content nav {
    display: flex;
}

.nav__content_list {
    position: relative;
    margin-bottom: 16px;
    width: 420px;
}

.nav__content_list:last-child {
    margin-bottom: 0;
}

.nav__content_item {
    position: relative;
    margin-bottom: 8px;
}

.nav__content_item:last-child {
    margin-bottom: 0;
}

.nav__link {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #000;
    font-weight: 300;
}

.nav__link-bold {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 22px;
    font-size: 14px;
    margin-bottom: 8px;
}

.company__in {
    position: relative;
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
}

.company__in_img {
    width: 100%;
    height: 100%;
    max-width: 286px;
    position: relative;
}

.mobile__list {
    display: none !important;
}

.menu-open__phone-list_mobile {
    display: none !important;
    margin-bottom: 32px;
}

.mobile__phone {
    font-size: 14px;
    color: #000;
    line-height: 24px;
}

.mobile__phone:first-child {
    margin-right: 10px;
}

.accordion {
    color: #000;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-size: 14px;
    transition: 0.5s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.accordion:last-child {
    margin-bottom: 0;
}

.active.more__info::after {
    transform: rotate(130deg);
}

.active.more__info::before {
    transform: rotate(-130deg);
}

.more__info {
    position: relative;
}

.more__info::before {
    content: "";
    width: 2px;
    height: 5px;
    transform: rotate(-45deg);
    position: absolute;
    right: 13px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--text_p-color);
    transition: all 0.3s;
}

.more__info::after {
    content: "";
    width: 2px;
    height: 5px;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--text_p-color);
    transition: all 0.3s;
}

.panel {
    padding: 0 15px;
    color: #000;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.panel__link {
    text-transform: uppercase;
    font-weight: 300;
    color: #000;
    font-size: 12px;
    margin-bottom: 15px;
}

.panel__link:last-child {
    margin-bottom: 30px;
}

@media screen and (max-width: 1242px) {
    .nav__content_list {
        width: 360px;
    }
}

@media screen and (max-width: 992px) {
    .header__nav_content {
        margin-bottom: 48px;
    }

    .header__menu-open {
        padding-top: 32px;
    }

    .header__nav_content nav {
        display: block;
    }

    .desktop__list {
        display: none !important;
    }

    .mobile__list {
        display: block !important;
    }

    .menu-open__phone-list_mobile {
        display: flex !important;
    }
}

@media screen and (max-width: 768px) {
    .menu-open__phone-list_mobile {
        margin-bottom: 16px;
    }

    .header__menu-open {
        padding-top: 32px;
        top: 56px;
    }
}

/***
====================================================================
 INTRO__SECTION STYLES
====================================================================
 ***/

.intro__section {
    position: relative;
    padding-top: 128px;
    padding-bottom: 160px;
}

.intro__slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.intro__slider::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 72px;
    background: url("../img/Cross__item.svg") no-repeat;
    background-size: contain;
    z-index: 3;
}

.intro__background-decorate {
    position: absolute;
    top: 168px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--greenDefault-color);
    z-index: 1;
}

.intro__background-decorate::before {
    display: block;
    content: "";
    position: relative;
    background: var(--greenDefault-color);
    width: 100%;
    height: inherit;
    margin-top: 16px;
}

.intro__background-decorate::after {
    display: block;
    content: "";
    position: relative;
    background: var(--greenDefault-color);
    width: 100%;
    height: inherit;
    margin-top: 8px;
}

.intro__logotype {
    position: absolute;
    z-index: 3;
    margin-left: 47px;
    margin-top: 45px;
}

.intro__logotype_img {
    width: 104px;
    height: 32px;
}

#intro__slider {
    position: relative;
    border-radius: 4px;
    background: linear-gradient(180deg, #ececec 0%, #f8f8f8 99.99%, rgba(248, 248, 248, 0) 100%);
}

.slider__slide {
    position: relative;
    display: flex;
    width: 100%;
    height: 520px;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 48px;
}

.slider__content {
    position: relative;
    height: 100%;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.slider__card {
    position: relative;
    max-width: 670px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.slider__card_img {
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    top: 0;
    pointer-events: none;
}

.slide__marker {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
}

.slide__title {
    line-height: 40px;
    font-size: 34px;
    margin-bottom: 27px;
}

.animate-in {
    -webkit-animation-duration: 700ms !important;
    animation-duration: 700ms !important ;
    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
}

.animate-out {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.slider__slide .btn {
    padding: 6px 3px;
}

.slider__slide .btn.center--btn {
    max-width: 100px;
}

@media screen and (max-width: 992px) {
    .intro__section {
        padding-top: 80px !important;
        padding-bottom: 130px !important;
    }

    .intro__section .main__wrapper {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .intro__background-decorate,
    .intro__background-decorate::before,
    .intro__background-decorate::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .intro__section {
        padding-top: 56px !important;
        padding-bottom: 96px !important;
    }

    .intro__logotype {
        display: none;
    }

    .slider__slide {
        height: 448px;
    }

    .slider__card {
        max-width: 380px;
    }

    .slide__title {
        font-size: 21px;
        line-height: 22px;
    }
}

/***
====================================================================
 ABOUT__SECTION STYLES
====================================================================
 ***/
.about__section {
    padding-bottom: 160px;
}

.about__content .section__text-p {
    max-width: 800px;
}

@media screen and (max-width: 992px) {
    .about__section {
        padding-bottom: 140px;
    }
}

@media screen and (max-width: 768px) {
    .about__section {
        padding-bottom: 96px;
    }
}

/***
====================================================================
 PRODUCT__SECTION STYLES
====================================================================
 ***/
.products__section {
    position: relative;
    padding-bottom: 175px;
}

.tab-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.tab-mobile-wrapper {
    display: none !important;
}

.tab-wrapper.tabs-desktop-header {
    display: flex;
}

.tab-wrapper .tabs-header {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding-top: 41px;
}

/**/

/* Кнопка выпадающего списка */
.dropbtn {
    background-color: #eeeeee;
    color: #000;
    padding: 5px 16px 5px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
}

.dropbtn::after {
    content: "";
    width: 2px;
    height: 6px;
    transform: rotate(-45deg);
    position: absolute;
    right: 19px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--black-color);
    transition: all 0.3s;
    border-radius: 4px;
}

.dropbtn::before {
    content: "";
    width: 2px;
    height: 6px;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--black-color);
    transition: all 0.3s;
    border-radius: 4px;
}

/* Контейнер <div> - необходим для размещения выпадающего содержимого */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    display: none;
}

.tabs-mobile-header {
    display: none;
}

/* Выпадающее содержимое (скрыто по умолчанию) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px -14px 31px 0px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 0px -14px 31px 0px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px -14px 31px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
    transition: all 0.3s;
    padding: 5px 16px 5px 16px;
}

.dropdown-content div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.dropdown-content div:last-child {
    margin-bottom: 0;
}

/* Показать выпадающее меню (используйте JS, чтобы добавить этот класс .dropdown-content содержимого, когда пользователь нажимает на кнопку выпадающего списка) */
.show {
    display: block;
}
/* */

.tabs__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tabs-header .tabs__group:first-child {
    margin-right: 191px;
}

.tabs-header .tabs__group:nth-child(2) {
    margin-right: 200px;
}

.tabs-header .tabs__group:nth-child(3) {
    margin-right: 200px;
}


.tab-wrapper .tabs-header .tab-header {
    margin-bottom: 16px;
    color: var(--black-color);
    line-height: 22px;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    display: inline-block;
    position: relative;
    transition: border 0.3s ease-in-out;
    font-weight: 300;
}

.tab-wrapper .tabs-header .tab-header:last-child {
    margin-bottom: 0;
}

.tab-wrapper .tabs-header .tab-header:hover {
    cursor: pointer;
    border-bottom: 2px solid var(--greenDefault-color);
}

.tab-wrapper .tabs-header .tab-header_show {
    border-bottom: 2px solid var(--greenDefault-color);
    font-weight: 700;
}

.tab-wrapper .tabs-content {
    display: flex;
    position: relative;
    order: -1;
    height: 422px;
}

.tab-wrapper .tabs-content .tab-content {
    display: none;
    background-color: #fff;
    color: #000;
    position: absolute;
    top: -0;
    left: 0;
}

.tab-wrapper .tabs-content .tab-content_show {
    display: block;
}

.fade {
    animation: tabContent 0.5s cubic-bezier(0.6, 0, 0.18, 0.99);
}

@keyframes tabContent {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.tab-content__card {
    display: flex;
    justify-content: space-between;
}

.card__preview {
    width: 570px;
    padding-right: 30px;
    height: 360px;
    overflow: hidden;
}

.card__preview_img {
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card__preview_content {
    background: linear-gradient(180deg, #ececec 0%, #f8f8f8 99.99%, rgba(248, 248, 248, 0) 100%);
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

.card__title {
    position: relative;
    margin-bottom: 8px;
}

.card__features {
    position: relative;
    margin-bottom: 32px;
    padding-left: 15px;
}

.card__features .card__features_item {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--text_p-color);
    list-style: disc;
    max-width: 550px;
}

.card__features .card__features_item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .card__preview_img {
        object-fit: cover;
    }
}

@media screen and (max-width: 992px) {
    .products__section {
        padding-bottom: 122px;
    }

    .tab-wrapper .tabs-header {
        padding-top: 20px;
    }

    .tabs-header .tabs__group:nth-child(2) {
        order: 2;
    }

    .tabs-header .tabs__group:first-child {
        margin-bottom: 20px;
    }

    .card__preview {
        width: 454px;
    }
}

@media screen and (max-width: 768px) {
    .dropdown {
        display: block;
    }

    .tab-wrapper {
        padding-top: 17px;
    }

    .tab-wrapper .tabs-content {
        width: 100%;
    }

    .tab-wrapper .tabs-content .tab-content_show {
        width: 100%;
    }

    .tabs-mobile-header {
        display: block;
    }

    .tab-mobile-wrapper {
        display: block !important;
    }

    .tab-wrapper.tabs-desktop-header {
        display: none !important;
    }

    .tab-mobile-wrapper .tab-content__card {
        display: block;
        width: 100%;
        height: 200px;
    }

    .card__preview {
        width: 100%;
        padding-right: 0;
        margin-bottom: 16px;
        height: 200px;
    }

    .card__content {
        text-align: center;
    }

    .card__features {
        padding-left: 0;
        margin-bottom: 16px;
    }

    .card__features li {
        list-style: none !important;
    }

    .card__features .card__features_item {
        max-width: 500px;
        margin: 0 auto;
    }

    .card__preview_img {
        position: absolute;
        margin: auto;
        width: 50%;
        height: auto;
        pointer-events: none;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
}

/***
====================================================================
NEW-PRODUCTS__SECTION STYLES
====================================================================
 ***/
.new-products__section {
    padding-top: 100px;
    height: 680px;
    background: url("../../img/new__product_banner.jpg") no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
    max-width: 1368px;
    margin: 0 auto;
}

.new__products-content .section__text-p {
    max-width: 890px;
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
    .new-products__section {
        padding-top: 32px;
        height: 395px;
    }

    .new__products-content .section__text-p {
        max-width: 350px;
    }
}

/***
====================================================================
HOT-PRODUCTS__SECTION STYLES
====================================================================
 ***/
.hot-products__section {
    padding-top: 160px;
    padding-bottom: 160px;
}

.hot__products_item {
    position: relative;
    padding-bottom: 80px;
    padding-top: 80px;
    padding-left: 64px;
    border-radius: 4px;
    background: linear-gradient(180deg, #ececec 0%, #f8f8f8 99.99%, rgba(248, 248, 248, 0) 100%);
}

.hot__products_item {
    margin-bottom: 48px;
    overflow: hidden;
}

.hot__products_item:last-child {
    margin-bottom: 0;
}

.hot__item_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hot__item_title {
    color: var(--black-color);
    font-size: 34px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 24px;
}

.hot__item__text {
    width: 40%;
}

.hot__item-text {
    color: var(--text_p-color);
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 24px;
    z-index: 2;
}

.hot__item_card {
    pointer-events: none;
    z-index: 1;
    width: 60%;
    position: relative;
}

.hot__item_card img {
    width: 100%;
    height: 100%;
    max-width: 460px;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.hot__item_marker {
    position: absolute;
    right: -13px;
    top: 8px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 22px;
    transform: rotate(45deg);
    transform-origin: top left;
    z-index: 2;
}

.hot__item_marker::before {
    content: "";
    position: absolute;
    border-left: 155px solid transparent;
    border-right: 60px solid transparent;
    border-top: 155px solid var(--greenDefault-color);
    transform: rotate(-45deg);
    z-index: -1;
}

@media screen and (max-width: 992px) {
    .hot-products__section {
        padding-top: 130px;
        padding-bottom: 128px;
    }

    .hot__products_item {
        margin-bottom: 32px;
        padding-left: 32px;
    }

    .adress__content_left {
        max-width: 240px;
    }

    .hot__item_card img {
        max-width: 450px;
    }
}

@media screen and (max-width: 768px) {
    .hot-products__section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .hot__item_title {
        font-size: 21px;
        line-height: 22px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .hot__item-text {
        margin-bottom: 16px;
        max-width: 370 !important;
    }

    .hot__products_item {
        padding-left: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .hot__item_card img {
        max-width: 300px;
    }
}

/***
====================================================================
BUY__SECTION STYLES
====================================================================
 ***/

.buy__section {
    padding-bottom: 170px;
}

.buy__tabs {
    width: 100%;
    display: flex;
}

/* Стили для списка вкладок */
.buy__tab-header {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 275px;
}

.buy__tab-header__item {
    margin-right: 5px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--text_p-color);
}

.buy__tab-header__item:last-child {
    margin-bottom: 0px;
}

.buy__tab-header__item.active {
    font-weight: 600;
    position: relative;
    color: var(--black-color);
}

.buy__tab-content {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    width: 100%;
}

.buy__tab-content__item {
    display: none;
}

/* Стили для активного контейнера вкладки */
.buy__tab-content__item.active {
    display: block;
    animation: tabContent 0.5s cubic-bezier(0.6, 0, 0.18, 0.99);
}

.adress__content {
    display: flex;
    color: var(--black-color);
}

.adress__content_left {
    position: relative;
    margin-right: 98px;
}

.adress__content_right {
    padding-top: 40px;
}

.adress__card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.adress__card:last-child {
    margin-bottom: 0;
}

.adress__name {
    font-weight: 600;
    line-height: 23px;
    font-size: 16px;
    margin-bottom: 16px;
}

.adress__adress {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-color);
}

.adress__link {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 8px;
}

.adress__link:last-child {
    margin-bottom: 0;
}

.adress__link.adress__site {
    color: #003d68;
}

.city-buy-mobile {
    display: none;
}

.сity-buy-desktop {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 310px
}

.сity-buy-desktop::-webkit-scrollbar {
    width: 2px;
    overflow: visible;
    background-color: #ececec;
    padding-right: 2px;
}

.сity-buy-desktop::-webkit-scrollbar-thumb {
    background-color: var(--text_p-color);
    border-radius: 3px;
}


@media screen and (max-width: 992px) {
    .buy__section {
        padding-bottom: 128px;
    }
}

@media screen and (max-width: 768px) {
    .buy__tabs .dropdown {
        margin-bottom: 17px;
    }

    .buy__tabs {
        display: block;
    }

    .adress__content_left {
        max-width: 180px;
        margin-right: 30px;
    }

    .buy__section {
        padding-bottom: 96px;
    }

    .city-buy-mobile {
        display: block;
    }

    .сity-buy-desktop {
        display: none;
    }
}

/***
====================================================================
QUESTION__SECTION STYLES
====================================================================
 ***/
.question_section {
    background: #f6f6f6;
    padding-top: 48px;
    padding-bottom: 60px;
    position: relative;
}

.question_section .main__wrapper {
    position: relative;
}

.question_section .main__wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 145px;
    height: 148px;
    background: url("../img/Cross__item.svg") no-repeat;
    background-size: contain;
    z-index: 2;
}

.question__content {
    position: relative;
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.question__form {
    display: flex;
    flex-direction: column;
    max-width: 562px;
    justify-content: center;
    align-items: center;
}

.label__group {
    margin-bottom: 16px;
    position: relative;
    width: 100%;
}

.label__group:nth-child(3) {
    margin-bottom: 32px;
}

.label__group:last-child {
    margin-bottom: 0;
}

.question__form input:not(input[type="submit"]) {
    background: #fff;
    color: var(--black-color);
    padding: 16px;
    font-size: 20px;
    line-height: 22px;
    width: 100%;
}

.question__form input::placeholder,
.question__form textarea::placeholder {
    color: #e0e0e0;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
}

.question__form textarea {
    resize: none;
    width: 100%;
    height: 248px;
    padding: 16px;
}

.question__form .btn {
    margin-bottom: 16px;
}

.question__form .privacy {
    color: #9c9c9c;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    .question_section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .question__content {
        width: 100%;
        max-width: 100%;
    }

    .question__form {
        width: 100%;
        max-width: 100%;
    }

    .question_section .main__wrapper::after {
        display: none;
    }

    .question_section .m-32 {
        margin-bottom: 24px;
    }
}

/***
====================================================================
COMPANY__SECTION STYLES
====================================================================
 ***/
.company__section {
    padding-top: 160px;
    padding-bottom: 300px;
}

.company__logotype {
    margin-bottom: 48px;
    pointer-events: none;
}

.company__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.company__content-left {
    width: 343px;
}

.company__content-right {
    width: 78%;
}

.company__direction {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 24px;
}

.direction__list_item {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.direction__list_item:last-child {
    margin-bottom: 0;
}

.direction__list_item .direction_icon {
    max-width: 67px;
    height: auto;
}

.direction__list_item p {
    color: #003d68;
    line-height: 24px;
    font-size: 14px;
    font-weight: 300;
    max-width: 180px;
}

.company__direction_text {
    margin-bottom: 20px;
}

.company__direction_text:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .company__section {
        padding-top: 128px;
        padding-bottom: 180px;
    }
}

@media screen and (max-width: 768px) {
    .company__section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .company__logotype {
        margin-bottom: 32px;
    }

    .company__logotype_img {
        width: 192px;
    }

    .company__direction {
        margin-bottom: 16px;
    }

    .company__content {
        display: block;
    }

    .company__content-left {
        width: 100%;
        margin-bottom: 24px;
    }

    .direction__list_item p {
        max-width: 250px;
    }

    .company__content-right {
        width: 100%;
    }
}

/***
====================================================================
 FOOTER STYLES
====================================================================
 ***/

.main__footer {
    position: relative;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.footer__wrapper {
    position: relative;
    max-width: 1368px;
    margin: 0 auto;
    padding: 24px 70px 24px 70px;
}

.footer__content {
    display: flex;
    width: 100%;
}

.footer__left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 198px;
}

.footer__right-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 40px;
}

.footer__link {
    font-size: 14px;
    line-height: 24px;
    color: var(--text_p-color);
}

.bold-link {
    font-weight: 600;
    color: var(--black-color);
}

.footer__logotype {
    width: 177px;
}

.footer_bottom-logotype {
    align-self: flex-end;
}

.footer__bottom-logotype-text {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black-color);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
}

.footer__top-subscribe {
    width: 100%;
    margin-bottom: 40px;
}

.footer__subscribe {
    width: 100%;
}

.subscribe__group {
    display: flex;
    align-items: center;
    width: 100%;
}

.subscribe__text {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 14px;
    margin-right: 55px;
}

.subscribe__text b {
    display: block;
    font-weight: 600;
}

.subscribe__text span {
    display: block;
    white-space: nowrap;
}

.subscribe__text::before {
    content: "";
    position: relative;
    width: 24px;
    height: 24px;
    background: url("../img/sub__icon.svg") no-repeat;
    background-size: auto;
    margin-right: 10px;
    background-position: 50% 50%;
}

.subscribe__form input[type="email"] {
    border: 1px solid #ececec;
    padding: 8px;
    border-radius: 4px;
    height: 32px;
    margin-right: 20px;
    width: 77%;
}

.subscribe__form .subscribe__btn {
    padding: 4px 16px 4px 16px;
    height: 32px;
    background: var(--greenDefault-color);
}

.subscribe__form input::placeholder {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
}

.footer__navigation {
    display: flex;
    justify-content: space-between;
}

.footer__nav_contacts {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 88.5%;
    margin-bottom: 15px;
}

.footer__nav_contacts_item {
    display: block;
}

.footer__nav-group {
    width: calc(100% / 4);
    margin-right: 20px;
}

.footer__nav-group:last-child {
    margin-right: 0;
}

.footer__nav-group > .footer__nav-item:first-child {
    margin-bottom: 8px;
}

.footer__nav-item address {
    font-style: normal;
}

.footer__phones {
    margin-bottom: 15px;
}

.footer__phone {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: var(--black-color);
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 87%;
    margin-bottom: 90px;
}

.footer__socials_list {
    display: flex;
}

.social__item {
    margin-right: 16px;
}

.social__item:last-child {
    margin-right: 0;
}

.social__icon {
    max-width: 27px;
    height: auto;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 2px;
}

.footer__bottom_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9c9c9c;
    font-size: 14px;
    line-height: 24px;
}

.footer__company {
    text-transform: uppercase;
}

.footer__adress_item {
    margin-bottom: 15px;
}

.footer__socials .footer_bottom-logotype {
    display: none;
}

.footer__link_mobile {
    display: none;
    margin-bottom: 16px;
}

@media screen and (max-width: 1326px) {
    .footer__nav_contacts {
        width: 89%;
    }
}

@media screen and (max-width: 1280px) {
    .footer__nav_contacts {
        width: 90%;
    }

    .footer__socials {
        width: 89%;
    }
}

@media screen and (max-width: 1182px) {
    .footer__nav_contacts {
        width: 92%;
    }

    .footer__socials {
        width: 90%;
    }
}

@media screen and (max-width: 1090px) {
    .footer__nav_contacts {
        width: 94%;
    }

    .footer__socials {
        width: 91%;
    }
}

@media screen and (max-width: 1000px) {
    .footer__nav_contacts {
        width: 96%;
    }
}

@media screen and (max-width: 992px) {
    .footer__wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }

    .footer__content {
        display: block;
    }

    .footer__right-content {
        padding-left: 0;
    }

    .footer_bottom-logotype {
        display: none;
    }

    .footer__left-content {
        margin-bottom: 16px;
    }

    .subscribe__text {
        margin-bottom: 16px;
    }

    .subscribe__group {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile__group {
        flex-direction: row;
    }

    .footer__top-subscribe {
        margin-bottom: 16px;
    }

    .footer__navigation {
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 16px;
    }

    .footer__nav-group {
        width: calc(100% / 3);
    }

    .first__group {
        order: -2;
    }

    .pre__group {
        order: 3;
        padding-left: 23px;
    }

    .footer__nav_contacts {
        align-items: flex-start;
    }

    .footer__socials {
        justify-content: flex-start;
        width: 67%;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .footer__socials span {
        order: 3;
    }

    .footer__socials .footer_bottom-logotype {
        display: block;
        order: -1;
        margin-right: 24%;
        margin-bottom: 16px;
    }

    .footer__socials_list {
        align-self: flex-start;
    }
}

@media screen and (max-width: 870px) {
    .footer__socials {
        width: 58%;
    }
}

@media screen and (max-width: 780px) {
    .footer__socials {
        width: 80%;
        flex-wrap: nowrap;
    }

    .footer__socials .footer__link {
        display: none;
    }

    .footer__socials .footer_bottom-logotype {
        margin-right: 0;
    }

    .footer__link_mobile {
        display: block !important;
    }

    .subscribe__form input[type="email"] {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .footer__wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (max-width: 734px) {
    .footer__socials {
        width: 52%;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

@media screen and (max-width: 640px) {
    .footer__socials {
        width: 55%;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .subscribe__form input[type="email"] {
        width: 65%;
    }
}

@media screen and (max-width: 570px) {
    .footer__socials {
        width: 60%;
    }

    .subscribe__form input[type="email"] {
        width: 60%;
    }
}

@media screen and (max-width: 490px) {
    .footer__socials {
        width: 63%;
    }
}

@media screen and (max-width: 430px) {
    .footer__socials {
        width: 74%;
    }

    .footer__navigation {
        width: 100%;
    }

    .subscribe__form input[type="email"] {
        width: 50%;
    }
}

@media screen and (max-width: 356px) {
    .footer__socials {
        width: 85%;
    }

    .subscribe__form input[type="email"] {
        width: 40%;
    }
}

/***
====================================================================
 GLOBAL POPUP STYLES
====================================================================
 ***/
.popUp__overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: 0.3s all;
}

.popUp__modal {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-width: calc(100% - 23%);
    max-height: calc(100% - 25%);
    position: fixed;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2001;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #fff;
    transition: 0.3s all;
    overflow-y: scroll;
}

.popUp__modal-container {
    padding: 80px 35px 56px 35px;
}

.popUp__modal-container:not(:first-child) {
    padding: 0 35px 56px 35px;
}

.popUp__modal::-webkit-scrollbar {
    width: 2px;
    overflow: visible;
    background-color: #ececec;
    padding-right: 2px;
}

.popUp__modal::-webkit-scrollbar-thumb {
    background-color: var(--text_p-color);
    border-radius: 3px;
}

.popUp__modal.active,
.popUp__overlay.active {
    opacity: 1;
    visibility: visible;
}

.popUp__modal.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal__cross {
    width: 10px;
    height: 10px;
    position: fixed;
    top: 10px;
    right: 10px;
    fill: #444;
    cursor: pointer;
    z-index: 2250;
}

.modal__title {
    margin-bottom: 24px;
}

.modal__subtitle {
    font-weight: 300;
    line-height: 20px;
    font-size: 12px;
}

#popUpTY {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: fixed;
    max-width: 400px;
    border-radius: 5px;
    background: #fff;
    display: none;
    opacity: 0;
    padding: 17px;
    z-index: 99999;
}

#overlayTY {
    z-index: 99998;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
}

.Thanks__title {
    font-size: 14px;
    color: var(--black-color);
    text-transform: uppercase;
    font-weight: 600;
}

@media screen and (max-width: 1299px) {
    .popUp__modal {
        max-width: calc(100% - 20%);
    }

    .popUp__modal-container {
        padding: 64px 32px 32px 32px;
    }

    .popUp__modal-container:not(:first-child) {
        padding: 0px 32px 32px 32px;
    }
}

@media screen and (max-width: 1199px) {
    .popUp__modal {
        max-width: calc(100% - 15%);
    }
}

@media screen and (max-width: 992px) {
    .popUp__modal {
        max-width: calc(100% - 7%);
        max-height: calc(100% - 32%);
    }
}

@media screen and (max-width: 768px) {
    .popUp__modal-container {
        padding: 40px 16px 20px 16px;
    }

    .popUp__modal-container:not(:first-child) {
        padding: 0px 16px 20px 16px;
    }
}

/***
====================================================================
 ABOUT__COMPANY POPUP STYLES
====================================================================
 ***/
.modal__company_content {
    display: flex;
    width: 100%;
    justify-content: center;
}

.content__card_box {
    position: relative;
    background: linear-gradient(180deg, #ececec 0%, #f8f8f8 99.99%, rgba(248, 248, 248, 0) 100%);
    overflow: hidden;
    border-radius: 4px;
    width: 363px;
    height: 360px;
    margin-right: 116px;
}

.content__card_box img {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}

.company__content_text .modal__subtitle {
    margin-bottom: 30px;
    max-width: 550px;
}

.company__content_text .modal__subtitle:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .content__card_box {
        width: 419px;
        height: 504px;
        margin-right: 20px;
    }

    .content__card_box img {
        object-fit: cover;
    }
}
@media screen and (max-width: 768px) {
    .modal__company_content {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .content__card_box {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
}
/***
====================================================================
 CATEGORIES POPUP STYLES
====================================================================
 ***/
.modal__products-text {
    max-width: 570px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 32px;
}

.modal__products-text:not(:first-child) {
    margin-bottom: 68px;
}

.modal__product_info-text {
    margin-bottom: 16px;
}

.modal__product_btn {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.modal__products_content {
    position: relative;
    display: block;
}



@media screen and (max-width: 999px) {
    .modal__products-text {
        margin-bottom: 24px;
    }

    .modal__products__list {
        margin-bottom: 112px;
    }
}

@media screen and (max-width: 799px) {
    .modal__products-text {
        margin-bottom: 24px;
    }
}

/***
====================================================================
NEW-PRODUCT_ONE STYLES
====================================================================
 ***/
.new__product_banner {
    position: relative;
    background: linear-gradient(182.82deg, #f4f4f4 0%, #ececec 92.3%);
    width: 100%;
    height: 360px;
}

.new__product_banner_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.new__product_banner_text {
    max-width: 730px;
    padding: 64px 72px 64px 131px;
}

.new__product_banner_title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 24px;
}

.new__product_banner_subtitle {
    line-height: 20px;
    font-size: 12px;
}

.new__product_banner_img_box {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.new__product_banner_img {
    width: 100%;
    height: 100%;
    max-width: 440px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

.new__product_features {
    padding-top: 72px;
    padding-bottom: 168px;
}

.new__product_features_content {
    display: flex;
    align-items: center;
}

.new__product_features_img_box {
    height: 204px;
    width: 30%;
    background: linear-gradient(182.82deg, #f4f4f4 0%, #ececec 92.3%);
    overflow: hidden;
}

.new__product_features_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.new__product_features_text {
    padding-left: 118px;
    width: 70%;
    max-width: 610px;
}

.new__product_features_title {
    margin-bottom: 24px;
}

.new__product_features_subtitle {
    font-size: 12px;
    line-height: 20px;
}

.product__box_overflow {
    position: relative;
    width: 100%;
    margin-bottom: 120px;
}

.product__box_overflow:last-child {
    margin-bottom: 0;
}

.new__product_catalog {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.new__product_item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0px 18px 45px rgb(0 0 0 / 5%);
    border-radius: 4px;
    padding: 24px;
    min-height: 416px;
    margin-bottom: 3.0303030303%;
    margin-left: 0;
    margin-right: 25px;
    width: 23%;
}

.new__product_item:nth-child(4n) {
    margin-right: 0;
}

.new__product_preview {
    background: linear-gradient(180deg, #ececec 0%, #f8f8f8 99.99%, rgba(248, 248, 248, 0) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    height: 200px;
    margin-bottom: 24px;
}

.new__product_img {
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: block;
    object-fit: cover;
}

.new__product_info-text {
    margin-bottom: 16px;
}

.new__product_title {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #000;
    margin-bottom: 14px;
}

.new__product_description {
    font-size: 12px;
    font-weight: 300;
    line-height: 14px;
    color: #000;
    margin-bottom: 8px;
}

.new__product_params {
    display: flex;
    justify-content: space-between;
}

.new__product_params_item {
    display: block;
    position: relative;
    width: 50%;
    line-height: 14px;
    font-size: 12px;
}

.new__product_params_item:first-child {
    margin-right: 8px;
}

.new__product_params_item:first-child::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #c1b8b8;
    right: 0;
    top: 0;
}

.mobile_slider--production_catalog-one,
.mobile_slider--production_catalog-two,
.mobile_slider--production_newCatalog-one,
.mobile_slider--production_newCatalog-two {
    display: none !important;
}

@media screen and (max-width: 1099px) {
    .new__product_banner_text {
        max-width: 730px;
        padding: 32px 0px 32px 32px;
    }

    .new__product_features_img_box {
        height: 224px;
        width: 58%;
    }

    .new__product_features_text {
        padding-right: 75px;
        padding-left: 99px;
    }

    .product__box_overflow {
        margin-bottom: 112px;
    }

    .new__product_item {
        margin-bottom: 3.0303030303%;
        width: 30.33333%;
    }

    .new__product_item:nth-child(4n) {
        margin-right: 25px;
    }

    .new__product_item:nth-child(3n) {
        margin-right: 0px;
    }
}

@media screen and (max-width: 799px) {
    .product__box_overflow {
        overflow-y: hidden;
    }

    .mobile_slider--production_catalog-one,
    .mobile_slider--production_catalog-two {
        display: block !important;
    }

    .new__product_catalog {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        height: 460px;
        padding: 2px;
        flex-wrap: nowrap;
        width: calc(100% + 1600px);
        display: none;
    }

    .new__product_catalog::-webkit-scrollbar {
        width: 2px;
        overflow: visible;
        background-color: #ececec;
    }

    .new__product_catalog::-webkit-scrollbar-thumb {
        background-color: var(--text_p-color);
        border-radius: 3px;
    }

    .new__product_item {
        width: 270px;
    }

    .new__product_item:nth-child(3n) {
        margin-right: 25px;
    }

    .new__product_features {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .new__product_features_content {
        display: block;
    }

    .new__product_features_img_box {
        width: 100%;
        height: 176px;
        margin-bottom: 32px;
    }

    .new__product_features_text {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .new__product_features_title {
        margin-bottom: 16px;
        font-size: 34px;
        line-height: 40px;
    }

    .modal__title {
        font-size: 34px;
        line-height: 40px;
    }

    .new__product_banner_text {
        padding: 32px;
    }
}

@media screen and (max-width: 699px) {
    .new__product_banner {
        margin-top: 60%;
    }

    .new__product_banner_content {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .new__product_banner_img_box {
        position: absolute;
        top: -100%;
    }
}

@media screen and (max-width: 599px) {
    .new__product_banner {
        margin-top: 70%;
    }
}

@media screen and (max-width: 499px) {
    .new__product_banner {
        margin-top: 80%;
    }
}
