
/******************************Сброс стилей браузера*********************************/

*, *:after, *:before {
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
}

html { 
    height: 101%; 
}

body { 
    font-size: 62.5%; 
    line-height: 1; 
    font-size: 14px;
    line-height: 0.24rem;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    color: #000;
}

body::-webkit-scrollbar {
    width: 18px;               /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
    background: #f3f3f3;        /* цвет дорожки */
}
body::-webkit-scrollbar-thumb {
    background-color: #bfbfbf;    /* цвет плашки */
    border-radius: 20px;       /* закругления плашки */
    border: 3px solid #f3f3f3;  /* padding вокруг плашки */
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #979797;    /* цвет плашки */
}
.no-pd-top {
    padding-top: 0 !important;
}
.no-pd-bt {
    padding-bottom: 0 !important;
}
.mg0 {
    margin: 0 !important;
}
.height60px {
    height: 60px !important;
}
.preloader {
    /*фиксированное позиционирование*/
    position: fixed;
    /* координаты положения */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* фоновый цвет элемента */
    background: #fff;
    /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
    z-index: 1001;
  }

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
  }

  .preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #c50e2d;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
  }

  .preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
  }

  @keyframes preloader-rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes preloader-bounce {

    0%,
    100% {
      transform: scale(0);
    }

    50% {
      transform: scale(1);
    }
  }

  .loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
  }

  .loaded .preloader {
    display: none;
  }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block; 
}

ol, ul { 
    list-style: none; 
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

blockquote, q { 
    quotes: none; 
}

blockquote:before, blockquote:after, q:before, q:after { 
    content: ''; 
    content: none; 
}

strong { 
    font-weight: bold; 
} 

input { 
    outline: none; 
}

table { 
    border-collapse: collapse;
    border-spacing: 0; 
}

img { 
    border: 0; 
}

a { 
    text-decoration: none;
    color: #000;
}

a:hover { 
    text-decoration: none;
}

button {
    all: unset;
}


hr {
    opacity: .3;
}

/******************************Конец сброса стилей браузера*********************************/
.container {
    width: 100%;
    margin: 5px auto;
    max-width: 1170px;
}

.container__uslugi{
    margin-bottom: 100px;
}

.h1 {
    font-size: 30px;
    font-weight: bold;
    padding: 50px 0 40px 0;
}

.h1_text{
    line-height: 24px;
    /* margin-bottom: 40px; */
    margin-top: 30px;
    text-align: justify;
}

.warning{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 55px;
    margin: 400px 0;
}

.header__main{
    border-bottom: 1px solid #ededed;
}

.header__main-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.container__header{
    position: relative;
}

.header__menu{
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 auto;
}

.header__menu-item{
    position: relative;
    padding: 0 7px;
}

.header__menu-link{
    display: block;
    position: relative;
    -webkit-transition: color 0.35s ease;
    -o-transition: color 0.35s ease;
    transition: color 0.35s ease;
}

.header__menu-link:hover{
    color: #e4373a;
}

.header__logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header__logo #logo{
    width: 200px;
    padding: 5px 20px 5px 0;
}

.header__logo-text{
    border-left: 1px solid #3e3e3e;
    padding-left: 15px;
    line-height: 19px;
    text-transform: uppercase;
}


.header__active-city{
    padding: 7px 25px 0 30px;
    display: flex;
}

.header__city .down-arrow{
    width: 8px;
    height: 8px;
}

.header__active-city__underline{
    padding-left: 5px;
    transition: 0.3s all;
}

.header__active-city__underline:hover{
    color: #ed3130;
}

.header__mail-logo{
    position: absolute;
    right: 145px;
    top: 25px;
}

.header__mail-logo img{ 
    width: 38px;
}

.header__mail{
    position: relative;
    margin-left: auto;
}

.header__mail-text{
    padding: 19px 0 10px 0;
    font-size: 12px;
    width: fit-content;
    border-bottom: 1px dotted rgba(111, 111, 111, 0.4);
}

.header__mail-text a{
    color: rgba(111, 111, 111, 0.7);
}

.header__mail-href{
    font-size: 19px;
    font-weight: 600;
    margin-right: 2px;
    margin-top: 30px;
}

.header__mail-href a{
    color: rgb(27, 85, 172);
    transition: .3s all;  
}

.header__mail-href a:hover{
    color: #ed3130;    
}

.header__sub-panel{
    display: flex;
    padding: 20px 0 12px 0;
}

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

.btn-panel{
    position: relative;
}

.btn-panel-margin{
    margin-left: 25px;
}

.burger-line{
    position: absolute;
    top: 20px;
    left: 25px;
}

/* .arrow-down-white{
    position: absolute;
    top: 24px;
    left: 32px;
    width: 8px;
    height: 8px;
} */


.arrow-down-white{
    position: absolute;
    top: 22px;
    left: 22px;
    width: 19px;
}

.btn_container__right{
    display: flex;
}

.btn_container__left{
    display: flex;
}


.btn{
    color: #fff; 
}

#catalog_text{
    padding-left: 35px;
} 



/* #calculation_text{
    padding-left: 18px;
}*/

#calculation_text{
    padding-left: 28px;
} 

.btn-default{
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    cursor: pointer;
    height: 54px;
    width: 220px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    background: #c50e2d;
}

.btn-sub{
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    cursor: pointer;
    height: 54px;
    width: 220px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    background: #4b4b4b;
}

.linking {
    color:#c50e2d;
}

.linking:hover {
    text-decoration: underline;
}
.callback__number{
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;  
}

.callback__number a{
    transition: .3s all;
}

.callback__number a:hover{
    color: #ed3130; 
} 

.callback__number-whatsapp{
    margin-right: 50px;
}

.callback__number-whatsapp a {
    transition: .3s all;
}

.callback__number-whatsapp a:hover{
    color: #ed3130;
}

.callback__feedback{
    color: rgba(111, 111, 111);
    border-bottom: 1px dotted rgba(111, 111, 111, 0.4);
    padding: 20px 0 10px 0;
    font-size: 12px;
    width: fit-content;
}

.callback__feedback a{
    color: rgba(111, 111, 111, 0.7);
}

.callback__whatsapp-logo{
    margin-top: 12px;
    margin-right: 15px;
}

.callback__phone-logo{
    margin-top: 10px;
    margin-right: 13px;
}

.callback__phone-logo img{
    width: 38px;
}

.catalog{
    position: absolute;
    left: 0;
    right: 0;
    height: 650px;
    opacity: 0;
    z-index: -1;
    background-color: #fff;
    transition: 0.4s all;
    border-top: 1px solid #ededed;
}

.catalog__margin{
    margin: 0 auto;
    position: relative;
}

.open-catalog{
    position: sticky;
    top: 0;
    opacity: 1;
    z-index: 1000;
}

.catalog__menu{
    display: flex;
    height: 650px;
}

.catalog__menu-list{
    position: relative;
    width: 275px;
}

.catalog__hr{
    position: absolute;
    left: 274px;
    width: 1px;
    height: 650px;
    background-color: #ededed;
    pointer-events: none;
}

.catalog__menu-list ul{
    line-height: 50px;
}

.catalog__menu-list li{
    position: relative;
    width: 260px;
    padding: 0 0 0 10px;
}

.catalog__menu-list li img{
    width: 8px;
    position: absolute;
    right: 10px;
    top: 22px;
    opacity: .5;
}

.catalog__menu-list-active{
    background-color: rgba(48, 48, 48, 0.11);
    border-radius: 5px;
}

.catalog__menu-list-active li img{
    opacity: 1;
}

.catalog__menu-dropdown{
    flex-grow: 20;
    line-height: 20px;
}

.catalog__shadow-bg{
    width: 100%;
    height: 100vh;
    background: #000000;
    opacity: 0.3;
}

.list__detailed{
    display: none;
    left: 275px;
    top: 0;
    position: absolute;
    background-color: #fff;
    width: 895px;
    height: 650px;
    padding: 10px 20px 20px 20px;
}

.list__detailed-active{
    display: block;
}

.list__hover:hover .list__detailed{
    display: block;
}

.list__detailed-block{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.list__detailed-two-title{
    display: flex;
}

.list__detailed-text__open{
    margin-bottom: 25px;
}

.list__detailed-title {
    width: 100%;
    height: 20px;
    font-size: 23px;
    font-weight: bold;
    color: #000;
    padding-left: 25px;
    margin-bottom: 40px;
}

.list__detailed-title a{
    transition: .5s all;
}

.list__detailed-title a:hover{
    color: #ed3130;
}

.list__detailed-row{
    display: flex;
    margin-left: 25px;
}

.list__detailed-text{
    width: 220px;
    line-height: 28px;
}

.list__detailed-text a{
    transition: .2s all;
}

.list__detailed-text a:hover{
    color: #ed3130;
}

.text__title{
    font-size: 13px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}

.text__title-open{
    font-size: 13px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    display: block;
}

.list__detailed-margin{
    margin-top: 35px;
}

.text__sub{
    display: block;
    color: #636363;
    font-size: 13px;
}


.services-calc{
    position: relative;
    transition: .3s all;
    opacity: 0;
    z-index: -1;
}

.open-services-calc{
    z-index: 1000;
    opacity: 1;
}

.services-calc__container{
    position: absolute;
    top: -22px;
    left: 245px;
    width: 283px;
    height: auto;
    background-color: #fff;
    line-height: 57px;
    border-radius: 5px;
    -webkit-box-shadow: 6px 6px 15px 0 rgb(0 0 0 / 27%);
    box-shadow: 6px 6px 15px 0 rgb(0 0 0 / 27%)
}

.services-calc__container ul li{
    position: relative;
    padding: 10px 10px 10px 80px;
    line-height: 20px;
    min-height: 60px;
}

.services-calc__container ul li img{
    position: absolute;
    left: 25px;
    top: 10px;
}

.services-calc__elem{
    transition: .3s all;
}

.services-calc__elem:hover{
    color: #ed3130;
}


.main-container-color{
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0) 2%);
    background-color: #fff;
    /* background-color: #f6f6f6; */
}

.main-container__header h1{
    font-size: 30px;
    font-weight: bold;
    margin: 50px 0 40px 0;
    line-height: 1;
}

.main-services__list-row{
    display: flex;
    justify-content: space-between;
}

.main-services__list-elem{
    width: 370px;
    height: 246px;
    background-color: #edebeb;
    padding: 30px;
    transition: .3s all;
    position: relative;
}

.main-services__list-elem:hover{
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}

.main-services__list-row-big{
    display: flex;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.main-services__list-big-elem{
    position: relative;
    padding: 30px;
    width: 370px;
    height: 512px;
    background-color: #edebeb;
    transition: .3s all;
}

.main-services__list-big-elem:hover{
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}

.main-services__list-big-elem img{
    position: absolute;
    top: 251px;
}

.main-services__margin{
    margin-top: 20px;
}


.main-services__div{
    width: 370px;
    height: 246px;
}

.list-elem__red{
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    background-color: #ed3130;
    text-transform: uppercase;
    color: #fff;
    padding: 8px;
    margin-top: 4px;
}

.list-elem__title{
    font-size: 20px;
    font-weight: bold;
    color: #303030;
    line-height: 24px;
    margin-top: 20px;
}

.list-elem__description{
    font-weight: 300;
    line-height: 20px;
    margin-top: 20px;
}

.list-elem__img{
    position: absolute;
    top: 0px;
    right: 0;
}

.no-red{
    margin-top: 0;
}



.preview-container{
    display: flex;
    justify-content: space-between;
}

/* .preview-container__list{
    position: relative;
    padding: 30px;
    width: 270px;
    height: 330px;
    background-color: #fff;
    transition: .3s all;
    line-height: 20px;
    border: 1px solid #efefef;
} */

/* .preview-container__list{
    position: relative;
    padding: 30px;
    width: 270px;
    height: 330px;
    background-color: #fff;
    transition: .3s all;
    line-height: 20px;
    border: 1px solid #efefef;
    bacground: #ff;
    border-radius: 40px;
    margin-top: 500px;
} */




.preview-container__list{
    position: relative;
    padding: 30px;
    width: 275px;
    height: 330px;
    background-color: #fff;
    transition: .3s all;
    line-height: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 48px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

.preview-container__list:hover{
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}

.preview-container__text{
    margin-bottom: 10px;
    text-align: center;
    color: rgba(48, 48, 48, 0.8);
}

.preview-container__img img {
    margin: 20px 0 20px 0;
    width: 100%;
}

.price{
    position: absolute;
    padding: 7px 25px 7px 50px;
    background-color: #c50e2d;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: .3s all;
    right: 10px;
    bottom: 20px;
}

.price:hover{
    background-color: #b5282a;
}

.rub{
    font-weight: normal;
    margin-left: 5px;
}

.price img{
    position: absolute;
    left: 28px;
}

.gray-container{
    background-color: #f0f0f0;
    height: 330px;
    padding: 40px 0;
}

.container-margin-bottom{
    margin-bottom: 60px;
}

.region-list{
    display: flex;
    justify-content: space-between;
    color: #515151;
    font-size: 13px;
}

.region-list__block{
    width: 270px;
    height: 200px;
    line-height: 38px;
}

.region-list__block ul li::before{
    margin-right: 10px;
    content: "•";
    font-weight: bold;
    color: #ed3130;
    font-size: 16px;
}


.region-list__block ul li a{
    transition: .3s all;
    font-size: 14px;
    color: #515151;
}

.region-list__block ul li a:hover{
    color: #ed3130; 
}

.region-map{
    background-color: #cb0522;
    height: 550px;
}

.container-map{
    position: relative;
    line-height: 20px;
    margin: 0 auto;
} 

.container-map img{
    position: absolute;
    right: 0;
    top: 70px;
}

.region-map__title{
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    line-height: 44px;
    padding-top: 125px;
}

.region-map__text{
    color: #fff;
    line-height: 25px;
    font-size: 15px;
    padding-top: 40px;
}

.region-map__button{
    margin-top: 65px;
}

.region-map__button a{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    padding: 17px 30px;
    border-radius: 50px;
    background-color: #383838;
    color: #fff;
    transition: .3s all;
}

.region-map__button a:hover{
    background-color: #171717;
}

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

.services__block{
    background-color: #fff;
    border: 1px solid #ededed;
    width: 268px;
    height: 283px;
    padding: 40px 39px;
    line-height: 20px;
    transition: .3s all;
}

.services__block:hover{
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}


.services__link img{
    width: 50px;
}

.services__title{
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin: 32px 0;
}

.services__text{
    color: #686868;
    font-size: 13px;
}





.breadcrumbs{
    display: flex;
    padding-top: 20px;
}

.breadcrumbs__elem{
    padding-right: 20px;
    line-height: 15px;
    font-size: 13px;
}

.breadcrumbs__elem span{
    color: #636363;
}

.breadcrumbs__elem img{
    opacity: .7;
}

.breadcrumbs__elem a{
    color: #636363;
    transition: .3s all;
}

.breadcrumbs__elem a:hover{
    color: #ed3130;
}

.white-bg{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    padding: 0 0 30px 0;
}

.calc__title{
    font-weight: bold;
    font-size: 20px;
    padding: 40px 0 40px 30px;
}

.calc__help{
    position: absolute;
    border-bottom: 1px dotted #c5c5c5;
    line-height: 20px;
    top: 31px;
    right: 30px;
    opacity: .7;
}

.calc__help a{
    transition: .3s all;
}

.calc__help a:hover{
    color: #ed3130;
    opacity: 1;
}

.calc__input-row{
    display: flex;
}


.input-row__elem img {
    margin: 25px 0 30px 0;
}



.input-row__elem{
    width: 200px;
    height: 65px;
    margin-left: 30px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    text-align: center;
}

.input-row__elem-active{
    /* border: 2px solid #ffb834; */
}

.input-row__elem-active{
    border: 2px solid #c50e2d;
}


.input-row__text{
    font-size: 16px;
    text-align: center;
    opacity: .9;
    line-height: 60px;
}

.calc__fasad-block{
    display: flex;
}

.calc__fasad-input{
    width: 400px;
}

.calc__fasad-img{
    margin-top: 25px;
}

.input-block{
    margin-left: 30px;
    position: relative;
}

.input-block input{
    width: 315px;
    height: 55px;
    padding-left: 15px;
    font-size: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid rgb(190, 190, 190);
    transition: .3s all;
    background-color: #fff;
    color: #000;
}

.input-block__icon{
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 14px;
    position: absolute;
    border-radius: 50%;
    background-color: #d9d9d9;
    /* background-color: #e4373a; */
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: .3s all;
}

.icon-h{
    top: 13px;
    right: 70px;
}

.icon-w{
    top: 88px;
    right: 70px;
}

.icon-s{
    bottom: 107px;
    right: 70px;
}

.icon-t{
    bottom: 33px;
    right: 70px;
}

.input-block input:focus{
    border: 1px solid #444444;
}

.input-block input:focus + .input-block__icon{
    background-color: #e4373a;
}

.calc__fasad-input p {
    margin-bottom: 40px;
}

.calc__fasad-input p a{
    border-bottom: 1px dotted #c5c5c5;
    margin-left: 30px;
    color: #636363;
    transition: .3s all;
}

.calc__fasad-input p a:hover{
    color: #ed3130;
}

.hr-wgb{
    margin: 40px 30px 0 30px;
}

.over-hr{
    display: flex;
    justify-content: space-between;
    line-height: 13px;
    color: #636363;
    font-size: 13px;
}

.over-hr__availability img{
    padding-bottom: 1px;
    padding-right: 5px;
}

.product{
    height: auto;
    display: flex;
    justify-content: space-between;
}

.product__price{
    max-width: 570px;
}  

.product-img{
    margin: 60px 70px 50px 30px;
}

.product-description{
    width: 570px;
    margin-bottom: 25px;
}

.product__price-block{
    display: flex;
    justify-content: space-between;
    /* margin-top: 15px; */
    border-bottom: 1px solid rgba(99, 99, 99, 0.2);
}    

.date__delivery{
    display: flex;
}

.date__delivery-img{
    margin: 5px 15px 5px 5px;
    opacity: .4;
}

/* .date__delivery span{
    line-height: 21px;
    color: #404040;
    font-size: 13px;
} */

.block-price{
    font-size: 35px;
    line-height: 45px;
    font-weight: bold;
}

.block-price span{
    font-weight: 300;
    font-size: 22px;
    opacity: .5;
}









.short-desc{
    display: flex;
    font-size: 13px;
    font-weight: bold;
    /* margin-bottom: 30px; */
    flex-direction: column;
    gap: 15px;
    width: 240px;
}

.short-desc__elem{
    display: flex;
    flex-grow: 1;
    line-height: 16px;
}

.short-desc__column{
    width: 100%;
}

.short-desc__column span{
    font-weight: normal;
}

.short-desc__column-margin{
    margin-right: 0px;
}

.short-desc__text{
    display: flex;
    justify-content: space-between;
}

.short-desc__text-margin{
    margin-bottom: 15px;
}

.short-desc__text a{
    border-bottom: 1px dotted #636363;
    flex: 1 0;
    margin: 3px 5px;
}

#short-desc__text-ral{
    border-bottom: 0;
    flex: 0;
    margin: 0;
    font-weight: 400;
    transition: all .2s;
}

#short-desc__text-ral:hover{
    color: #ed3130;
}



.product__buy-panel{
    width: 570px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.2);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product__btn-buy{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}  

.product__buy-header{
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: bold;
}

.btn-buy{
    width: 240px;
    height: 48px;
    border-radius: 5px;
    background-color: #EEEFF1;
    text-align: center;
    color: #3F4349;
    line-height: 47px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s all;
}

.btn-buy:hover{
    background-color: #686868;
}

.btn-buy__red{
    background-color: #c50e2d;
    color: #fff;
}

.btn-buy__red:hover{
    background-color: #ad0e27;
}

.btn-buy__cvet{
    width: 100%;
    margin-top: 20px;
}

.feedback-form-date{
    opacity: 0;
    z-index: -10;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: .3s all;
    position: fixed;
    top: 0px;
}

.feedback-form{
    opacity: 0;
    z-index: -10;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all .5s;
    position: fixed;
    top: 0px;
}

.feedback-form-palitra{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(0,0,0,.8);
    transition: all .5s;
}

.feedback-form-konsultacija{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(0,0,0,.8);
    transition: all .5s;
}

.feedback-form__wrap{
    position: absolute;
    opacity: 1;
    width: 560px;
    height: 630px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    margin: auto;
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0;
    text-align: center;
}

.feedback-form__wrap-palitra{
    height: 375px;
}

.feedback-form__wrap-konsultacija{
    height: 328px;
}

.feedback-form{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(0,0,0,.8);
    transition: all .5s;
}



.feedback-form__wrap img{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.feedback-form__wrap #feedback-form__title{
    font-size: 22px;
    font-weight: bold;
    text-align: initial;
    margin: 40px 0 10px 59px;
}

.feedback-form__title-konsultacija{
    line-height: 33px;
    margin-top: 25px !important;
}

.feedback-form__wrap-date{
    position: relative;
    opacity: 1;
    width: 560px;
    height: 410px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
}

.feedback-form__wrap-date img{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.feedback-form__wrap-date #feedback-form__title{
    font-size: 22px;
    font-weight: bold;
    text-align: initial;
    margin: 40px 0 10px 59px;
}

#feed_phone{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#feed_region{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#form_email{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#form_number{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#form_name{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#palitra-email{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#konsultacija-phone{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#palitra-phone{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#feedback_form_date_phone{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#feedback_form_date_region{
    width: 440px;
    height: 50px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
}

#form_message{
    min-width: 440px;
    min-height: 90px;
    margin-top: 30px;
    color: #292929;
    background: #f6f6f6;
    font-weight: normal;
    font-family: "Open Sans", "Circle", Arial, Helvetica, sans-serif;
    border: 1px solid #ededed;
    padding: 15px;
    font-size: 15px;
    max-height: 90px;
    max-width: 440px;
}

#button_contacts{
    background-color: #c50e2d;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 30px 20px 30px;
    transition: .3s all;
    cursor: pointer;
    border-radius: 3px;
}

#button_contacts:hover{
    background-color: #ad0e27;
}

#button_contacts__date{
    background-color: #c50e2d;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 116px 20px 116px;
    transition: .3s all;
    cursor: pointer;
    border-radius: 3px;
    margin: 0 auto;
}

#button_contacts__date:hover{
    background-color: #ad0e27;
}

#button_contacts__palitra{
    background-color: #c50e2d;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 30px 20px 30px;
    transition: .3s all;
    cursor: pointer;
    border-radius: 3px;
}

#button_contacts__konsultacija{
    background-color: #c50e2d;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 30px 20px 30px;
    transition: .3s all;
    cursor: pointer;
    border-radius: 3px;
}

#button_contacts__palitra:hover{
    background-color: #ad0e27;
}

.input__wrapper {
    width: 345px;
    position: relative;
    text-align: center;
}

.input__file {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.input__file-icon-wrapper {
    height: 60px;
    width: 60px;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-right: 1px solid #fff;
}

.input__file-button-text {
    line-height: 1;
    margin-top: 1px;
}

.input__file-button {
    width: 100%;
    max-width: 210px;
    height: 60px;
    background: #818181;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 auto;
    padding-left: 30px;
    transition: .3s all;
}

.input__file-button:hover{
    background: #686868;
}

.feedback-form__wrap p {
    line-height: 20px;
    font-size: 12px;
    width: 440px;
    margin: 20px auto;
    color: #292929;
    text-align: initial;
    opacity: .6;
}

.feedback-form__wrap-date p {
    line-height: 20px;
    font-size: 12px;
    width: 440px;
    margin: 20px auto;
    color: #292929;
    text-align: initial;
    opacity: .6;
}

.feedback-finish{
    display: none;
    font-size: 24px;
    line-height: 36px;
    margin-top: 58px;
}

.feedback-finish-konsultacija{
    display: none;
    font-size: 24px;
    line-height: 36px;
    margin-top: 58px;
}

.feedback-button{
    display: flex;
}

.feedback-button-palitra {
    margin: 0 auto;
    width: 440px;
    height: 50px;
    padding: 0 !important;
}

.feedback-button-konsultacija {
    margin: 0 auto;
    width: 440px;
    height: 50px;
    padding: 0 !important;
}

.product__info-elem{
    padding: 30px 0;
    border-top: 1px solid rgba(99, 99, 99, 0.2);
    border-bottom: 1px solid rgba(99, 99, 99, 0.2);
    cursor: pointer;
}

.product__info-elem2{
    padding: 30px 0;
    border-bottom: 1px solid rgba(99, 99, 99, 0.2);
    cursor: pointer;
    margin-bottom: 45px;
}

.product__info-elem-header{
    position: relative;
}

.product__info-elem-header img{
    position: absolute;
}

.product__info-elem-header span{
    padding-left: 60px;
}

.product__first-ico{
    bottom: -15px;
    left: 10px;
}

.bottom-arrow{
    width: 8px;
    opacity: .5;
    right: 15px;
}

.product__info-elem-expanded{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: .3s all;
    margin-left: 10px;
}

.expanded{
    max-height: 100%;
    opacity: 1;
    line-height: 24px;
    margin-top: 35px;
    margin-left: 10px;
    text-align: justify;
}

.expanded2{
    max-height: 100%;
    opacity: 1;
    line-height: 24px;
    margin-top: 35px;
    margin-left: 10px;
    text-align: justify;
}

.expanded3{
    max-height: 100%;
    opacity: 1;
    line-height: 24px;
    margin-top: 35px;
    margin-left: 10px;
    text-align: justify;
}

.expanded4{
    max-height: 100%;
    opacity: 1;
    line-height: 24px;
    margin-top: 35px;
    margin-left: 10px;
    text-align: justify;
}

.expanded5{
    max-height: 100%;
    opacity: 1;
    line-height: 24px;
    margin-top: 35px;
    margin-left: 10px;
    text-align: justify;
}

.image-wrapper{
    margin-left: 30px;
}

.image-wrapper-desc {
    line-height: 22px;
}

.image-wrapper-desc h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.image-preview {
    width: 530px;
}

.image-preview-reduced {
    height: 315px;
}

.image-preview img {
    width: 100%;
    border-radius: 5px;
}

.image-preview-reduced img {
    object-fit: cover;
    height: 360px;
}

.small-image-wrapper{
    position: relative;
}

.small-image-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin: 10px 0 30px 0;
}

.small-image-item {
    width: 100px;
    margin: 0 5px;
}

.small-image-item:hover.small-image-item img{
    transform: scale(1.1);
    border: 1px solid #ad0e27;
    transition: .1s;
}

.small-image-item img {
    width: 100%;
    height: 100%;
    transition: .1s;
    border-radius: 5px;
    border: 1px solid transparent;
}

.video-button img{
    position: absolute;
    top: 0;
    right: 0;
}

.product-description-section{
    width: 100%;
    margin-bottom: 50px;
}

/* .tab{
    width: 100%;
    height: 71px;
    background-color: #f5f5f5;
    color: #404040;
} */



.tab{
    width: 100%;
    height: 71px;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
    color: #404040;
}


.tab__controls{
    display: flex;
    width: 1170px;
    margin: 0 auto;
}

.tab__controls-elem{
    line-height: 70px;
    margin-left: 60px;
    cursor: pointer;
}
/* 
.tab__controls-elem:hover{
    background-color: #f5f5f5;
} */

.tab__controls-elem:first-child{
    line-height: 70px;
    margin-left: 0;
}

.tab__controls-elem-active{
    border-bottom: 2px solid #c50e2d;
}

.open-tab__elem{
    display: none;
    line-height: 20px;
}

.open-tab__elem-text{
    line-height: 24px;
    text-align: justify;
}

.open-tab__elem-text p{
    margin-bottom: 20px;
}

.open-tab__elem.open-tab__active{
    display: block;
}
.open-tab__text {
    margin-bottom: 100px;
}
.open-tab__text p {
    text-align: justify; 
    font-size: 16px; 
    opacity: .8;
    margin: 20px 0;
    line-height: 28px
}
.open-tab__text ul {
    text-align: justify;
    font-size: 16px;
    opacity: .8;
    line-height: 28px;
    padding: 0 40px;
}
.open-tab__text ul li {
    margin-bottom: 20px;
}
.open-tab__threeImg {
    width: fit-content;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}
.open-tab__threeImg img{
    width: 330px;
    margin: 13px 0;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.2);
}
.open-tab__threeImg div{
    width: min-content;
    margin-left: 30px;
}

.open-tab__threeImg-first{
    width: 700px !important;
    height: 525px;
}

.open-tab h2 {
    padding-top: 40px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.open-tab__imgFlex {
    display: flex;
    justify-content: space-between;
}
.open-tab__text figure figcaption{
    text-align: center;
    opacity: .6;
}
.open-tab__imgFlex figure{
    width: min-content;
    text-align: center;
}
.open-tab__imgFlex figure figcaption{
    opacity: .6;
}

.tab-body__block{
    display: flex;
}

.tab-table{
    flex-grow: 2;
    padding-right: 100px;
}

.tab-body__text{
    line-height: 24px;
    margin: 40px 0 0 20px;
    text-align: justify;
}

.tab-body__text p{
    color: #404040;
    line-height: 24px;
    padding: 8px 0 8px 0;
}

.tab-body__text ul{
    color: #404040;
    padding-left: 20px;
    opacity: .9;
}

.tab-certificates__block{
    width: 371px;
    background-color: #f9f9f9;
    padding: 30px 40px 30px 40px;
    border: 1px solid #f0f0f0;
}

.tab-certificates__block:first-child{
    margin-bottom: 30px;
}

.tab-certificates__block-color{
    margin-bottom: 30px;
    position: relative;
}

.tab-certificates__block-color:last-child{
    margin-bottom: 0;
}

.tab-certificates__title{
    color: #000;
    font-size: 21px;
}

.tab-certificates__elem{
    display: flex;
    margin-top: 25px;
}

.tab-certificates__elem-off{
    display: none;
}

.tab-certificates__elem img{
    height: 32px;
    margin-right: 20px;
    margin-top: 5px;
}

.tab-certificates__link-zapros-cveta{
    font-size: 12px !important;
    width: 440px;
    color: #292929;
    opacity: .6;
}

.tab-certificates__link{
    font-size: 13px;
}

.tab-certificates__link a {
    color: #292929;
    font-size: 14px;
}

.tab-certificates__link a:hover {
    text-decoration: underline;
}

.sub-title{
    color: #aeaeae;
}

table.tab-table__wrap{text-decoration: none;border-collapse:collapse;width:100%;text-align:center;}
table.tab-table__wrap th{font-weight:normal;font-size:14px; font-weight: bold;color:#404040;background-color:#f5f5f5;}
table.tab-table__wrap td{font-size:14px;color:#404040;}
table.tab-table__wrap td,table.tab-table__wrap th{white-space:pre-line;padding:13px 0px;line-height:18px;vertical-align: middle;border: 0px solid #f2f2f2;}	
table.tab-table__wrap tr:hover{background-color:#f3f3f3}
table.tab-table__wrap tr:hover td{color:#404040;cursor:default;}
.wrap__first-column{text-align: left}
.wrap__header{text-align: center;}

table.tab-table__wrap-gruntovka{
    width: 80%;
    margin: 0 auto;
}
.tab-table__wrap-gruntovka .wrap__first-column{
    padding-left: 30px !important;
}
.wrap__column-gruntovka{
    text-align: end;
    padding-right: 30px !important;
}

.tab-table__wrap-mini-gruntovka .wrap__first-column{
    padding-left: 20px !important;
    width: 490px;
}

.tab-table__wrap-mini-gruntovka .wrap__first-column a{
    color: #404040;
    transition: all .3s;
}

.tab-table__wrap-mini-gruntovka .wrap__first-column:hover a{
    color: #ed3130;
}

.tab-table__wrap-mini-gruntovka .wrap__second-column{
    width: 110px;
}

table.tab-table__wrap-ventfasad{
    width: 80%;
    margin: 0 auto;
}
.tab-table__wrap-ventfasad .wrap__first-column{
    padding-left: 30px !important;
}
.wrap__column-ventfasad{
    text-align: end;
    padding-right: 30px !important;
}

.tab-table__wrap-mini-ventfasad .wrap__first-column{
    padding-left: 20px !important;
    width: 490px;
}

.tab-table__wrap-mini-ventfasad .wrap__first-column a{
    color: #404040;
    transition: all .3s;
}

.tab-table__wrap-mini-ventfasad .wrap__first-column:hover a{
    color: #ed3130;
}

.tab-table__wrap-mini-ventfasad .wrap__second-column{
    width: 110px;
}

.tab-table__wrap-mini-ventfasad .wrap__second-column{
    width: 80px;
}

.h3{
    color: #000;
    font-size: 22px;
    font-weight: bold;
    margin: 40px 0;
}

.h3__video{
    margin-top: 70px;
}

.tab-body__h3{
    font-size: 18px;
    font-weight: 700;
    margin: 40px 0 20px 0;
}

.video{
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.video__elem{
    width: 560px;
    height: auto;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    border-radius: 7px;
}

.video__elem img{
    border-radius: 7px 7px 0 0;
    transition: .3s all;
}

.logo-youtube {
    width: 50px;
    border-radius: 50px;
}

.video__elem img:hover{
    opacity: .5;
}

.video__footer{
    padding: 25px;
}

.video__date{
    color: #aeaeae;
    font-size: 13px;
    margin-top: 15px;
}

.video__title{
    margin-top: 0;
}

.video__title a{
    font-size: 18px;
    line-height: 25px;
    transition: .3s all;
    font-weight: 700;
}

.video__title a:hover{
    color: #ed3130;
}

.video__subtitle{
    font-weight: 400;
    font-size: 13px;
    opacity: .8;
    line-height: 20px;
}


.facilitys{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
    margin-bottom: 70px;
}

.facilitys__row{
    display: none;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 40px;
}

.facilitys__open-row{
    display: flex; 
    width: 100%;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.facilitys__block{
    display: flex;
    flex-wrap: wrap;
}

.facilitys__all{
    position: absolute;
    font-size: 13px;
    top: -60px;
    right: 0;
}

.facilitys__all a{
    color: #404040;
    transition: .3s all;
    border-bottom: 1px solid #404040;
}

.facilitys__all a:hover{
    color: #ed3130;
    border-bottom: 1px solid #ed3130;
}

.facilitys__elem{
    width: 280px;
    height: 325px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    border-radius: 7px;
    margin-bottom: 9px;
    margin-right: 9px;
}

.facilitys__elem img{
    border-radius: 7px 7px 0 0;
    transition: .3s all;
    width: 280px;
    height: 210px;
}

.facilitys__elem img:hover{
    opacity: .5;
}

.facilitys__footer{
    line-height: 20px;
    padding: 12px 30px;
}

.facility__city{
    color: #aeaeae;
    font-size: 13px;
}

.facility__name{
    margin: 10px 0;
}

.facility__name a{
    font-size: 18px;
    line-height: 25px;
    transition: .3s all;
    font-weight: 600;
    text-transform: uppercase;
}

.facility__name a:hover{
    color: #ed3130;
}

.facility__date{
    font-size: 13px;
    opacity: .8;
}

.delivery-payment{
    display: flex;
    justify-content: space-between;
}

.delivery{
    width: 550px;
}

.delivery__info{
    line-height: 24px;
}

.payment{
    width: 550px;
}

.payment__info{
    text-align: justify;
    line-height: 24px;
}

.footer{
 
}

.footer__main{
    background-color: #202020;
}

.footer-content {
    width: 1170px;
    display: flex;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 130px;
    justify-content: space-between;
}

.footer-logo {
    width: 175px;
}

.footer-logo p{
    font-size: 10px;
    opacity: 0.37;
    color: #fff;
    margin-top: 10px;
    line-height: 1;
    text-align: justify;
}

.footer-item {
    color: #fff;
    font-size: 13px;
    opacity: 0.8;
    line-height: 2;
}

.footer-item a {
    color: #fff;
    font-size: 13px;
    opacity: 0.8;
}

.footer-item-title {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 25px;
    margin-top: 35px;
    line-height: 1;
    font-weight: bold;
}

.footer-second {
    background-color: #1A1A1A;
}

.ur_info {
    font-size: 12px;
    color: #fff;
    opacity: .8;
    align-self: center;
    line-height: 3;
}

.ur_info:last-child {
    width: 521px;
    font-size: 11px;
    line-height: 2;
    opacity: .5;
    text-align: center;
    margin-top: 27px;
}

.footer-second 
.footer-content{
    flex-direction: column;
}

.footer-item .mail_copy {
    font-weight: normal !important;
}


/* .footer__main-flex{
    display: flex;
    gap: 64px;
}

.footer__copyright-panel{
    height: 194px;
    background-color: #141414;
}

.footer__developer-info{
    height: 61px;
    background-color: #050505;
}

.footer__main-column{
    flex-grow: 1;
    height: 500px;
    padding-top: 50px;
    line-height: 40px;
}

.footer__main-column__header{
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.footer__main-column__header a{
    color: #fff;
    font-size: 22px;
}

.footer__main-column__elem a{
    color: #939393;
    transition: .3s all;
}

.footer__main-column__elem a:hover{
    color: #dfdfdf;
}

.footer__contacts{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer__copyright-panel__flex{
    display: flex;
    margin: 0 auto;
    position: relative;
}

.footer__copyright-panel__logo{
    flex-grow: 1;
}

.footer__copyright-panel__logo span{
    font-size: 11px;
    font-weight: 300;
    opacity: .5;
}

.footer__copyright-panel__logo img{
    margin: 40px 120px 20px 7px;
}

.footer__copyright-panel__text{
    flex-grow: 3;
    margin-top: 25px;
    font-size: 11px;
    font-weight: 300;
    opacity: .5;
    line-height: 23px;
} */

/* .footer__copyright-panel__message{
    flex-grow: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 80px;
}

.footer__copyright-panel__message a{
    color: #939393;
    border-bottom: 1px dotted #939393;
    line-height: 20px;
} */

.slide{
    position: relative;
}

.slide.slick-slide {
    background:#f1f1f1;
}
.slide.slick-slide a {
    display: flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}


.catalog-product{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.catalog-product__text{
    line-height: 24px;
    text-align: justify;
}

.catalog-product__text h2{
    padding-top: 40px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.catalog-product__text ul{
    padding-left: 20px;
}

.catalog-product__text p{
    padding-bottom: 15px;
}

.catalog-product__text-mini p{
    padding-bottom: 20px;
}

.sidebar-action{
    background-color: #f9f9f9;
    margin-right: 20px;
}

.sidebar-block{
    min-width: 24%;
    height: max-content;
}

.sidebar{
    min-width: 24%;
    margin-right: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    height: max-content;
}

.sidebar-action__block{
    display: flex;
}

.sidebar-action__title{
    color: #000;
    font-size: 21px;
    margin-bottom: 20px;
}

.sidebar-action{
    margin-top: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: 30px 20px 30px 20px;
    font-size: 13px;
    opacity: .8;
    line-height: 20px;
}

.sidebar-action__img{
    margin-right: 20px;
}

.catalog-product__banner{
    margin-bottom: 25px;
    border-radius: 5px;
}

.catalog-product h2.first-elem__h2 {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 8px;
}

.catalog-product h2 {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 45px;
}

.catalog-product__active{
    opacity: 1 !important;
    color: #c50e2d;
}

.catalog-product__right{
    width: 100%;
}

.catalog-product__content{
    height: max-content;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.catalog-product__item{
    width: 20%;
    height: 278px;
    border-right: 1px solid #e9e9e9;
    padding: 20px;
    
}

.catalog-product__item img{
    transition: all .5s;
}

.catalog-product__item:hover img{
    opacity: .6;
}

.catalog-product__item-last{
    border-right: 0;
}

.sidebar__item{
    line-height: 30px;
    font-size: 13px;
}

.sidebar__item-active{
    padding-bottom: 20px;
}

.sidebar__item-border_top{
    border-top: 1px solid #e9e9e9;;
}

.sidebar__item img{
    width: 8px;
    margin: 0 10px;
}

.sidebar__item-header{
    font-size: 15px;
    font-weight: bold;
    padding: 15px 20px;
    color: #000;
}

.sidebar__item-header__obekty{
    font-size: 15px;
    font-weight: bold;
    padding: 15px 20px;
    color: #000;
    padding-bottom: 0px;
    margin-top: 20px;
    /* border-top: 1px solid; */
    border-top: 1px solid #e9e9e9;
}

.sidebar__item-header__obekty:first-child{
    border-top: 0;
    margin-top: 0;
}

.sidebar__item-title{
    padding: 0 20px;
}

.sidebar__item-title a{
    border-bottom: 1px solid;
}

.sidebar__item-subtitle{
    padding-left: 60px;
}

.sidebar__item-subtitle-shtukaturka{
    padding-left: 25px;
}

/* .sidebar__item-title__active a{
    color: #c50e2d;
    border-bottom: 1px solid #c50e2d;
    opacity: 1 !important;
} */

.sidebar__item-title__active {
    background-color: #F4F5F6;
    border-radius: 8px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 20px;
}

.sidebar__item a{
    opacity: .8;
    transition: .3s all;
} 

.sidebar__item a:hover{
    opacity: 1;
    color: #c50e2d;
}

.sidebar__item-header__close{
    border-top: 1px solid #e9e9e9;
    display: flex;
}    

.sidebar__item-header__close img{
    height: fit-content;
    margin-top: 11px;
}

.catalog-product__img{
    width: 140px;
    padding-top: 20px;
}

.catalog-product__img-keramo{
    width: 130px;
}

.catalog-product__img_2{
    width: 190px;
}

.catalog-product__title{
    line-height: 20px;
    font-size: 12px;
    transition: .3s all;
    height: 80px;
}

.catalog-product__title-height{
    height: 50px;
}

.catalog-product__title:hover{
    color: #c50e2d;
}

.catalog-product__price{
    display: flex;
    justify-content: space-between;
}

.catalog-product__price span{
    font-size: 17px;
    font-weight: bold;
    transition: .3s all;
}

.catalog-product__price span:hover{
    color: #c50e2d;
}

.catalog-product__availability{
    font-size: 11px;
}

.hit{
    padding: 3px 10px;
    background-color: #2997c5;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    transition: .3s all;
}

.hit:hover{
    background-color: #c50e2d;
}

.h1_link{
    opacity: .3;
    transition: .3s all;
    cursor: pointer;
}

.h1_link:hover{
    opacity: 1;
    color: #c50e2d;
}

.catalog-product__item-bottom{
    border-bottom: 1px solid #e9e9e9;
}

.info-company{
    display: flex;
    justify-content: space-between;
    font-weight: bolder;              
    margin: 50px 0 80px 0;          
}

.info-company__info{
    width: 240px;
    height: 240px;
    padding: 35px;
    line-height: 100px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    transition: .5s all;
    cursor: default;
}

.info-company__info:hover{
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}

.info-company__title{
    font-size: 45px;
    color: #cc3433;
    font-weight: bold;
}

.info-company__desc{
    font-size: 14px;
    line-height: 20px;
}

.contacts__elem{
    width: 100%;
    height: 150px;
    display: flex;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: .5s all;
    cursor: default;
}

.contacts__elem:hover{
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}

.contacts__city{
    width: 40%;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 45px 0 0 40px;
    font-size: 17px;
    font-weight: bold;
}

.contacts__inform{
    width: 71%;
    line-height: 20px;
    padding: 35px 0 0 40px;
}

.contacts__address{
    font-size: 13px;
    width: 40%;
    color: #e4373a;
    border-bottom: 1px dotted;
    margin-bottom: 10px;
}

.contacts__chart{
    font-size: 12px;
    color: #888888;
    margin-bottom: 10px;
}

.contacts__phone{
    font-size: 13px;
    color: #888888;
    margin-bottom: 8px;
}

.contacts__phone span{
    color: #000;
}

.contacts__requisites{
    height: 290px;
}

.contacts__inform-requisites{
    border-bottom: 1px dotted;
    display: inline-block;
    color: #e4373a;
}

.contacts__inform-requisites span{
    color: #e4373a;
}

.map{
    width: 100%;
}

.map__elem{
    width: 950px;
    height: 420px;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 0 49px rgb(0 0 0 / 13%);
    -moz-box-shadow: 1px 0 49px rgb(0 0 0 / 13%);
    box-shadow: 1px 0 49px rgb(0 0 0 / 13%);
    padding: 25px;
    position: relative;
}

.map__button{
    position: absolute;
    width: 500px;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.office_photo{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.office_photo__elem img{
    width: 370px;
    height: auto;
    transition: .2s all;
    cursor: default;
    border-radius: 2px;
}

.office_photo__elem img:hover{
    -webkit-box-shadow: -3px 3px 20px -2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -3px 3px 20px -2px rgba(0, 0, 0, 0.4);
    box-shadow: -3px 3px 20px -2px rgba(0, 0, 0, 0.4);
}

.unit{
    margin-left: 10px;
}

.start_calc{
    max-width: 240px;
    border-radius: 5px;
    text-align: center;
    line-height: 47px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s all;
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 14px; 
    margin: 30px auto 0 auto; 
}

.button-start_calc{
    color: #fff;
}

.tab__calc{
    margin-top: 50px;
}

.tab__calc .calc__table-left-open{
    display: block;
    width: 800px;
    color: #404040;
}

.tab__calc .calc__table-right-open{
    display: block;
    width: 355px;
    margin-top: 43px;
    margin-bottom: 20px;
}

.calc__table-open{
    display: flex;
    opacity: 1;
    justify-content: space-between;
    transition: 1s all;
}

.calc__table-left-open .calc__white-bg{
    line-height: 5px;
}

.calc__table-right-open .calc__table-price{
    line-height: 5px;
    margin-top: 17px;;
}

.calc__table{
    display: flex;
    opacity: 0;
    justify-content: space-between;
    transition: 1s all;
}

.calc__table-left {
    display: none;
    width: 800px;
    color: #404040;
}

.calc__table-right{
    display: none;
    /* background-color: #f6f6f6; */
    width: 355px;
    margin-top: 43px;
    margin-bottom: 20px;
}

.calc__table-price{
    width: 100%;
    padding: 30px 20px;
    color: #404040;
}

.sticky{
    position: sticky;
    top: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
}

.calc__table-title{
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.calc__table-hr{
    margin: 30px 0;
}

.calc__table-subtitle{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 12px;
}

.calc__table-subtitle__total{
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.calc__white-bg{
    position: relative;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    font-size: 13px;
    padding: 40px 30px;
}

.calc__table-left-title{
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 10px 0 30px 0;
}

.calc__table-left-elem{
    display: flex;
    margin-bottom: 35px;
}

.calc__table-left-elem:first-child .calc__table-left-subelem{
    font-weight: bold;
}

.calc__table-left-subelem a:hover{
    color: #ed3130;
    text-decoration: underline;
}

.subelem1{
    width: 50px;
}

.subelem2{
    width: 300px;
}

.subelem3{
    width: 97px;
    text-align: center;
}

.subelem4{
    width: 97px;
    text-align: center;
}

.subelem5{
    width: 97px;
    text-align: center;
}

.subelem6{
    width: 97px;
    text-align: center;
}

.calc__table-left-total{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-top: 70px;
    margin-right: 20px;
}

.calc__table-left-total-bottom{
    margin-top: 30px;
}

.choose-city{
    display: flex;
    z-index: -10;
    opacity: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: .3s all;
    position: fixed;
}

.choose-city__block{
    position: relative;
    opacity: 1;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 50px;
}    

.choose-city__elements{
    position: relative;
    opacity: 1;
    width: 880px;
    height: 900px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

@media (max-height: 1040px)  {
    .choose-city__elements{
        height: 750px;
    }
}

@media (max-height: 895px)  {
    .choose-city__elements{
        height: 600px;
    }
}

@media (max-height: 590px)  {
    .choose-city__elements{
        height: 480px;
    }

    .choose-city__elem{
        height: 18px !important;
    }
}


.choose-city__elem{
    width: 140px;
    height: 25px;
    margin: 0;
    cursor: pointer;
    transition: .3s all;
}

.choose-city__elem:hover{
    color: #e4373a;
}

/* .choose-city__char:first-child{
    margin-top: 0px;
} */

.choose-city__char{
    cursor: unset;
    width: 140px;
    height: 20px;
    margin: 0 0 25px 0;
    font-weight: 900;
    font-size: 22px;
    margin-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mailcopy__message{
    position: absolute;
    width: 150px;
    right: 0;
    top: 7px;
    font-weight: bold;
    transition: .2s all;
    opacity: 0;
}

.tab-table__third-elem{
    width: 400px;
}

.tab-table__second-elem{
    width: 100px;
}

.tab-table__first-elem img{
    width: 160px;
}

.table-podsistema{
    border: 1px solid rgba(99, 99, 99, 0.15);
    margin-top: 40px;
    display: none;
    transition: all .5s;
}

.table-podsistema__elem:first-child{
    display: flex;
    border: 0;
}

.table-podsistema__elem{
    display: flex;
    border-top: 1px solid rgba(99, 99, 99, 0.15);
}

.table-podsistema__elem-img{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid rgba(99, 99, 99, 0.15);
}

.table-podsistema__elem-article{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid rgba(99, 99, 99, 0.15);
    min-width: 150px;
    position: relative;
}

.table-podsistema__elem-article div{
    font-weight: bold;
}

.table-podsistema__elem-desc{
    
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.podsistema__elem-desc__header{
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(99, 99, 99, 0.15);
    margin-bottom: 15px;
}

.podsistema__elem-desc__price{
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 16px;
    font-weight: bold;
}

.calc-podsistema__input-block{
    width: 100%;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    -moz-box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.calc-podsistema__start{
    padding: 15px 59px;
    color: #fff;
    max-width: 240px;
    border-radius: 5px;
    text-align: center;
    line-height: 47px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s all;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #c50e2d;
    margin-left: 30px;
}

.calc-podsistema__input-block input{
    width: 315px;
    height: 49px;
    padding-left: 15px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid rgb(190, 190, 190);
    transition: .3s all;
}

.calc-podsistema__input-block input:focus{
    border: 1px solid #444444;
}

.calc-podsistema__input-margin{
    width: fit-content;
    margin: 0 auto;
}

.calc-podsistema__table{
    display: flex;
    justify-content: space-between;
    transition: 1s all;
}

.calc__table-left{
    width: 800px;
    color: #404040;
}

.calc__table-right{
    /* background-color: #f6f6f6; */
    width: 355px;
    margin-top: 43px;
    margin-bottom: 20px;
}

.calc__table-price{
    width: 100%;
    padding: 30px 20px;
    color: #404040;
}

.calc-podsistema__white-bg{
    position: relative;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    -moz-box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    margin-bottom: 20px;
    font-size: 13px;
    padding: 40px 30px;
    line-height: 3px;
}

.calc-podsistema__table-price{
    width: 100%;
    padding: 30px 20px;
    color: #404040;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    -moz-box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    box-shadow: 0px 0px 20px 0px rgb(34 60 80 / 15%);
    line-height: 3px;
}

.sidebar-menu{
    display: flex;
    justify-content: space-between;
}

.sidebar-menu__left{
    width: 291px;
}

.sidebar-menu__link{
    display: inline-block;
    width: 100%;
    padding: 20px 0 20px 40px;
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0;
    border-top: 0px;
    cursor: pointer;
}

.sidebar-menu__link:first-child{
    border-top: 1px solid #f0f0f0;
}

.sidebar-menu__right{
    display: flex;
}

.product-item{
    position: relative;
    width: 293.4px;
    margin: -1px -1px 0 0;  
    border: 1px solid #e9e7e7;
    padding: 18px 20px;
}

.product-item__text{
    margin-top: 16px;
    transition: all .5s;
    text-align: center;
    font-weight: bold;
}



.sidebar-menu__right-link-active .product-item{
    z-index: 1;
    border: 1px solid #c50e2d;
    transition: all .5s;
}

.product-irem__info{
    position: absolute;
    bottom: 18px;
    width: 249px;
    display: flex;
    justify-content: space-between;
}

.product-item__price{
    display: flex;
    flex-direction: column;
}

.product-item__availability{
    display: inline;
}

.product-item__price span{
    font-size: 21px;
    font-weight: bold;
    transition: .3s all;
    margin-bottom: 10px;
}

.product-item__price span:hover{
    color: #c50e2d;
}

.product-item__img{
    width: 50px;
    height: 50px;
}

.sidebar-menu__link-active{
    background-color: #c50e2d;
    color: #fff;
}

.sidebar-menu__open{
    display: block;
}

.sidebar-menu__right-link{
    cursor: pointer;
}

.sidebar-menu__right-link img{
    transition: all .5s;
    width: 100%;
}

.sidebar-menu__right-link:hover img{
    opacity: .6;
}

.table-podsistema__elem-article img{
    width: 70%;
}

.catalog-product__item-position{
    position: relative;
}

.catalog-product__availability-position{
    position: absolute;
    top: 232px;
}







/* Тумблер переключение картинок */

.switch-container{
    width: 1170px; 
    margin: 0 auto; 
    position: relative;
}

.switch{
    position: absolute;
    right: 0;
    top: 30px;
    display: flex;
    align-items: center;
    font-size: 13px;
    z-index: 10;
}

.switch-index {
    text-shadow: black 1px 1px 15px;
    color: #fff;
}

.switch_tc{
    left: 0;
}

.switch-btn {
    display: inline-block;
    width: 48px; /* ширина */
    height: 24px; /* высота */
    border-radius: 19px; /* радиус скругления */
    background: #ed3130; /* цвет фона */
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms; /* анимация */
}
.switch-btn::after {
    content: "";
    height: 18px; /* высота кнопки */
    width: 18px; /* ширина кнопки */
    border-radius: 17px;
    background: #fff; /* цвет кнопки */
    top: 3px; /* положение кнопки по вертикали относительно основы */
    left: 3px; /* положение кнопки по горизонтали относительно основы */
    transition-duration: 300ms; /* анимация */
    position: absolute;
    z-index: 1;
}

.switch-btn2 {
    display: inline-block;
    width: 48px; /* ширина */
    height: 24px; /* высота */
    border-radius: 19px; /* радиус скругления */
    background: #ed3130; /* цвет фона */
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms; /* анимация */
}
.switch-btn2::after {
    content: "";
    height: 18px; /* высота кнопки */
    width: 18px; /* ширина кнопки */
    border-radius: 17px;
    background: #fff; /* цвет кнопки */
    top: 3px; /* положение кнопки по вертикали относительно основы */
    left: 3px; /* положение кнопки по горизонтали относительно основы */
    transition-duration: 300ms; /* анимация */
    position: absolute;
    z-index: 1;
}

.switch-on::after {
    left: 27px;
}

.switch-on {
    background: #118c4e;
}

.hide-image{
    display: none !important;
    opacity: 0;

}

.hide-image-plus{
    display: block !important;
    opacity: 1;
    animation: fadeInFromNone .3s ease-in-out;
}

@keyframes fadeInFromNone {
    0% {
      display: none;
      opacity: .2;
    }
  
    1% {
      display: block;
      opacity: .2;
    }
  
    100% {
      display: block;
      opacity: 1;
    }
  }


.slide__header{
    position: absolute;
    z-index: 10;
    line-height: 20px;
    width: 420px;
}

.slide__title{
    font-size: 48px;
    font-family: 'RedRing-Black';
    text-transform: uppercase;
    line-height: 55px;
    margin-top: 40px;
    letter-spacing: 1px;
    color: #161616;
}

.slide__subtitle{
    margin-top: 15px;
    margin-left: 3px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    width: 265px;
}

/* .slide__button{
    color: #fff;
    width: 230px;
    height: 50px;
    border-radius: 50px;
    background: linear-gradient(to bottom, #d13238 0%, #b01027 100%);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    margin-top: 50px;
}

.slide__button:hover{
    background: linear-gradient(to bottom, #b01027 0%, #d13238 100%);
} */



.slide__button{
    color: #fff;
    width: 230px;
    height: 57px;
    border-radius: 5px;
    background: #c50e2d;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    margin-top: 22px;
    display: block !important;
    text-align: center;
    place-content: center;
}

/* .slide__button:hover{
    background: linear-gradient(to bottom, #c50e2d 0%, #ef2e3a 100%);
} */













.inform-calc{
    width: 640px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    position: absolute;
    z-index: 0;
    top: 300px;
    left: 25px;
    padding: 20px 40px;
    cursor: default;
    opacity: 0;
    transition: all .5s;
}

.inform-calc__title{
    font-size: 22px;
    font-weight: bold;
    text-align: initial;
    margin: 20px 0 40px 65px;
}

.inform-calc__item{
    display: flex;
    margin-bottom: 20px;
}

.inform-calc__item-nomargin{
    margin: 0;
}

.inform-calc__icon{
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 14px;
    border-radius: 50%;
    background-color: #e4373a;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: .3s all;
}

.inform-calc__icon-description{
    line-height: 28px;
    margin-left: 10px;
}

.inform-calc__subtitle{
    font-size: 12px;
    line-height: 20px;
    opacity: .7;
    margin-left: 39px;
}






.dot-link__item{
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff ;
    background-color: #e4373a;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 1);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 1);
    transition: all .5s;
}

.dot-link__item:hover{
    transform: scale(1.5);
}

.dot-link-1{
    top: 200px;
    right: 310px;
    right: 184px;
    z-index: 10;
    cursor: pointer;
}
.dot-link-2{
    top: 330px;
    right: 256px;
    right: 125px;
    z-index: 10;
    cursor: pointer;
}
.dot-link-3{
    top: 256px;
    right: 62px;
    z-index: 10;
    cursor: pointer;
}

.dot-link-display-none{
    display: none;
}

.dot-link-3-position{
    top: 280px;
    right: 253px;
}

#imgOne{
    cursor: default;
}

#imgTwo{
    cursor: default;
    margin-top: 3px;
}


.dot-link__info-1{
    position: absolute;
    width: 330px;
    height: 210px;
    background-color: #fff;
    right: 220px;
    top: 95px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.dot-link__info-2{
    position: absolute;
    width: 330px;
    height: 210px;
    background-color: #fff;
    right: 152px;
    top: 228px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.dot-link__info-3{
    position: absolute;
    width: 330px;
    height: 210px;
    background-color: #fff;
    right: 21px;
    top: 38px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.dot-link__info-3-position{
    right: 128px;
}

.dot-link__info-title{
    line-height: 22px;
    font-size: 20px;
    font-weight: bold;
    width: 220px;
}

.dot-link__info-subtitle{
    font-size: 12px;
    line-height: 17px;
    opacity: .7;
    position: absolute;
    bottom: 80px;
    width: 270px;
}



.dot-link__info-link{
    position: absolute;
    bottom: 20px;
    line-height: 20px;
    background: #e4373a;
    padding: 7px 25px;
    border-radius: 18px;
    color: #fff;
    font-size: 13px;
    transition: all .5s;
}

.dot-link__info-link:hover{
    background: #c50e2d;
}

.dot-link__info-close1{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.dot-link__info-close2{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.dot-link__info-close3{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.dot-link__info-close1:hover{
    opacity: .5;
}

.dot-link__info-close2:hover{
    opacity: .5;
}

.dot-link__info-close3:hover{
    opacity: .5;
}

.form_wrapper{
    position: absolute;
    background: #f1f1f1;
    width: 770px;
    border-radius: 5px;
    padding-bottom: 20px;
    margin-top: 60px;
    bottom: 40px;
    right: 82px;
    z-index: 100;
}

.feedback-number{
    display: flex;
    padding-left: 25px;
    position: relative;
    margin-top: 20px;
}

#feedback_number__phone{
    width: 350px;
    height: 56px;
    border: 1px solid #dfdee2;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 16px;
    transition: all .3s;
}

#feedback_number__phone_stati{
    width: 350px;
    height: 56px;
    border: 1px solid #dfdee2;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 16px;
    transition: all .3s;
}

.feedback-number__text{
    padding: 3px 160px 0 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 26px;
}

.feedback-number__top{
    font-size: 20px;
}

.feedback-number__bottom{
    font-size: 14px;
    opacity: .7;
    font-weight: 300;
}

.feedback-number__button{
    width: 72px;
    height: 40px;
    background-color: #c50e2d;
    border-radius: 3px;
    transition: all .5s;
    text-align: center;
    position: absolute;
    right: 20px;
    top: 8px;
    border: 0;
    cursor: pointer;
}

.feedback-number__button:hover{
    background-color: #bd0f2c;
}


.consult-container{
    width: 100%;
    height: 360px;
    background-color: #c50e2d;
    margin-bottom: 50px;
    color: #fff;
    display: none;
}

.consult-container__flex{
    display: flex;
}

.consult__img-block{
    width: 400px;
    height: 360px;
    position: relative;
}

.consult__img-block img{
    position: absolute;
    bottom: -1px;
    left: 200px;
}

.consult__name{
    position: absolute;
    line-height: 20px;
    font-weight: bold;
    bottom: 30px;
}

.consult__name-title{
    display: flex;
}

.consult__name-subtitle{
    margin-left: 70px;
    opacity: .6;
}

.consult__header{
    line-height: 40px;
    margin: 0 auto;
    text-align: center;
}

.consult__title{
    font-weight: 300;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 70px;
}

.consult__subtitle{
    font-size: 17px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 30px;
}

.consult__button{
    width: max-content;
    font-size: 16px;
    color: #fff;
    padding: 10px 50px;
    border-radius: 50px;
    background-color: #292929;
    transition: all .5s;
    margin: 0 auto;
    cursor: pointer;
}

.consult__button:hover{
    background-color: #171717;
}


.tab-certificates__header{
    margin-top: 20px;
    font-weight: bold;
}

.proekt__point{
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 20px 0; 
}

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

.proekt__vizual-img{
    width: 32%;
    transition: all .2s;
}

.proekt__vizual-img:hover{
    -webkit-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
}

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

.proekt__konstruktiv-img{
    width: 32%;
    transition: all .2s;
}

.proekt__konstruktiv-img:hover{
    -webkit-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
}

.proekt__raschet-materiala{
    display: flex;
}

.proekt__raschet-materiala__img{
    width: 32%;
    transition: all .2s;
}

.proekt__raschet-materiala__img:hover{
    -webkit-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
}

.proekt__razrabotka-montazhnoj-skhemy{
    display: flex;
}

.proekt__razrabotka-montazhnoj-skhemy__img{
    width: 32%;
    transition: all .2s;
}

.proekt__razrabotka-montazhnoj-skhemy__img:hover{
    -webkit-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.3);
}

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

.proekt__obekt-img{
    width: 32%;
    transition: all .2s;
}

.proekt__obekt-img:hover{
    -webkit-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.1);
    -moz-box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.1);
    box-shadow: 0px 0px 40px 0px rgba(34, 60, 80, 0.1);
}

.calculator-color{
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
    -moz-box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
    box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
}
.calculator-color__h2{
    padding-top: 40px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.calculator-color__href:hover {
    text-decoration: underline;
}
.calculator-color__text{
    width: 980px;
    margin: 60px auto 0 auto;
    position: relative;
}
.calculator-color__text .feedback-number__text {
    padding: 3px 45px 0 0;
}
.calculator-color__text-img {
    position: absolute;
    top: 26px;
    right: -23px;
    width: 265px;
    border-radius: 50%;
}
.calculator-color__text .form_wrapper {
    position: relative;
    background: #f1f1f1;
    width: 682px;
    border-radius: 5px;
    padding: 1px 0 20px 0;
    right: 0;
}
.calculator-color__button1{
    text-align: center;
    border-bottom: 1px solid #fff;
    height: 100px;
    cursor: pointer;
}
.calculator-color__button1 img{
    margin: 24px 0 10px 0;
}
.calculator-color__button1 div{
    font-size: 12px;
}


.calculator-color__button2{
    text-align: center;
    border-bottom: 1px solid #fff;
    height: 100px;
    cursor: pointer;
}
.calculator-color__button2 img{
    margin: 24px 0 10px 0;
}
.calculator-color__button2 div{
    font-size: 12px;
}


.calculator-color__block-fasad{
    width: 505.4px;
    height: 0;
    position: absolute;
    background: #fff;
    opacity: 0;
    top: 71px;
    left: 10px;
    transition: .5s all;
}
.calculator-color__block-fasad p {
    margin: 25px 0 20px 37px;
    font-size: 18px;
    font-weight: 700;
}
.calculator-color__block-otkosy{
    width: 505.4px;
    height: 0;
    position: absolute;
    background: #fff;
    opacity: 0;
    top: 71px;
    left: 10px;
    transition: .5s all;
    z-index: 190;
}
.calculator-color__block-otkosy p {
    margin: 25px 0 20px 37px;
    font-size: 18px;
    font-weight: 700;
}
.otkos_color{
    position: absolute;
    opacity: 0;
    left: 0;
}
.calculator-color__otkos{
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all .2s;
    box-sizing: border-box;
}
.calculator-color__otkos:hover{
    box-shadow: 0px 0px 2px #000;
}
.calculator-color__img{
    padding: 10px 20px 30px 20px;
    width: 128px;
}
.calculator-color__name{
    text-align: center;
    position: absolute;
    bottom: 14px;
    left: 33px;
    font-weight: 600;
}

.calculator-color__white{
    position: absolute;
    width: 100px;
    height: 100%;
    background-color: #E5E3E4;
    top: 0;
    left: -1px;
    z-index: 10;
    border-radius: 10px 0 0 10px;
}
.calculator-color__fasad{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 100%;
    background: #fff;
    top: 0;
    z-index: 20;
    left: 99px;
    transition: all .5s;
    padding-left: 25px;
    overflow: auto;
}


.calculator-color__fasad::-webkit-scrollbar {
    width: 15px;               /* ширина scrollbar */
}
.calculator-color__fasad::-webkit-scrollbar-track {
    background: #f3f3f3;        /* цвет дорожки */
}
.calculator-color__fasad::-webkit-scrollbar-thumb {
    background-color: #bfbfbf;    /* цвет плашки */
    border-radius: 20px;       /* закругления плашки */
    border: 3px solid #f3f3f3;  /* padding вокруг плашки */
}
.calculator-color__fasad::-webkit-scrollbar-thumb:hover {
    background-color: #979797;    /* цвет плашки */
}


.calculator-color__otkosy{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 100%;
    background: #fff;
    top: 0;
    z-index: 20;
    left: 99px;
    transition: all .5s;
    padding-left: 25px;
    overflow: hidden;
}
.calculator-color__p{
    margin: 25px 0 20px 5px;
    font-size: 18px;
    font-weight: 700;
    width: 250px;
}
.calculator-color__palette{
    display: flex;
    flex-wrap: wrap;
}
.calculator-color__ral-home{
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 2px;
    z-index: 15;
    cursor: pointer;
} 
.calculator-color__ral-home:hover::after{
    content: attr(data-title);
    position: absolute; 
    z-index: 1;
    background: rgba(255,255,230,0.9);
    font-family: Arial, sans-serif; 
    font-size: 11px; 
    padding: 5px 2px; 
    border: 1px solid #333;
}
.calculator-color__ral-otkos{
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 2px;
    cursor: pointer;
} 
.calculator-color__ral-otkos:hover::after{
    content: attr(data-title); 
    position: absolute; 
    z-index: 1; 
    background: rgba(255,255,230,0.9); 
    font-family: Arial, sans-serif; 
    font-size: 11px; 
    padding: 5px 2px; 
    border: 1px solid #333;
}
.fasad_color{
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.calculator-color__cod{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 175px;
    height: 60px;
    background-color: #fff;
    z-index: 100;
    border-radius: 10px 0 9px 0;
    line-height: 21px;
    font-size: 14px;
    padding: 10px;
    opacity: .9;
}

#codFasad, #codOtkos{
    font-weight: 700;
}

.calculator-color__cta{
    position: absolute;
    top: 29px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c50e2d;
    z-index: 100;
    border: 8px solid #fff;
    animation: pulse 1s infinite;
    cursor: pointer;
    transition: .3s all;
}
.calculator-color__cta:hover {
    animation: none;
    border: 3px solid #fff;
}
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(204, 44, 44, 0.6);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 44, 44, 0.6);
      box-shadow: 0 0 0 0 rgba(204, 44, 44, 0.6);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }

.calculator-color__call{
    width: 0;
    height: 0;
    opacity: 0;
    border-radius: 15px;
    position: absolute;
    z-index: 99;
    background-color: #fff;
    right: 40px;
    top: 35px;
    line-height: 19px;
    font-weight: 600;
    transition: .5s all;
    overflow: hidden;
}

.calculator-color__call-text{
    padding: 15px 20px 15px 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.089);
    opacity: .9;
}

.calculator-color__call-form{
    display: flex;
}

.calculator-color__call-button{
    width: 72px;
    height: 37px;
    background-color: #c50e2d;
    border-radius: 3px;
    transition: all .5s;
    text-align: center;
    position: absolute;
    bottom: 18px;
    right: 20px;
    border: 0;
    cursor: pointer;
}

.calculator-color__call-button:hover{
    background-color: #bd0f2c;
}

#calculator-color__call-phone{
    padding: 15px 75px 15px 15px;
    margin: 13px;
    border: 1px solid #9393934d;
    border-radius: 5px;
    font-size: 17px;
}

.calculator-color__call-indicator{
    opacity: 0;
    border-radius: 15px;
    position: absolute;
    z-index: 15;
    background-color: #fff;
    left: 125px;
    top: 20px;
    line-height: 19px;
    font-weight: 600;
    transition: 1s all;
    overflow: hidden;
}

.calculator-color__mail-sent{
    opacity: 0;
    border-radius: 15px;
    position: absolute;
    z-index: 15;
    background-color: #fff;
    right: 100px;
    top: 20px;
    line-height: 19px;
    font-weight: 600;
    transition: 1s all;
    overflow: hidden;
}

.tc{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: -5px;
    margin-top: 100px;
}

.tc__block{
    position: absolute;
    height: 460px;
}

.tc__link{
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff ;
    background-color: #e4373a;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 1);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 1);
    transition: all .5s;
    cursor: pointer;
}

.tc__link:hover{
    transform: scale(1.5);
}

.tc__link-1{
    left: 580px;
    top: 85px;
}

.tc__link-2{
    top: 140px;
    left: 395px;
}

.tc__link-3{
    top: 300px;
    left: 335px;
}

.tc__link-4{
    left: 770px;
    top: 200px;
}

.tc__link-info-1{
    position: absolute;
    width: 330px;
    height: 195px;
    background-color: #fff;
    right: 410px;
    top: 125px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.tc__link-info-2{
    position: absolute;
    width: 330px;
    height: 195px;
    background-color: #fff;
    right: 455px;
    top: 165px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.tc__link-info-3{
    position: absolute;
    width: 330px;
    height: 195px;
    background-color: #fff;
    right: 475px;
    top: 230px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.tc__link-info-4{
    position: absolute;
    width: 330px;
    height: 195px;
    background-color: #fff;
    right: 270px;
    top: 230px;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    border-radius: 1px;
    box-shadow: 0px 0px 21px -9px rgb(34 60 80 / 100%);
    padding: 25px 20px 30px 20px;
}

.tc__link-info-title{
    line-height: 22px;
    font-size: 20px;
    font-weight: bold;
    width: 240px;
}

.tc__link-info-subtitle{
    font-size: 12px;
    line-height: 17px;
    opacity: .7;
    position: absolute;
    bottom: 80px;
    width: 270px;
}

.tc__link-info-link{
    position: absolute;
    bottom: 20px;
    line-height: 20px;
    background: #e4373a;
    padding: 7px 25px;
    border-radius: 18px;
    color: #fff;
    font-size: 13px;
    transition: all .5s;
}

.tc__link-info-link:hover{
    background: #c50e2d;
}

.tc__link-info-close1{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.tc__link-info-close2{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.tc__link-info-close3{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.tc__link-info-close4{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all .5s;
}

.tc__link-info-close1:hover{
    opacity: .5;
}

.tc__call{
    opacity: 1 !important;
    width: 300px;
    height: 165px;
    top: 20px;
    right: 90px;
}

.subcategory{
    border: 0;
    justify-content: space-between;
    margin-bottom: 150px;
}

.subcategory__elem{
    border-radius: 8px;
    box-shadow: 1px 2px 8px 0 rgb(0 0 0 / 20%);
    display: inline-block;
    height: 280px;
    padding: 30px;
    position: relative;
    vertical-align: top;
    width: 280px;
    transition: all .1s;
    cursor: pointer;
    text-align: center;
    margin-bottom: 15px;
}

.subcategory__elem:hover{
    box-shadow: 0 8px 8px 0 rgb(0 0 0 / 5%), 0 29px 26px 0 rgb(0 0 0 / 8%);
}

.subcategory__img{
    height: 150px;
    margin-top: 10px;
}

.subcategory__title{
    font-weight: 700;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    line-height: 20px;
}


.size-50{
    display: none;
}

.size-50-100{
    display: none;
}

.size-100-500{
    display: none;
}

.size-500{
    display: none;
}

.slider__block{
    display: flex; 
    -webkit-box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
    -moz-box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
    box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.15); 
    border-radius: 10px; 
    margin-bottom: 50px;
}

.slider__wrapper {
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}

.slider__item {    
    display: flex;
    width: 800px !important;
    height: 600px !important;
    color: rgba(255, 255, 255, 0.8);
    font-size: 7rem;
    overflow: hidden;
    justify-content: center;
}

.slider__control{
    background: rgba(0,0,0,.4);
}

.slider__description{
    height: 200px;

}
.slider-right{
    width: 370px;
    background: #fff;
    line-height: 23px;
    padding: 30px 25px;
    border-radius: 0 10px 10px 0;
}
.slider-right__title{
    font-weight: 700;
}
.slider-right__elem{
    margin-bottom: 15px;
}
.slider-right__subtitle{
    opacity: .7;
}

.sidebar__item-header__obekty{
    font-size: 15px;
    font-weight: bold;
    padding: 15px 20px;
    color: #000;
    padding-bottom: 0px;
    margin-top: 20px;
    /* border-top: 1px solid; */
    border-top: 1px solid #e9e9e9;
}

.sidebar__item-header__obekty:first-child{
    border-top: 0;
    margin-top: 0;
}

.slider__mini{
    display: flex; 
    margin-bottom: 150px;
    flex-wrap: wrap;
}

.slider__mini-img{
    width: 220px;
    height: 165px;
    border-radius: 5px; 
    -webkit-box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
    -moz-box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.29);
    box-shadow: 0px 0px 44px 14px rgba(34, 60, 80, 0.15); 
    margin-right: 14px;
    margin-bottom: 15px;
    transition: all .3s;
    cursor: pointer;
}

.slider__mini-img:hover{
    transform: scale(1.1);
}

.h3-obekt{
    margin: 50px 0;
    text-align: center;
}

.open-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(0,0,0,.8);
    transition: all .5s;
}
.open-video__block{
    width: 800px;
    height: 450px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    margin: auto;
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0;
}
.yt-close{
    position: absolute;
    right: -30px;
    top: -30px;
    cursor: pointer;
    transition: all .2s;
}
.yt-close:hover{
    transform: scale(1.2)
}

.icon-s-shtukaturka{
    right: 70px;
    top: 12px;
}

.icon-t-shtukaturka{
    right: 70px;
    top: 87px
}

.icon-o-shtukaturka{
    right: 70px;
    bottom: 107px;
}

.icon-d-shtukaturka{
    right: 70px;
    bottom: 32px;
}

.calc__white-bg-product{
    line-height: 3px;
}
.calc__table-price-product{
    line-height: 3px;
}
.calc__table-right-product{
    background: #fff;
}
.input-block__icon-product{
    padding-top: 5px;
}
.inform-calc-product{
    top: 135px;
}
.inform-calc__icon-product{
    padding-top: 5px;
}



.palitra{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: rgba(0,0,0,.8);
    transition: all .5s;
}
.palitra__block{
    width: 560px;
    height: 335px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    margin: auto;
    top: 0; 
    left: 0; 
    bottom: 0; 
    right: 0;
    text-align: center;
}

.palitra__block-title{
    font-size: 22px;
    font-weight: bold;
    text-align: initial;
    margin: 40px 0 10px 59px;
}

.palitra__block p {
    line-height: 20px;
    font-size: 12px;
    width: 440px;
    margin: 20px auto;
    color: #292929;
    text-align: initial;
    opacity: .6;
}

.palitra__block-close{
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.palitra-button__img{
    position: absolute; 
    right: 25px; 
    top: 12px;
    padding-bottom: 2px;
}

.palitra-button__button{
    width: 72px;
    height: 40px;
    background-color: #c50e2d;
    border-radius: 3px;
    transition: all .5s;
    text-align: center;
    position: absolute;
    right: 50px;
    top: 162px;
    border: 0;
    cursor: pointer;
    transition: all .5s;
}

.palitra-button__button:hover{
    background-color: #ad0e27;
}

.big-text{
    line-height: 23px;
}

.big-text p{
    margin-bottom: 20px;
}

.h3-big-text{
    color: #000;
    font-size: 22px;
    font-weight: bold;
    margin: 70px 0 20px 0;
}

.big-text-ul{
    padding-left: 20px;
}

.table_sub{
    font-size: 13px;
    margin-top: 30px;
    opacity: .4;
}

.table.tab-table__wrap td, table.tab-table__wrap th{
    white-space: pre-line;
}

.tab-table__wrap a {
text-decoration: none;
}

.tab-table__wrap a:hover {
text-decoration: underline;
}

.tab-table__link_a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 130px;
}

.tab-table__img{
    width: 100px !important;
}

/* Стили таблицы (IKSWEB) */
table.table__podsistema_price{text-decoration: none;border-collapse:collapse;width:100%;text-align:center;}
table.table__podsistema_price th{font-weight:normal;font-size:14px; color:#000000;background-color:#ffffff;}
table.table__podsistema_price td{font-size:13px;color:#000000;}
table.table__podsistema_price td,table.table__podsistema_price th{white-space:pre-wrap;padding:10px 5px;line-height:20px;vertical-align: middle;border: 1px solid #c9c9c9;}
table.table__podsistema_price tr:hover{background-color:#f9fafb}
table.table__podsistema_price tr:hover td{color:#000000;cursor:pointer;}
table.table__podsistema_price th{font-weight: bold;}
table.table__podsistema_price img{width: 100px;}
table.table__podsistema_price .table__podsistema_price-img{padding: 2px}

.list__detailed-switch{
    display: flex;
}
.switch-podsistema{
    position: static;
    max-height: 52px;
    color: rgba(0,0,0, .6);
}
.switch-podsistema-keramo{
    position: static;
    max-height: 52px;
    color: rgba(0,0,0, .6);
}
.switch-tab-podsistema-keramo{
    position: static;
    max-height: 52px;
    color: rgba(0,0,0, .6);
}
.switch-podsistema-metall{
    position: static;
    max-height: 52px;
    color: rgba(0,0,0, .6);
}
.switch-tab-podsistema-metall{
    position: static;
    max-height: 52px;
    color: rgba(0,0,0, .6);
}
.switch-btn-podsistema{
    display: inline-block;
    width: 48px;
    height: 24px;
    border-radius: 19px;
    background: #ed3130;
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}
.switch-btn-podsistema::after{
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 17px;
    background: #fff;
    top: 3px;
    left: 3px;
    transition-duration: 300ms;
    position: absolute;
    z-index: 1;
}
.switch-btn-podsistema-keramo{
    display: inline-block;
    width: 48px;
    height: 24px;
    border-radius: 19px;
    background: #ed3130;
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}
.switch-btn-podsistema-keramo::after{
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 17px;
    background: #fff;
    top: 3px;
    left: 3px;
    transition-duration: 300ms;
    position: absolute;
    z-index: 1;
}
.switch-tab-btn-podsistema-keramo{
    display: inline-block;
    width: 48px;
    height: 24px;
    border-radius: 19px;
    background: #ed3130;
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}
.switch-tab-btn-podsistema-keramo::after{
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 17px;
    background: #fff;
    top: 3px;
    left: 3px;
    transition-duration: 300ms;
    position: absolute;
    z-index: 1;
}

.switch-btn-podsistema-metall{
    display: inline-block;
    width: 48px;
    height: 24px;
    border-radius: 19px;
    background: #ed3130;
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}
.switch-btn-podsistema-metall::after{
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 17px;
    background: #fff;
    top: 3px;
    left: 3px;
    transition-duration: 300ms;
    position: absolute;
    z-index: 1;
}
.switch-tab-btn-podsistema-metall{
    display: inline-block;
    width: 48px;
    height: 24px;
    border-radius: 19px;
    background: #ed3130;
    z-index: 0;
    margin: 0 5px 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
}
.switch-tab-btn-podsistema-metall::after{
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 17px;
    background: #fff;
    top: 3px;
    left: 3px;
    transition-duration: 300ms;
    position: absolute;
    z-index: 1;
}
.switch-on-pods{
    background: #118c4e;
}
.switch-on-pods::after{
    left: 27px;
}
.podsistema-off{
    display: none;
}

.uzly_block-off{
    display: none;
}

.glowing_link{
    text-decoration: underline;
    color: #7777c5;
}

.glowing_link:hover{
    color: #f8005a;
}

.tbody__podsistema img {
    width: 100px;
    height: auto;
}

.header_keramo_pods{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.notification-podsistema{
    position: absolute;
    opacity: 0;
    display: flex;
    right: 25px;
    top: -68px;
    background: #fff;
    padding: 13px;
    border-radius: 10px;
    align-items: center;
    -webkit-box-shadow: 0px 0px 28px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 28px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 28px 0px rgba(34, 60, 80, 0.2);
    transition: all .6s;
}


.arrow-down {
    margin-left: 10px;
}
.arrow-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 5px solid #337AB7;
    border-right: 5px solid #337AB7;
    transform: rotate(45deg);
    animation: arrow-down 2s infinite;
}
.arrow-down span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow-down span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes arrow-down {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-5px,-5px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(5px,5px);
    }
}

.tab-table__wrap-margin{
    margin-bottom: 60px;
}

.slider-back{
    opacity: .2;
    cursor: pointer;
    position: absolute;
    top: 575px;
    left: -11px;
}

.slider-next{
    opacity: .2;
    cursor: pointer;
    position: absolute;
    top: 575px;
    right: 40px;
}

.slider-next:hover, .slider-back:hover{
    opacity: .4;
}

.scale-img{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    transition: all .5s;
}
.scale-img__block{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
.scale-img__block img{
    max-width: 800px;
    border-radius: 5px;
}
.scale-img__active{
    display: block;
    animation: fadeIn .3s;
}
@keyframes fadeIn {
    from{opacity: 0;},
    to{opacity: 1;},
}
.scale-img__close{
    position: absolute;
    top: -30px;
    right: -30px;
    cursor: pointer;
    transition: all .3s;
}
.scale-img__close:hover{
    transform: scale(1.2);
}
.image-preview{
    cursor: pointer;
}

.stati{
    width: 1095px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 400px;
}
.stati__elem{
    display: block;
    width: 350px;
    line-height: 20px;
    border-radius: 20px;
    transition: .2s all;
    margin: 0 15px 15px 0;
    height: 410px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 7%);
}
.stati__elem:hover{
    -webkit-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 28%);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 28%);
}
.stati__block{
    padding: 20px;
}
.stati__img{
    width: 100%;
    border-radius: 20px;
}
.stati__title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 10px;
}


.stati__desc{
    opacity: .7;
}
.stati__desc span{
    color: #e4373a;
    border-bottom: 1px dotted;
    margin-bottom: 10px;
}
.stati__desc span:hover{
    color: #ff0004;
}

.h1-statja{
    padding-left: 133px;
}

.breadcrumbs-statja{
    padding-left: 133px;
}

.statja{
    margin: 30px auto 200px auto;
    width: 900px;
    text-align: center;
}
.statja p{
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 30px;
    opacity: .8;
    text-align: justify;
}
.statja ul{
    padding-left: 30px;
}
.statja li{
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 30px;
    opacity: .8;
    text-align: justify;
}

.statja__img{
    margin-right: 25px;
    border-radius: 10px;
}

.statja__img-right{
    margin-left: 25px;
    border-radius: 10px;
}

.btnStati{
    position: absolute;
    top: 14px;
    right: 95px;
    border-radius: 5px;
    background-color: #c50e2d;
    line-height: 40px;
    padding: 0 20px;
    color: #fff;
    font-size: 13px;
    transition: all .3s;
}

.btnStati:hover{
    background-color: #bd0f2c;
}

#fasadImg_glav{
    opacity: 1; 
    z-index: 9;
}

.stati{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 400px;
    position: relative;
    display: flex;
}
.stati__wrap{
    display: flex;
}
.border-top{
    width: 2560px;
    height: 1px;
    background: #000;
    opacity: .1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.stati__nav{
    width: 275px;
    height: 650px;
}
.stati__nav li{
    width: 260px;
    height: 50px;
    border-radius: 5px;
    padding: 0 0 0 10px;
    line-height: 50px;
    cursor: pointer;
    position: relative;
    margin: 2px 0 2px 0;
}
.stati__nav li:hover{
    background: rgb(240, 240, 240);
}
.stati__nav li img{
    width: 8px;
    position: absolute;
    right: 10px;
    top: 22px;
    opacity: .5;
}
.stati__content{
    width: 895px;
    border-left: 1px solid rgba(0, 0, 0, .1);
}
.stati__content-title{
    width: 100%;
    height: 20px;
    font-size: 23px;
    font-weight: bold;
    color: #000;
    padding-left: 25px;
    margin-bottom: 40px;
    line-height: 20px;
    margin-top: 28px;
}
.stati__content-cards{
    display: flex;
    flex-wrap: wrap;
    padding-left: 25px;
}
.stati__elem{
    width: 400px;
    height: 400px;
    padding: 16px;
}
.stati__block{
    padding: 0;
    margin-bottom: 20px;
}
.stati__img{
    width: 370px;
}
.stati__date{
    opacity: .3;
}
.stati{
    margin-bottom: 150px;
}
.stati__nav-active{
    background: rgb(240, 240, 240);
}
.stati__content-elem{
    display: none;
}
.stati__content-elem-active{
    display: block;
}
.stati__form-wrapper{
    position: absolute;
    background: #f1f1f1;
    width: 770px;
    border-radius: 5px;
    padding-bottom: 20px;
    margin-top: 60px;
    bottom: 40px;
    right: 82px;
    z-index: 100;
}
.stati__title-notHeader{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-scroll-top{
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: red;
    opacity: 0;
    visibility: hidden;
    transition: 1s all;
    cursor: pointer;
    text-align: center;
    padding-top: 4px;
}
.btn-scroll-top-turn{
    opacity: 1;
    visibility: visible;
}

.sliderBeforeAfter {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 1000px;
    margin: 0 auto 40px auto;
}

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

.sliderBeforeAfter_before {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 2;
    width: 50%;
    height: 100%;
}

.sliderBeforeAfter_change {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 10;
    width: 3px;
    height: 100%;
    background-color: #c50e2d;
}

.sliderBeforeAfter_change::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    background: #c50e2d url(img/arrow-before-after.png) center center no-repeat;
    cursor: pointer;
}
.sliderBeforeAfter_text{
    width: 1000px;
    margin: 0 auto 150px auto;
    justify-content: justify;
    line-height: 23px;
}
.sliderBeforeAfter_text p{
    margin-bottom: 20px;
}

.short-desc-proekt h2{
    font-weight: bold;
    font-size: 21px;
}

.short-desc-proekt ul{
    line-height: 25px;
    margin: 30px 0 30px 15px;
}

.hidden-calc-wrapper{
    display: flex;
    position: absolute; 
    width: auto; 
    left: 582px; 
    top: 67px;
}

.catalog-product__h2{
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 50px;
}

.button-circle{
    border: 1px solid #aa9fa0;
    margin: 0 0 10px 10px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    width: 64px;
    height: 64px;
}

.button-circle img{
    width: 51px;
    margin: 6px 5px 5px 5px;
}

.button-circle-active{
    font-weight: bold;
    border: 2px solid #c50e2d;
}

.button-square{
    border: 1px solid #aa9fa0;
    margin: 0 0 10px 10px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    width: 64px;
    height: 64px;
}

.button-square img{
    width: 51px;
    margin: 6px 5px 5px 5px;
}

.button-square-active{
    font-weight: bold;
    border: 2px solid #c50e2d;
}

.perforacija_variants{
    border: 1px solid #aa9fa0;
    padding: 20px 0;
    margin: 0 0 10px 10px;
    width: 86px;
    height: 47px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.button-offset{
    border: 1px solid #aa9fa0;
    padding: 20px 0;
    margin: 0 0 10px 10px;
    width: 86px;
    height: 47px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.button-konstruktor-active{
    font-weight: bold;
    border: 2px solid #c50e2d;
}

.button-konstruktor-active img{
    margin: 5px;
}

.button-konstruktor-active .perforacija_variants{
    height: 46px;
}

.button-konstruktor-active .perforacija_variants{
    height: 46px;
}

.material_ventfasad{
    display: flex;
    flex-wrap: wrap;
    width: 1050px;
    margin: 0 auto 25px auto;
}
.material_ventfasad-block{
    width: 240px;
    height: 185px;
    text-align: center;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 5px;
    transition: .5s all;
    margin-right: 22px;
}
.material_ventfasad-block:hover{
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.material_ventfasad-block img{
    max-width: 200px;
    max-height: 135px;
    padding-top: 10px;
}

.block_preview{
    margin-bottom: 100px;
}
.block_preview__elem{
    display: flex;
    margin-bottom: 60px;
}
.block_preview__elem-img img{
    width: 230px;
}
.block_preview__elem-descriprion{
    position: relative;
    padding-left: 30px;
    line-height: 20px;
}
.block_preview__elem-h3{
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: #3a3a3a;
    margin: 10px 0 25px 0;
}
.block_preview__elem-subtitle{
    font-size: 15px;
    color: #727272;
}
.block_preview__elem-button{
    width: 260px;
    padding: 15px 0;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    /* background: #c50e2d; */
    margin-bottom: 10px;
    border-radius: 5px;
    color: #3a3a3a;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
    position: absolute;
    bottom: 10px;
}
.block_preview__elem:hover .block_preview__elem-button{
    background: #c50e2d;
    color: #fff;
}
.block_preview-mt30{
    margin-top: 30px;
}

.statja_block{
    display: flex;
    margin-bottom: 50px;
}
.statja_block th{
    width: 400px;
}
.statja_block .tab-table__wrap:first-child {
    margin: 20px 0 60px;
}
.p-rel {
    position: relative;
}
.baseSolution_print {
    position: absolute;
    width: 50px !important;
    top: 20px;
    left: 77px;
    transform: rotate(-30deg);
}

.metallokassety_print {
    position: absolute;
    width: 50px !important;
    left: 77px;
    top: -100px;
    transform: rotate(-30deg);
}
.metallokassety-sizes__img{

}
.metallokassety-sizes {
    width: 1000px;
    position: relative;
}
.metallokassety-range[type=range] {
    -webkit-appearance: none;
    margin: 18px 0;
    width: 100%;
}
.metallokassety-range[type=range]:focus {
    outline: none;
}
.metallokassety-range[type=range]::-webkit-slider-runnable-track {
    background: #c50e2d;
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    background: #3071a9;
}
.metallokassety-range[type=range]::-webkit-slider-thumb {
    border: 1px solid #c50e2d;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #ffffff;
    cursor: grab;
    -webkit-appearance: none;
    margin-top: -10px;
}
.metallokassety-range[type=range]::-webkit-slider-runnable-track {
    background: #c50e2d;
}
.metallokassety-range[type=range]::-moz-range-track {
    background: #c50e2d;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    background: #3071a9;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}
.metallokassety-range[type=range]::-moz-range-thumb {
    border: 1px solid #000000;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #ffffff;
    cursor: grab;
}
.metallokassety-range[type=range]::-ms-track {
    background: #c50e2d;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}
.metallokassety-range[type=range]::-ms-fill-lower {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
}
.metallokassety-range[type=range]::-ms-fill-upper {
    background: #c50e2d;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
}
.metallokassety-range[type=range]::-ms-thumb {
    border: 1px solid #000000;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #ffffff;
    cursor: grab;
}
.metallokassety-range[type=range]::-ms-fill-lower {
    background: #c50e2d;
}
.metallokassety-range[type=range]::-ms-fill-upper {
    background: #c50e2d;
}
.metallokassety-rangeX[type=range] {
    width: 300px;
}
.metallokassety-rangeY[type=range] {
    width: 300px;
}
.range-block {
    width: 100%;
    position: relative;
}
.range-position {
    position: absolute;
    font-weight: 600;
    font-size: 11px;
    opacity: .6;
}
.range-marker {
    position: absolute;
    width: 1px;
    height: 9px;
    background-color: #000;
}
.text-hidden {
    height: 0;
    visibility: hidden;
}
.text-unhide {
    height: 100%;
    visibility: visible;
}
.btn-unhide {
    text-decoration: underline;
    color: #c50e2d;
    cursor: pointer;
}

.metallokassety-tolshina {
    display: none;
}
.metallokassety-tolshina-active {
    display: block;
}

.proektirovanie-info{
    display: flex;
    margin-top: 35px;
}
.proektirovanie-info__block {
    flex: 1;
    border-radius: 5px;
    border: 1px solid #d32d2a;
    padding: 15px 5px;
    text-align: center;
    margin-right: 15px;
}
.proektirovanie-info__block:last-child {
    margin-right: 0;
}
.proektirovanie-info__block > a:hover {
    text-decoration: underline;
}
.proektirovanie-info__center {
    display: block;
    font-weight: bold;
    color: #d32d2a;
    font-size: 20px;
    margin: 8px 0;
}
.proektirovanie-info__explanation{
    font-size: 13px;
    opacity: .6;
}
.proektirovanie-ul{
    margin-left: 20px;
    position: relative;
}
.proektirovanie-ul > li {
    margin-bottom: 20px;
    list-style-type: disc; 
    color: black;
}
.proektirovanie-ul > li > span {
    text-decoration: underline;
}
.proektirovanie__pdf {
    margin-top: 30px;
}
.proektirovanie__pdf > a {
    display: flex; 
    align-items: center; 
    margin: 15px 0;
}
.proektirovanie__pdf > a:hover {
    text-decoration: underline;
}
.proektirovanie__pdf > a > img {
    margin-right: 10px;
}
.similar {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    margin-top: 100px;
    padding: 33px 0;
}
.similar__block {
    display: flex;
    width: 100%;
    height: 300px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
}
.similar__elem {
    position: relative;
    width: 25%;
    border-right: 1px solid #ebebeb;
    padding: 20px 20px;
}
.similar__elem > img {
    display: block;
    max-width: 240px;
    max-height: 140px;
    margin: 0 auto;
}
.similar__title {
    position: absolute;
    font-size: 13px;
    top: 180px;
    line-height: 20px;
}
.similar__price {
    position: absolute;
    width: 241px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 50px;
}
.similar__price > span {
    font-size: 18px;
    font-weight: 700;
}
.similar__elem:last-child {
    border: 0
}
.similar__availability {
    position: absolute;
    font-size: 13px;
    bottom: 20px;
}
.similar__circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #000;
}
.similar__circle::before {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 2px;
    background: #000;
    top: 23px;
    left: 11px;
}
.similar__circle::after {
    content: "";
    display: block;
    position: absolute;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    background: #000;
}
.similar__cartImg {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: 1px solid #bdbdbd;
    border-radius: 50%;
    padding: 9px;
    transition: .5s all;
}
.similar__elem:hover .similar__cartImg {
    border: 1px solid #000;
}
.similar__cartImg > img {
    width: 32px;
    opacity: .8;
    transition: .5s all;
}
.similar__elem:hover .similar__cartImg img {
    opacity: 1;
}

.oformit_zakaz{
    width: 100%;
    padding: 15px 0;
    background: #c50e2d;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}
.oformit_zakaz:hover{
    background: #ad0e27;
}
.oformit_zakaz__subtitle{
    font-size: 12px;
    color: #292929;
    opacity: .6;
}

.button-material {
    border: 1px solid #aa9fa0;
    padding: 20px 0;
    margin: 0 0 10px 10px;
    width: 108px;
    border-radius: 5px;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
}

.button-materia:first-child {
    margin: 0 0 10px 5px;
}

.button-material-active {
    font-weight: bold;
    border: 2px solid #c50e2d;
    padding: 19px 0;
}

.alum_pods-d-none {
    display: none !important;
}

.cink_pods-d-none {
    display: none !important;
}

.catalog-product__right-tag {
    margin-bottom: 0 !important;
}
.catalog-product__right-tag li{
    margin-right: -5px !important;
}
.tag-metall {
    width: 90px;
    text-align: center;
    margin: 0 5px 0 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-right: 1px solid #c7c7c7 !important;
    line-height: 35px !important;
    background: #ebebeb !important;
    border-radius: 0px !important;;
    color: #000 !important;
    cursor: pointer;
}
.tag-metall-active {
    background: #f9f9f9 !important;
}
.metallokassety-tolshina__wrapper {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 0 7px 7px 7px;
}
.metallokassety-tolshina__wrapper p {
    font-size: 14px;
}
.metallokassety-tolshina__wrapper p:first-child {
    margin-top: 0 !important;
}
.metallokassety-tolshina__wrapper p:last-child {
    margin-bottom: 0 !important;
}

/* Изменения*/

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 48px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 32%;
    padding: 10px;
    cursor: pointer;
}
.card:hover {
    -webkit-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
    box-shadow: -3px 3px 15px -2px rgba(0, 0, 0, 0.28);
}
.card img {
    width: 40%;
    height: 180px;
    object-fit: cover;
}
.card-content {
    text-align: center;
}
.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}
.card-button {
    display: block;
    padding: 22px 0px;
    width: 100%;
    background-color: #EEEFF1;
    color: #3F4349;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 15px;
}
.card-button:hover {
    background-color: #3F4349;
    color:  #EEEFF1;
}

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

.card_into_wrapper {
    display: flex;
    gap: 15px;
}

.card-desc {
    font-weight: 300;
    line-height: 20px;
    margin-top: 20px;
}

.footer_logo {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.footer_logo img {
    width: 175px;
}

.footer_logo p {
    font-size: 10.3px;
    font-weight: 300;
    opacity: .5;
    width: 190px;
    margin-top: 10px;
}

.date__delivery .catalog-product__availability {
    font-size: 13px;
    line-height: 21px;
    color: #40404070;
}

.date__delivery {
    display: block;
}

.date__delivery span{
    line-height: 21px;
    color: #40404070;
    font-size: 13px;
}

.new-video {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
    margin-bottom: 70px;
}

.new-video__all{
    position: absolute;
    font-size: 13px;
    top: -60px;
    right: 0;
}

.new-video__all a {
color: #404040;
transition: .3s all;
border-bottom: 1px solid #404040;
}

.new-video__elem {
    width: 374.5px;
    height: 325px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 0px 21px -9px rgba(34, 60, 80, 0.3);
    border-radius: 7px;
    margin-bottom: 9px;
    margin-right: 9px;
}

.new-video__footer {
    line-height: 20px;
    padding: 12px 20px;
}

.new-video__name {
    margin: 10px 0;
}

.new-video__name a{
    transition: .3s all;
    font-weight: 600;
    text-transform: uppercase;
}

.new-video__date {
    color: #aeaeae;
    font-size: 13px;
}