@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('truetype'), url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff'), url('../fonts/Roboto-Medium.ttf') format('truetype'), url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
ul, ol {
    list-style: none;
}
body {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.wrapper {
    max-width: 1110px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    border: none;
    outline: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
}
.section-title {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

/* Попап */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    pointer-events: none;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}
.popup.active {
    opacity: 1;
    pointer-events: auto;
}
.popup .form {
    width: 100%;
    max-width: 480px;
    background-color: #fff;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.popup .form.active {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.popup .form__top {
    background-color: #EFEFEF;
    padding: 14px 0;
    position: relative;
}
.popup .form__title {
    text-align: center;
    font-size: 18px;
    color: #555555;
}
.popup .form__close {
    position: absolute;
    right: 11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}
.popup .form__main {
    box-sizing: border-box;
    padding: 37px 0 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.popup .form__input {
    border: none;
    outline: none;
    display: block;
    margin-bottom: 22px;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px 15px;
    font-size: 14px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.popup .form__input:focus {
    box-shadow: 0 0 5px #C4C4C4;
}
.popup .form__submit {
    padding: 14px 0;
    width: 120px;
    text-align: center;
    border: none;
    outline: none;
    background-color: #56C167;
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
}
.popup .form__submit:hover {
    background-color: #4bbd5d;
}
.popup .form__accepted {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    padding: 15px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.popup .form__accepted_title {
    font-size: 18px;
    color: #555555;
    margin: 15px 0;
    text-align: center;
}
.popup .form__accepted_text {
    font-size: 16px;
    text-align: center;
}
.popup .form__accepted_close {
    background-color: #56C167;
    padding: 8px 13px;
    color: #fff;
    font-size: 18px;
    border-radius: 3px;
    margin-top: 15px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.popup .form__accepted_close:hover {
    background-color: #4bbd5d;
}
.call-popup {
    cursor: pointer;
}

/* / Попап */


/* Шапка */

.header {
    font-size: 18px;
    padding: 5px 0 18px;
    background-color: #EFEFEF;
}
.header__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.header__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: none;
    padding: 12px 0;
    background-color: #EFEFEF;
}
.header__consult {
    width: 240px;
    background-color: #56C167;
    border-radius: 3px;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
.burger {
    width: 30px;
    height: 20px;
    position: relative;
}
.burger__item {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #555555;
}
.burger__item:nth-child(1) {
    top: 0;
}
.burger__item:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.burger__item:nth-child(3) {
    bottom: 0;
}
.logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.logo__text {
    margin-left: 15px;
    margin-bottom: 4px;
}
.logo__name {
    color: #56C167;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.logo__sm {
    font-size: 10px;
    display: block;
}
.location {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.location__current {
    margin-left: 9px;
    padding: 15px 0;
    position: relative;
}
.location__current::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 100%;
    height: 0;
    border-bottom: 1px dashed #000;
}
.location:hover .location__list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.location__item:not(:last-child) {
    margin-bottom: 5px;
}
.location__list {
    list-style-type: none;
    position: absolute;
    right: -20px;
    top: calc(100% - 3px);
    width: calc(100% + 16px);
    box-sizing: border-box;
    padding: 12px 4px;
    background-color: #BCE7C2;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 2;
}
.location__list::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 11px solid #BCE7C2;
}
.nav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.nav__item {
    position: relative;
    padding: 15px 10px;
}
.nav__sublist {
    box-sizing: border-box;
    padding: 12px 8px;
    position: absolute;
    left: -20px;
    top: calc(100% - 5px);
    width: calc(100% + 60px);
    background-color: #BCE7C2;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 2;
}
.nav__sublist::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-left: 17px solid #EFEFEF;
    border-right: 17px solid #EFEFEF;
    border-bottom: 11px solid #BCE7C2;
}
.nav__subitem:not(:last-child) {
    margin-bottom: 8px;
}
.nav__droper:hover .nav__sublist {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.phone__span {
    font-size: 14px;
    color: #56C167;
    display: block;
    width: 100%;
    text-align: right;
}

/* / Шапка */


/* hero */

.hero {
    padding-top: 40px;
}
.hero__item {
    border-radius: 3px;
    overflow: hidden;
    height: unset;
    display: block;
}
.hero__item img {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-btn-prev, .hero-btn-next {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.hero-btn-prev::after, .hero-btn-next::after {
    display: none;
}

/* / hero */


/* Каталог */

.catalog {
    padding-top: 70px;
    padding-bottom: 40px;
}
.catalog__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 25px;
}
.catalog__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.catalog__item {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 4 - 30px);
    max-width: 350px;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 9px 8px;
    margin-bottom: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.catalog__item:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.catalog__item_img {
    margin-bottom: 18px;
}
.catalog__item_name {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}
.catalog__item_descr {
    font-size: 14px;
    color: #555555;
    line-height: 1.78;
    margin-bottom: 15px;
    text-align: center;
}
.catalog__item_cost {
    font-size: 18px;
    text-align: center;
    margin-bottom: 18px;
}
.catalog__item_more {
    background-color: #56C167;
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: block;
    width: 135px;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 0;
    margin-bottom: 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.catalog__item_more:hover {
    background-color: #4bbd5d;
}
.catalog__tab_btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.catalog__tab_btn {
    display: block;
    font-size: 24px;
    margin-left: 6px;
    margin-right: 6px;
    box-sizing: border-box;
    padding: 2px 6px;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.catalog__tab_btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    width: calc(100% - 12px);
    height: 0;
    border-bottom: 1px dashed #000;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.catalog__tab_btn.active {
    background-color: #BCE7C2;
}
.catalog__tab_btn.active::before {
    opacity: 0;
    pointer-events: none;
}
.catalog__items {
    display: none;
}
.catalog__items.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* / Каталог */


/* Преимущества */

.advantages {
    background-color: #EFEFEF;
    padding: 50px 0 70px;
}
.advantages__title {
    margin-bottom: 37px;
}
.advantages__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.advantages__left {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 8 - 30px);
}
.advantages__text {
    font-size: 16px;
    line-height: 1.87;
    color: #555555;
    margin-bottom: 37px;
}
.advantages__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.advantages__item {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 6 - 30px);
    box-sizing: border-box;
    padding: 11px 20px 18px 59px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
    margin-bottom: 28px;
    position: relative;
}
.advantages__item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 11px;
    width: 30px;
    height: 30px;
    background-image: url('../img/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.advantages__name {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 11px;
}
.advantages__descr {
    font-size: 14px;
    line-height: 1.78;
    color: #555555;
}
.advantages__img {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 4 - 30px);
}
.advantages__img img {
    width: 100%;
}

/* / Преимущества */


/* отзывы */

.review {
    padding: 50px 0 40px;
}
.review__title {
    margin-bottom: 35px;
}
.review__text {
    background-color: #F0F9F1;
    border: 1px solid #BCE7C2;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 11px 20px;
    font-size: 14px;
    line-height: 1.78;
    color: #555555;
}
.review__text p {
    max-height: 101px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Добавляем многоточие */
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.review__name {
    width: calc(70%);
    text-align: right;
    padding: 14px 0;
    position: relative;
}
.review__name::after {
    content: '';
    position: absolute;
    left: calc(100% + 15px);
    top: -2px;
    width: 48px;
    height: 40px;
    background-image: url('../img/icons/feedback.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}
.review__more {
    color: #56C167;
    text-decoration: underline;
}
.review__more.hidden {
    opacity: 0;
    pointer-events: none;
}
.review__more:hover {
    cursor: pointer;
}
.review .swiper-pagination {
    margin-top: 35px;
    position: unset;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.review .swiper-pagination-bullet {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #F0F9F1;
    opacity: 1;
}
.review .swiper-pagination-bullet-active {
    background-color: #BCE7C2;
}

/* / отзывы */


/* Текст */


/*Цвет ссылок*/
.underline-one {
	color: #008000; /* Цвет обычной ссылки */
    position: relative;
    cursor: pointer;
    text-decoration: none; /* Убираем подчеркивание */
}
.underline-one:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px; /* Высота линии */
    background-color: black; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}

.underline-one:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px; /* Высота линии */
    background-color: green; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}
     


.article {
    padding-bottom: 66px;
}
.article__content {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 29px 30px;
}
.article__title {
    margin-bottom: 57px;
}
.article__text {
    color: #555555;
    line-height: 1.78;
}

/* / Текст */


/* Карта */

.map {
    position: relative;
}
.map__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 920px;
    z-index: 2;
    pointer-events: none;
}
.map__col {
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 3px;
    max-width: 370px;
    padding: 14px 25px;
    pointer-events: auto;
}
.map__col .logo {
    margin-bottom: 14px;
}
.map__info {
    box-sizing: border-box;
    padding-left: 10px;
    color: #555555;
    margin-bottom: 8px;
}
#map {
    height: 310px;
}
#map .ymaps-2-1-79-image-with-content {
    background-color: #fff;
    border-radius: 50%;
    width: 33px !important;
    height: 33px !important;
    background-size: 25px 25px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 6px solid #56C167;
}
#map .ymaps-2-1-79-image-with-content::before {
    content: '';
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #fff;
    z-index: -1;
    pointer-events: none;
}

/* / Карта */


/* Подвал */

.footer {
    color: #fff;
    background-color: #555555;
    padding: 30px 0;
}
.footer__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.footer__left {
    font-size: 16px;
}
.footer__politic {
    text-decoration: underline;
}
.footer__politic:hover {
    text-decoration: none;
}
.footer__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.footer__list_item {
    padding: 0 7px;
}
.footer__list_link {
    text-decoration: underline;
}
.footer__list_link:hover {
    text-decoration: none;
}
.footer__copyright {
    margin-bottom: 8px;
}
.footer__phone {
    display: block;
    text-align: right;
}
.footer__phone:first-child {
    margin-bottom: 8px;
}

/* / Подвал */


/* Карточка товара */
/* Код для адаптации видео */
.flame_blc {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
.flame_blc iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}
.card {
    padding-top: 40px;
}
.card__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}
.card__preview {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 7 - 30px);
}
.card__right {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 5 - 30px);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    min-width: 445px;
}
.card__imgs {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.card__bigimg {
    margin-bottom: 25px;
    cursor: pointer;
}
.card__bigimg img {
    width: 100%;
    display: block;
}
.card__img {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 12 * 3 - 30px);
    cursor: pointer;
}
.card__img img {
    width: 100%;
    display: block;
}
.card__name {
    text-align: left;
    margin-bottom: 27px;
}
.card__tab_btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 30px;
}
.card__tab_btn {
    display: block;
    font-size: 24px;
    margin-left: 6px;
    margin-right: 6px;
    box-sizing: border-box;
    padding: 2px 6px;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.card__tab_btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    width: calc(100% - 12px);
    height: 0;
    border-bottom: 1px dashed #000;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.card__tab_btn.active {
    background-color: #BCE7C2;
}
.card__tab_btn.active::before {
    opacity: 0;
    pointer-events: none;
}
.card__tab_content {
    display: none;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 30px 44px;
}
.card__tab_content.active {
    display: block;
}
.card__more {
    margin-top: 75px;
}
.card__more_title {
    margin-bottom: 14px;
    font-weight: 400;
}
.card__more_descr {
    font-size: 16px;
    color: #555555;
    line-height: 1.78;
}
.c-form>* {
    padding-left: 11px;
    padding-right: 11px;
}
.c-form__size {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    box-sizing: border-box;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background-color: #EFEFEF;
    border-radius: 3px;
    color: #555555;
    font-size: 16px;
}
.c-form__size_l {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.c-form__select {
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 3px;
    margin-left: 10px;
}
.c-form__select select {
    padding: 8px 12px;
    min-width: 74px;
    box-sizing: border-box;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: inherit;
    color: #555555;
}
.c-form__pb {
    margin-top: 30px;
    padding-bottom: 30px;
    color: #555555;
    position: relative;
}
.c-form__pb_title {
    display: inline-block;
    font-size: 18px;
    border-bottom: 1px dashed #000;
    margin-bottom: 8px;
}
.c-form__pb_title:hover span.hint {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.c-form__pb_title span.hint {
    display: block;
    width: 100%;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 20px;
    padding: 4px 10px;
    background-color: #fff;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 14px;
    max-width: 230px;
}
.c-form__pb_title span.hint::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 100%;
    border: 10px solid transparent;
    border-top-color: #fff;
}
.c-form__pb_items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-left: -5.5px;
    margin-right: -5.5px;
}
.c-form__pb_items input {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}
.c-form__pb_items input:checked+label {
    border-color: #56C167;
}
.c-form__pb_items label {
    padding: 3px 10px;
    box-sizing: border-box;
    border: 2px solid #C4C4C4;
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: 5.5px;
    margin-right: 5.5px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
}
.c-form__pb_items label span {
    color: #acacac;
}
.c-form__fort {
    background-color: #EFEFEF;
    border-radius: 3px;
    padding-top: 9px;
    padding-bottom: 20px;
}
.c-form__fort_title {
    margin-bottom: 8px;
}
.c-form__fort_items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.c-form__fort_items>* {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
}
.c-form__fort_items>*>p {
    padding-bottom: 2px;
    border-bottom: 1px dashed #000;
}
.c-form__fort_items>*>p:hover span.hint {
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.c-form__fort_items>*>p span.hint {
    display: block;
    width: 100%;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    padding: 4px 10px;
    background-color: #fff;
    -webkit-transform: translateX(-50%) translateY(10px);
    -ms-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 14px;
    max-width: 230px;
}
.c-form__fort_items>*>p span.hint::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 100%;
    border: 10px solid transparent;
    border-top-color: #fff;
}
.c-form__bottom {
    background: #F0F9F1;
    border: 1px solid #BCE7C2;
    box-sizing: border-box;
    border-radius: 3px;
    margin-top: 25px;
    padding: 15px 12px;
}
.c-form__cost {
    font-size: 22px;
    margin-bottom: 13px;
}
.c-form__cost span {
    font-weight: 700;
}
.c-form__montaj {
    margin-bottom: 30px;
}
.c-form__montaj_inp {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
.c-form__montaj_inp:checked+.c-form__montaj_lb .c-form__montaj_sq::before {
    display: block;
}
.c-form__montaj_lb {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.c-form__montaj_sq {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 11px;
    position: relative;
}
.c-form__montaj_sq::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: #555555;
    border-radius: 3px;
    display: none;
}
.c-form__btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.c-form__sendform {
    padding: 14px 0;
    background-color: #56C167;
    border-radius: 3px;
    width: 170px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
}
.c-form__whatsapp {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 18px;
    background: #FFFFFF;
    border: 1px solid #56C167;
    box-sizing: border-box;
    border-radius: 3px;
    padding-left: 7px;
    padding-right: 7px;
}
.c-form__whatsapp img {
    margin-right: 14px;
}

/* / Карточка товара */

@media screen and (max-width: 1000px) {
    .header {
        position: relative;
        z-index: 10;
        padding-bottom: 0;
        background-color: #fff;
    }
    .header .wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .header__row {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header__bottom {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav {
        position: absolute;
        left: 0;
        top: 100%;
        background-color: #EFEFEF;
        width: 100%;
        z-index: 4;
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        transform: translateY(-40px);
        opacity: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        pointer-events: none;
        box-shadow: inset 0 10px 15px rgba(0, 0, 0, 0.05);
        padding-top: 10px;
    }
    .nav.active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
        .advantages__content {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .advantages__left {
        width: calc(100% / 12 * 12 - 30px);
    }
    .advantages__img {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        order: -1;
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 950px) {
    .catalog__item {
        width: calc(100% / 12 * 6 - 30px);
    }
}
@media screen and (max-width: 900px) {
    .footer__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .footer__left {
        margin-bottom: 30px;
    }
    .footer__list {
        margin-bottom: 30px;
    }
    .footer__phone {
        text-align: center;
    }
    .card__main {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .card__preview {
        width: 100%;
        max-width: 630px;
        margin-bottom: 30px;
    }
    .card__right {
        width: 100%;
        max-width: 445px;
        -webkit-flex-shrink: unset;
        flex-shrink: unset;
        min-width: unset;
    }
}
@media screen and (max-width: 700px) {
    .card__tab_btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .card__tab_btn {
        margin-bottom: 10px;
    }
    .card__tab_content {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media screen and (max-width: 600px) {
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    } 
     .nav__item {
        padding: 10px 5px;
     }
    .catalog {
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 20px;
    }
    .header .logo__text {
        display: none;
    }
    .catalog__item {
        width: calc(100% / 12 * 12 - 30px);
    }
    .catalog__tab_btn {
        font-size: 20px;
    }
    .advantages__items {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .advantages__item {
        width: calc(100% / 12 * 12 - 30px);
        max-width: 400px;
    }
    .map__wrapper {
        top: 15px;
        left: 15px;
        width: calc(100% - 15px);
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        box-sizing: border-box;
        padding-right: 15px;
    }
    .map__col {
        padding: 10px;
    }
    #map {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .header .logo img {
        width: 40px;
    }
    .header__row {
        font-size: 16px;
    }
    .header .phone__span {
        display: none;
    }
    /*
    .hero {
        display: none;
    }
    */
    .catalog {
        padding-top: 50px;
    }
    .footer__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
       .footer__list_item:not(:last-child) {
        margin-bottom: 15px;
    }
    .card__bigimg {
        margin-bottom: 20px;
    }
    .card__imgs {
        margin-left: -10px;
        margin-right: -10px;
    }
    .card__img {
        width: calc(25% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .c-form__size {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .c-form__size>*:not(:last-child) {
        margin-bottom: 10px;
    }
    .c-form__pb_items {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .c-form__pb_items label {
        width: calc(50% - 11px);
        margin-bottom: 10px;
    }
    .c-form__fort_title {
        text-align: center;
        margin-bottom: 10px;
    }
    .c-form__fort_items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .c-form__fort_items>* {
        width: unset;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .c-form__fort_reg {
        margin-bottom: 15px;
    }
    .c-form__montaj_lb {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .c-form__montaj_sq {
        margin-right: 10px;
    }
    .c-form__cost {
        text-align: center;
        font-size: 18px;
    }
    .c-form__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .c-form__sendform {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .c-form__whatsapp {
        padding: 11px;
    }
}
input[name="sur__name"] {
    display: block;
    width: 2px;
    height: 3px;
    margin-right: -2px;
    margin-bottom: -3px;
    opacity: 0.01;
}
.c-form__pb .table td {
    padding: .5rem;
    border: 1px solid #000;
}
