body{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #181818;
    text-align: left;
}
.container{
    display: block;
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}
.grid{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.image{
    max-width: 100%;
    max-height: 100%;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.logo .image{
    width: 100%;
}
.logo__text, .logo__triangle{
    fill: #454243;
}
.logo__pyramid, .logo__line{
    fill: #fbd728;
}
.title{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'DIN Pro Cond', sans-serif;
}
.title_mb50{
    margin-bottom: 50px;
}
.title_decorate{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.title_decorate::before {
    content: "";
    width: 100%;
    max-width: 155px;
    height: 1px;
    background: rgba(137,137,137,1);
    background: -webkit-linear-gradient(left, rgba(137,137,137,0) 0%, rgba(137,137,137,1) 100%);
    background: linear-gradient(to right, rgba(137,137,137,0) 0%, rgba(137,137,137,1) 100%);
    margin-right: 35px;
}
.title_decorate::after {
    content: "";
    width: 100%;
    max-width: 155px;
    height: 1px;
    background: rgba(137,137,137,1);
    background: -webkit-linear-gradient(left, rgba(137,137,137,1) 0%, rgba(137,137,137,0) 100%);
    background: linear-gradient(to right, rgba(137,137,137,1) 0%, rgba(137,137,137,0) 100%);
    margin-left: 35px;
}
.subtitle{
    text-align: center;
    font-family: DINPro, sans-serif;
    margin-bottom: 50px;
}
.subtitle_medium{
    font-weight: 500;
}
.btn{
    display: inline-block;
    font-size: 20px;
    text-align: center;
    font-family: 'DIN Pro Cond', sans-serif;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.025em;
    border: 1px solid #000;
    background-color: #000;
    padding: 14px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.btn::before{
    content: "";
    display: block;
    width: calc(100% - 24px);
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 12px;
    box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.3);
    z-index: -1;
}
.btn:hover{
    background-color: #fff;
    color: #000;
}
.btn_yellow{
    display: inline-flex;
    background-color: #f6d500;
    border: 1px solid #f6d500;
    color: #000;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 22px;
}
.btn_yellow:hover{
    border: 1px solid #f6d500;
    background-color: transparent;
    color: #f6d500;
}
.btn_white{
    display: inline-flex;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 22px;
}
.btn_white .btn__icon .image{
    fill: #ffffff;
}
.btn_white:hover{
    background-color: #ffffff;
    color: #000000;
}
.btn_white:hover .btn__icon .image{
    fill: #000000;
}
.btn_fixed{
    position: fixed;
    bottom: 0;
    left: calc((100% - 1140px) / 2);
    z-index: 20;
}
.btn__icon{
    flex-shrink: 0;
    margin-right: 18px;
    height: 32px;
}
.btn__icon .image{
    height: 100%;
    fill: #000;
    transition: all 0.3s ease;
}
.btn_yellow:hover .btn__icon .image{
    fill: #f6d500;
}
.mobile{
    display: none;
}
.arrow{
    height: 100%;
    width: 2px;
    background: rgba(33,33,33,1);
    background: -webkit-linear-gradient(top, rgba(33,33,33,0) 0%, rgba(33,33,33,1) 100%);
    background: linear-gradient(to bottom, rgba(33,33,33,0) 0%, rgba(33,33,33,1) 100%);
    position: relative;
}
.arrow::after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 4px 0 4px;
    border-color: #1a1a1a transparent transparent transparent;
    z-index: 3;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
/*slider*/
.slider{
    position: relative;
    padding: 0 48px;
}
.slider__content{
    margin: -23px 0;
}
.slider__item{
    padding: 23px;
}
.slider__arrows{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.slider__arrow{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: calc((100% - 135px) / 2);
    left: 0;
    width: 36px;
    transform: translateY(-50%);
}
.slider__arrow_next{
    left: auto;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}
.slider__arrow::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 10px 6px 0;
    border-color: transparent #181818 transparent transparent;
    transition: all 0.3s ease;
}
.slider__arrow:hover::before{
    border-color: transparent #f6d500 transparent transparent;
}
.slider__arrow::after{
    content: "";
    width: 26px;
    height: 4px;
    background-color: #181818;
    transition: all 0.3s ease;
}
.slider__arrow:hover::after{
    background-color: #f6d500;
}
.slider__pagination:not(:first-child) {
    margin-top: 40px;
}

.slider__pagination .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: -4px;
}

.slider__pagination .slick-dots li {
    padding: 4px;
}

.slider__pagination .slick-dots li button {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #d6d6d6;
    border: none;
    padding: 0;
    -webkit-box-shadow: inset 0 0 0 0 #f6d500;
    -moz-box-shadow: inset 0 0 0 0 #f6d500;
    box-shadow: inset 0 0 0 0 #f6d500;
}

.slider__pagination .slick-dots li.slick-active button {
    -webkit-box-shadow: inset 0 0 0 8px #f6d500;
    -moz-box-shadow: inset 0 0 0 8px #f6d500;
    box-shadow: inset 0 0 0 8px #f6d500;
    cursor: default;
}

.slider__pagination .slick-dots li:not(.slick-active) button:hover {
    -webkit-box-shadow: inset 0 0 0 2px #f6d500;
    -moz-box-shadow: inset 0 0 0 2px #f6d500;
    box-shadow: inset 0 0 0 2px #f6d500;
}
/**/
.header__btn{
    display: none;
}
.menu__list{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 -10px;
}
.menu__item{
    padding: 0 10px;
    transition: all 0.3s ease;
}
.menu__item_submenu{
    position: relative;
}
.menu__link{
    display: block;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px 0;
    text-shadow: transparent 0 0 0, transparent 0 0 0;
}
.menu__link:hover{
    color: #181818;
    text-shadow: #181818 0.03em 0 0, #181818 -0.03em 0 0;
}
.submenu{
    width: 0;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    background-color: #fff;
    overflow: hidden;
    transition: opacity 0.3s ease;
    height: 0;
    opacity: 0;
    z-index: 10;
    box-shadow: 0 3px 5px #999999;
    -moz-box-shadow: 0 3px 5px #999999;
    -webkit-box-shadow: 0 3px 5px #999999;
}
.submenu__link + .submenu{
    left: 100%;
    top: 0;
}
.menu__item_submenu:hover > .submenu{
    opacity: 1;
    width: 250px;
    height: auto;
    overflow: visible;
}
.menu__item_submenu:hover > .submenu_scroll{
    height: 350px;
    overflow: auto;
}
.submenu__list{
    height: 100%;
    /*overflow: auto;*/
}
.menu__item_submenu > .submenu__link{
    position: relative;
}
.menu__item_submenu > .submenu__link::before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #f6d500;
    border-right: 2px solid #f6d500;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
}
.submenu__link {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    color: #969696;
    border-top: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: transparent 0 0 0, transparent 0 0 0;
    border-top: 1px solid #969696;
}
.submenu__link:hover{
    color: #181818;
    text-shadow: #181818 0.03em 0 0, #181818 -0.03em 0 0;
}
.link{
    display: inline-block;
    font-weight: 700;
    text-decoration: underline solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.link_phone{
    font-family: 'DIN Pro Cond', sans-serif;
}
.link_blue{
    color: #2682b9;
}
.link:hover{
    text-decoration: underline solid #181818;
}
.link_blue:hover{
    text-decoration: underline solid #2682b9;
}
.lines{
    display: block;
    background: url("../img/lines.png") no-repeat center;
    background-size: cover;
    position: absolute;
    z-index: -1;
}
/*header*/
.header{
    height: 100px;
}
.header__sticky{
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}
.header__sticky_shadow{
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.13);
}
.header_active .header__sticky_shadow{
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0);
}
.header__content{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header__content::after, .table__row::after{
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background: rgba(150,150,150,1);
    background: -webkit-linear-gradient(left, rgba(150,150,150,0) 0%, rgba(150,150,150,0.8) 20%, rgba(150,150,150,1) 50%, rgba(150,150,150,0.8) 80%, rgba(150,150,150,0) 100%);
    background: linear-gradient(to right, rgba(150,150,150,0) 0%, rgba(150,150,150,0.8) 20%, rgba(150,150,150,1) 50%, rgba(150,150,150,0.8) 80%, rgba(150,150,150,0) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}
.header__content::after{
    opacity: 0;
    transition: all 0.3s ease;
}
.header_active .header__content::after{
    opacity: 0.2;
}
.table__head .table__row::after{
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background: rgba(24,24,24,1);
    background: -webkit-linear-gradient(left, rgba(24,24,24,0) 0%, rgba(24,24,24,0.8) 20%, rgba(24,24,24,1) 50%, rgba(24,24,24,0.8) 80%, rgba(150,150,150,0) 100%);
    background: linear-gradient(to right, rgba(24,24,24,0) 0%, rgba(24,24,24,0.8) 20%, rgba(24,24,24,1) 50%, rgba(24,24,24,0.8) 80%, rgba(150,150,150,0) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}
.header .logo{
    width: 86px;
    flex-shrink: 0;
    padding: 11px 0 5px;
}
.header .menu{
    width: 100%;
    margin: 0 55px;
    align-self: center;
    position: relative;
}
.header .menu__link{
    padding: 35px 10px 45px;
    font-size: 16px;
    color: #969696;
    border-top: 4px solid transparent;
}
.header .menu__item{
    padding: 0;
}
.header .menu__item_submenu:hover .menu__link,
.header .menu__link:hover{
    color: #181818;
    border-top: 4px solid #f6d500;
}
.header_active .menu__link{
    padding: 18px 0 29px;
}
.header__links{
    /*padding: 15px 0 8px;*/
    text-align: right;
    flex-shrink: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.header__links .link_phone{
    font-size: 20px;
    letter-spacing: 0.025em;
    margin-bottom: 15px;
}
.header_active .header__links .link_phone{
    margin-bottom: 0;
}
.header__links .link_mail{
    font-size: 15px;
    letter-spacing: -0.035em;
}
/*intro*/
.intro{
    padding: 40px 0;
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
    background-color: #fdfaf7;
    color: #fff;
    max-height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro::before {
    content: '';
    background-image: -moz-linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    background-image: -ms-linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.intro__video{
    width: 100vw;
    height: 56.25vw;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.intro__image{
    width: 100%;
    height: 56.25vw;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.intro__image_mobile{
    display: none;
}
.intro__iframe {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.intro__content{
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 575px;
}
.intro__content_column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
}

/*new intro*/
.intro_light{
    background-color: #FFFFFF;
    color: #000000;
}
.intro_light::before{
    content: none;
}
.intro__photo{
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    object-fit: cover;
    object-position: left bottom;
}
.intro__photo_mobile {
    display: none;
}
.picture__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left bottom;
}
.info__tel {
    color: #67AD5B;
    transition: all 0.3s ease;
    text-decoration: underline solid transparent;
    cursor: pointer;
}
.info__tel:hover {
    text-decoration: underline solid #67AD5B;
}
.text{
    font-size: 18px;
    line-height: 1.22;
}
.intro__wrapper{
    overflow: hidden;
}
.cards{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: -12px;
}
.cards__item{
    counter-increment: number 1;
    padding: 12px;
    max-width: 380px;
}
.card{
    position: relative;
    padding-left: 60px;
    z-index: 2;
}
.card__title{
    font-family: 'DIN Pro Cond', sans-serif;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 30px;
}
.card__title::after{
    content: counter(number);
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'DIN Pro Cond', sans-serif;
    font-size: 24px;
    line-height: 1.25;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text_size{
    font-size: 16px;
}
/*technique*/
.intro__title_indent{
    padding: 37px 103px 0 103px;
}
.technique {
    padding-top: 40px;
}
.technique__gallery{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100vw;
    height: 48.199vw;
    margin-top: 32px;
}
.gallery__item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.technique__item{
    width: 41vw;
    height: 50%;
    overflow: hidden;
}
.technique__item_3{
    width: 25vw;
    height: 33.333%;
}
.technique__item_4{
    width: 17vw;
    height: 20%;
}
.technique__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.technique__image:hover{
    transform: scale(1.2);
}
@keyframes callshake {
    0% {
        transform: rotate(0deg);
    }

    2.2% {
        transform: scale(1.1) rotateZ(-30deg);
    }

    2.4% {
        transform: rotateZ(15deg);
    }

    2.6% {
        transform: rotateZ(-10deg);
    }

    2.8% {
        transform: rotateZ(7.5deg);
    }

    3% {
        transform: rotateZ(-6deg);
    }

    3.2% {
        transform: rotateZ(5deg);
    }

    3.4% {
        transform: rotateZ(-4.28571deg);
    }

    3.6% {
        transform: rotateZ(3.75deg);
    }

    4% {
        transform: scale(1)rotateZ(-3.33333deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
.shake{
    animation: callshake 30s linear infinite;
}
.intro .logo{
    display: none;
}
.intro__title{
    font-family: 'DIN Pro Cond', sans-serif;
    margin-bottom: 40px;
    font-size: 50px;
    font-weight: 700;
}
.intro__title_limited{
    max-width: 680px;
    margin-bottom: 20px;
}
.intro__title:last-child{
    margin-bottom: 0;
}
.intro__subtitle{
    font-family: DINPro, sans-serif;
    margin-bottom: 0;
    font-size: 24px;
}
.intro__subtitle_indent{
    margin-bottom: 40px;
}
.intro__price{
    font-family: DINPro, sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-top: 30px;
}
.intro__price_yellow{
    color: #f6d500;
}
.intro__price_big{
    font-size: 36px;
}
.intro__info{
    margin-bottom: 56px;
}
.intro .link{
    font-family: DINPro, sans-serif;
    font-size: 22px;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-decoration: none;
    margin-top: 100px;
}
.intro .btn_white:not(:first-child) {
    margin-left: 15px;
}
.intro .btn_yellow,
.intro .btn_white {
    margin-top: 100px;
}
.intro .link-scroll{
    cursor: pointer;
    transition: all 0.3s ease;
}
.intro .link-scroll:hover{
    color: #f6d500;
}
.intro .link__icon{
    flex-shrink: 0;
    width: 26px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro .link__icon .image{
    fill: #fff;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}
.intro .link-scroll:hover .link__icon .image{
    fill: #f6d500;
}
.intro .link__text{
    position: relative;
}
.intro .link__text::before{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
}
.intro .link-scroll:hover .link__text::before{
    background-color: #f6d500;
}
.intro_small{
    height: auto;
    padding: 45px 0 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.intro_small .intro__content{
    max-width: 440px;
}
.intro_small .intro__title{
    margin-bottom: 20px;
    font-size: 42px;
}
.intro_small .intro__subtitle{
    font-size: 20px;
}
.intro_small .intro__price, .intro.intro_small .link{
    margin-top: 35px;
}

.intro.intro_low{
    height: 29.6875vw;
    min-height: 0;
    max-height: 100%;
}
.intro.intro_low::before{
    background: rgba(0, 0, 0, 0.25);
}
.intro.intro_low .intro__content{
    margin: 0 auto;
}
.intro.intro_low .intro__image{
    height: 100%;
}
/*info*/
.info{
    padding: 40px 0 60px;
}
.info__intro{
    color: #969696;
    line-height: 1.667;
    margin-bottom: 30px;
}
.info .grid{
    margin: -10px;
    justify-content: space-between;
}
.info .grid__item{
    padding: 10px;
    width: 50%;
    max-width: 485px;
}
.info__wrapper{
    padding: 27px 0 0 22px;
    height: 100%;
    position: relative;
}
.info__decoration{
    position: absolute;
    left: 0;
    top: 0;
    width: 68px;
    height: 68px;
    background-color: #fff;
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}
.info__decoration .image{
    fill: #cbcbcb;
    position: relative;
    z-index: 2;
}
.info .grid__item:first-child .info__decoration .image,
.info__decoration .image_color{
    fill: #4caf50;
}
.info .grid__item:last-child .info__decoration .image {
    fill: #f6d500;
}
.info__block{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background-color: #fff;
    padding: 30px 25px 0;
    height: 100%;
    position: relative;
}
.info__block::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.15);
    z-index: -1;
}
.info__block_mobile{
    display: none;
}
.info__title{
    font-size: 30px;
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 22px;
}
.info__title_regular{
    font-size: 24px;
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 10px;
}
.info__title_color{
    color: #444243;
}
.info__content{
    margin-bottom: 50px;
}
.info__content_indent{
    margin-bottom: 20px;
}
.info__item{
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.info__item:last-child{
    margin-bottom: 0;
}
.info__text{
    transition: all 0.3s ease;
    text-decoration: underline solid transparent;
}
.info__item:hover .info__text{
    text-decoration: underline solid #181818;
}
.info__icon{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info__icon .image{
    width: 100%;
    fill: #969696;
    transition: all 0.3s ease;
}
.info__item:hover .info__icon .image{
    fill: #181818;
}
.info__contacts{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
}
.info__subtitle{
    font-size: 22px;
    font-family: 'DIN Pro Cond', sans-serif;
    color: rgba(24, 24, 24, 0.7);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    margin-right: 12px;
}
.info__link{
    width: 355px;
}
.info .link{
    font-size: 20px;
    font-family: Arial, sans-serif;
    padding-bottom: 14px;
    border-bottom: 5px solid #f6d500;
}
/*price*/
.price{
    padding: 100px 0 75px;
    overflow: hidden;
    text-align: right;
    background-image: -moz-linear-gradient( -90deg, rgba(255,255,255,0) 0%, rgb(245,245,245) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgba(255,255,255,0) 0%, rgb(245,245,245) 100%);
    background-image: -ms-linear-gradient( -90deg, rgba(255,255,255,0) 0%, rgb(245,245,245) 100%);
}
.thanks + .price{
    padding-top: 0;
}
.table, .table__head, .table__body{
    display: block;
}
.table__body{
    overflow: hidden;
}
.table__row{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -15px;
    position: relative;
    transition: all 0.3s ease;
}
.table__head .table__row::after{
    opacity: 1;
}
.table__body .table__row:last-child::after{
    content: none;
}
.table__body .table__row:hover{
    background-color: rgba(150,150,150,0.1);
}
.table__cell{
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}
.table__head .table__cell{
    padding: 20px 15px;
    color: #969696;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'DIN Pro Cond', sans-serif;
}
.table__cell:nth-child(3){
    width: 20%;
}
.table__cell:nth-child(2){
    width: 17%;
    text-align: center;
}
.table__cell:nth-child(1){
    width: 63%;
    text-align: left;
}
.table__body .table__cell:nth-child(1){
    font-weight: 400;
}
.table_information .table__cell:nth-child(1){
    width: 215px;
}
.table_information .table__body .table__cell:nth-child(1){
    font-weight: 700;
}
.table_information .table__cell:nth-child(2){
    width: calc(100% - 345px);
}
.table_information .table__body .table__cell:nth-child(2){
    font-weight: 400;
    text-align: left;
}
.table_information .table__cell:nth-child(3){
    width: 130px;
}
.table__text_mobile{
    display: none;
}
.table + .btn{
    margin-top: 25px;
    width: 298px;
}
/*thanks*/
.thanks{
    padding: 0 0 80px;
    background-image: -moz-linear-gradient( -90deg, rgb(245,245,245) 0%, rgba(255,255,255,0) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(245,245,245) 0%, rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(245,245,245) 0%, rgba(255,255,255,0) 100%);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.thanks_static {
    background-image: none;
}
.thanks__header{
    width: 100%;
    max-width: 762px;
    margin: 0 auto -78px;
    padding: 65px 110px 119px;
    background: url("../img/title_back.png") no-repeat center;
    background-size: contain;
}
.thanks__header .subtitle{
    margin-bottom: 0;
}

.thanks__grid .grid {
    margin: -23px;
    justify-content: flex-start;
}

.thanks__grid .grid__item {
    padding: 23px;
    width: 20%;
}

.thanks__link{
    display: block;
    border: 6px solid #181818;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}
.thanks__link:not(:last-child) {
    margin-bottom: 45px;
}
.thanks__link::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 15px 23px 0 rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 81.2%;
    z-index: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}
.thanks__link:hover{
    transform: scale(1.05);
}
.thanks__link:hover::before{
    transform: scale(0.95);
}
.thanks__image{
    width: 100%;
    position: relative;
    z-index: 2;
}
.thanks__partner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 80px;
    height: 1px;
}
.thanks__logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.thanks__name{
    text-align: center;
    line-height: 1.333;
    color: #616161;
}
/*awards*/
.awards{
    position: relative;
    z-index: 1;
}
.information + .awards{
    padding-top: 80px;
}
.expert + .awards{
    padding-bottom: 80px;
}
.awards::before{
    content: "";
    background: url('../img/back_image.png') no-repeat right center;
    background-size: 735px 603px;
    width: calc((100vw - 465px) / 2);
    max-width: 735px;
    height: 603px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-25%);
    opacity: 0.15;
}
.awards .subtitle{
    margin-bottom: 70px;
}
.awards__wrapper{
    overflow: hidden;
}
.awards .grid{
    margin: -20px -12px;
}
.awards .grid__item{
    padding: 20px 12px;
    width: 33.333%;
    position: relative;
    overflow: hidden;
}
.awards_horizontal::before{
    transform: translateY(5%);
}
.awards_horizontal .title{
    margin-bottom: 64px;
}
.awards_horizontal .awards__link{
    margin-bottom: 0;
    width: 390px;
    flex-shrink: 0;
    height: auto;
    padding: 20px;
}
.awards_horizontal .awards__info{
    padding: 20px;
    width: calc(100% - 390px);
}
.awards_horizontal .awards__title{
    width: auto;
    height: auto;
    justify-content: flex-start;
}
.awards_horizontal .awards__text {
    max-width: 100%;
}
.awards_horizontal .awards__title::before, .awards_horizontal .awards__title::after {
    max-width: 112px;
}
.awards__description{
    margin-top: 40px;
}
.awards_horizontal .grid{
    margin: -12px;
}
.awards_horizontal .grid__item{
    width: 100%;
    padding: 12px;
}
.awards_horizontal .awards__item{
    flex-direction: row;
    margin: -20px;
    height: auto;
}
.awards_horizontal .grid__item:nth-child(2n) .awards__item {
    flex-direction: row-reverse;
}
.awards__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.awards__title{
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 42px;
    width: 100%;
}
.awards__text{
    max-width: 145px;
    flex-shrink: 0;
    margin: 0 15px;
}
.awards__title::before{
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(137,137,137,1);
    background: -webkit-linear-gradient(left, rgba(137,137,137,0) 0%, rgba(137,137,137,1) 100%);
    background: linear-gradient(to right, rgba(137,137,137,0) 0%, rgba(137,137,137,1) 100%);
}
.awards__title::after{
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(137,137,137,1);
    background: -webkit-linear-gradient(left, rgba(137,137,137,1) 0%, rgba(137,137,137,0) 100%);
    background: linear-gradient(to right, rgba(137,137,137,1) 0%, rgba(137,137,137,0) 100%);
}
.awards__link{
    cursor: pointer;
    height: 170px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.awards__link .image{
    transition: all 0.3s ease;
    transform: scale(1);
}
.awards__link:hover .image{
    transform: scale(1.05);
}
.awards .arrow{
    margin-left: auto;
    height: 105px;
}
.awards .slider{
    padding: 0;
}
.awards .slider__arrows{
    display: none;
}
/*portfolio*/
.portfolio{
    text-align: center;
    padding: 60px 0 40px;
}
.portfolio.portfolio_static,
.consultation.consultation_static {
    padding: 0 0 70px;
}
.portfolio .container_large,
.consultation .container_large,
.publications.publications_slider .container_large {
    max-width: 1296px;
}
.portfolio .title{
    margin-bottom: 42px;
}
.portfolio .slider,
.consultation .slider {
    padding: 0 72px;
}
.publications_slider .slider {
    padding: 0 64px;
}
.portfolio .slider__content {
    margin: 0 -12px;
}
.publications_slider .slider__content {
    margin: 0 -20px;
}
.portfolio .slick-track,
.publications_slider .slick-track {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.portfolio .slider__item {
    padding: 12px;
    float: none;
    height: auto;
}
.publications_slider .slider__item {
    padding: 20px;
    float: none;
    height: auto;
}
.portfolio .slider__arrow,
.publications_slider .slider__arrow {
    top: 50%;
}
.portfolio__grid .grid {
    margin: -12px;
    justify-content: flex-start;
}
.portfolio__grid .grid__item {
    padding: 12px;
    width: 33.333%;
}
.portfolio__block{
    background-color: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
    text-align: left;
    height: 100%;
}
.portfolio__block_link {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}
.portfolio__block_link:hover {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.30);
}
.portfolio__photo{
    position: relative;
    width: 100%;
    cursor: pointer;
}
.portfolio__image{
    width: 100%;
    padding-bottom: 55%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.portfolio__image .image{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.portfolio__photo::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: -moz-linear-gradient( 90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    opacity: 1;
    transition: all 0.3s ease;
}
.portfolio__block_link:hover .portfolio__photo::before,
.portfolio__photo:hover::before{
    opacity: 0;
}
.portfolio__content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: all 0.3s ease;
    z-index: 3;
}
.portfolio__name{
    font-family: 'DIN Pro Cond', sans-serif;
    max-width: 170px;
}
.portfolio__name:not(:last-child) {
    margin-bottom: 5px;
}
.portfolio__block_link:hover .portfolio__name,
.portfolio__photo:hover .portfolio__name{
    color: #f6d500;
}
.portfolio__date{
    font-size: 12px;
}
.portfolio__info{
    padding: 20px 0;
}
.portfolio__list{
    border-left: 3px solid #f6d500;
    padding: 0 18px;
}
.portfolio__item{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 18px;
}
.portfolio__item:last-child{
    margin-bottom: 0;
}
.portfolio__title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #969696;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 17px;
    flex-shrink: 0;
    width: 73px;
    margin-right: 5px;
}
.portfolio__icon{
    flex-shrink: 0;
    width: 18px;
    height: 21px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio__icon .image{
    width: 100%;
    fill: #969696;
}
.portfolio__text{
    font-size: 14px;
    transform: translateY(4px);
}
.portfolio .btn,
.thanks .btn,
.btn_bottom {
    margin-top: 45px;
}
/*expert*/
.expert{
    padding: 45px 0 105px;
    overflow: hidden;
    text-align: right;
}
.expert .title{
    margin-bottom: 38px;
}
.expert__video{
    position: relative;
    height: 100%;
}
.expert_about .title{
    margin-bottom: 15px;
}
.expert__subtitle {
    text-align: left;
    margin-bottom: 40px;
}
.video{
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.video__preview{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.video__iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.video__sound {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
    width: 50px;
    height: 50px;
}
.video__sound .image {
    fill: #f6d500;
}
.expert__video .lines{
    width: 298px;
    height: 420px;
    top: -5px;
    right: 0;
    transform: translateX(30%);
    opacity: 0.2;
}
.expert .grid{
    margin: -20px;
}
.expert .grid__item{
    padding: 20px;
}
.expert .grid__item:first-child{
    width: 56%;
}
.expert .grid__item:last-child{
    width: 44%;
}
.expert__header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 50px;
}
.expert__number{
    flex-shrink: 0;
    margin-left: 50px;
}
.expert__info .title, .expert__info .subtitle{
    text-align: left;
}
.expert .btn{
    margin-top: 45px;
}
/*news*/
.news__item{
    background-color: #fff;
    box-shadow: 0 15px 60px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 157px;
    margin-bottom: 33px;
    text-align: left;
}
.news__item:last-child{
    margin-bottom: 0;
}
.news__item:hover{
    box-shadow: 0 15px 60px 0 rgba(0, 0, 0, 0.5);
}
.news__photo{
    width: 40%;
}
.news__image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.news__info{
    padding: 15px 20px 0;
    border-bottom: 15px solid #fff;
    width: 60%;
    overflow: hidden;
}
.news__title{
    font-family: 'DIN Pro Cond', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}
.news__description{
    line-height: 1.667;
}
/*contacts*/
.contacts{
    padding: 25px 0 75px;
    height: calc(100vh - 65px);
    max-height: 658px;
    position: relative;
    background-color: #fdfaf7;
    overflow: hidden;
}
.contacts__content{
    position: relative;
    z-index: 3;
}
.contacts__video{
    width: 100%;
    max-width: 1495px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 2;
}
.contacts__image{
    width: 100%;
    max-width: 1495px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 1;
}
.contacts.title{
    margin-bottom: 35px;
}
.contacts__text{
    text-align: center;
    font-family: 'DIN Pro Cond', sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.contacts__phone{
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline solid transparent;
}
.contacts__phone:hover{
    text-decoration: underline solid #000;
}
.contacts__label{
    display: none;
}
/*footer*/
.footer{
    overflow: hidden;
    background-color: #eaebeb;
}
.footer__content{
    padding: 25px 0 5px;
    position: relative;
}
.footer .menu{
    margin-bottom: 20px;
}
.footer .menu__link{
    letter-spacing: -0.01em;
}
.footer .grid{
    justify-content: flex-start;
    margin: -25px;
}
.footer .grid__item{
    padding: 25px;
    width: calc((100% - 220px) / 3);
}
.footer .grid__item:last-child{
    width: 220px;
}
.footer__list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer__link{
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 0.025em;
    text-shadow: transparent 0 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.footer__link:last-child{
    margin-bottom: 0;
}
.footer__link:hover{
    text-shadow: #181818 0.03em 0 0, #181818 -0.03em 0 0;
}
.footer .link_phone{
    font-size: 24px;
    letter-spacing: 0.025em;
    margin-bottom: 15px;
}
.footer .link_mail{
    margin-bottom: 35px;
}
.footer__address{
    margin: auto 0 0;
    font-size: 17px;
    line-height: 2.12;
    letter-spacing: -0.05em;
}
.footer__address_bold{
    font-weight: 700;
}
.rights{
    text-align: center;
    font-size: 16px;
    color: #969696;
    padding: 40px 0;
    white-space: pre-wrap;
}
.footer .social{
    margin-bottom: 15px;
}
/**/
.social__list{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -5px;
}
.social__item{
    width: 33.333%;
    padding: 5px;
}
.social__link{
    display: flex;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}
.social__link:hover .social__icon{
    width: 80%;
}
.social__icon{
    fill: #181818;
    width: 90%;
    transition: all 0.3s ease;
}
/**/
.popup{
    position: fixed;
    height: 100%;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.78);
    left: 0;
    top: 0;
    z-index: 1000;
    display: none;
}
.popup__item{
    overflow: hidden;
    width: calc(100vw - 60px);
    max-height: calc(100vh - 60px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1px;
}
.popup__item:not(.popup__item_without-background) {
    background-color: #fff;
}
.popup__item_thanks{
    max-width: 800px;
}
.popup__item_image{
    width: auto;
    max-width: calc(100vw - 60px);
}
.popup__close{
    position: absolute;
    top: 20px;
    right: 30px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    border: none;
    background-color: transparent;
}
.popup__close::before, .popup__close::after{
    content: "";
    display: block;
    width: 141%;
    height: 2px;
    border-radius: 2px;
    background-color: #181818;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}
.popup__close::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.popup__close::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.popup__close:hover::before, .popup__close:hover::after{
    background-color: #f6d500;
}
.popup__content{
    overflow: auto;
    padding: 60px;
    position: relative;
    z-index: 1;
}
.popup__item_thanks .grid{
    margin: -23px;
    height: 100%;
}
.popup__item_thanks .grid__item{
    width: 33.333%;
    padding: 23px;
}
.popup__item_image .popup__content{
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.popup__image{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup__item_slider{
    max-width: 1200px;
    height: calc(100vh - 60px);
    max-height: 700px;
}
.popup__item_slider .popup__content{
    overflow: hidden;
}
.popup .slider__content{
    margin: 0;
}
.popup .slider__item{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    float: none;
    height: auto;
}
.popup .slider__arrow{
    top: 50%;
    width: 36px;
    height: 36px;
}
.popup .slider{
    padding: 0 36px;
    position: relative;
}
.popup .slider__arrow::after{
    content: none;
}
.popup .slider__arrow::before{
    border: none;
    border-right: 4px solid #f6d500;
    border-bottom: 4px solid #f6d500;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
.popup .slick-track {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.popup .slider__item .image{
    display: block;
    margin: 0 auto;
    object-fit: contain;
}
.popup__slider, .popup .slider, .popup .slider__content, .popup .slick-list, .popup .slick-track{
    height: 100%;
}
/**/
.buttons{
    display: none;
}
/**/
.intro + .information{
    padding-top: 80px;
}
.information__item{
    margin-bottom: 35px;
}
.information__item:last-child{
    margin-bottom: 0;
}
.information .title{
    margin-bottom: 35px;
}
.information__text{
    margin-bottom: 20px;
}
.information__text:last-child{
    margin-bottom: 0;
}
.information__text_bold{
    font-weight: 700;
}
.information__text_italic{
    font-style: italic;
}
.information .table{
    margin-bottom: 40px;
}
.information .table:last-child{
    margin-bottom: 0;
}
.information .table__head .table__row{
    background: #f6d500;
    background: -webkit-linear-gradient(left, rgba(246,213,0,0.2) 0%, rgba(246,213,0,0.8) 20%, rgba(246,213,0,1) 50%, rgba(246,213,0,0.8) 80%, rgba(246,213,0,0.2) 100%);
    background: linear-gradient(to right, rgba(246,213,0,0.2) 0%, rgba(246,213,0,0.8) 20%, rgba(246,213,0,1) 50%, rgba(246,213,0,0.8) 80%, rgba(246,213,0,0.2) 100%);
}
.information .table__head .table__cell{
    color: #000;
}
.information .table__row{
    margin: 0;
}
.information .table__body .table__row{
    transition: all 0.3s ease;
    background: rgba(150,150,150,1);
    background: -webkit-linear-gradient(left, rgba(150,150,150,0.05) 0%, rgba(150,150,150,0.1) 20%, rgba(150,150,150,0.2) 50%, rgba(150,150,150,0.1) 80%, rgba(150,150,150,0.05) 100%);
    background: linear-gradient(to right, rgba(150,150,150,0.05) 0%, rgba(150,150,150,0.1) 20%, rgba(150,150,150,0.2) 50%, rgba(150,150,150,0.1) 80%, rgba(150,150,150,0.05) 100%);
}
.information .table__body .table__row:hover{
    background: rgba(150,150,150,1);
    background: -webkit-linear-gradient(left, rgba(150,150,150,0.025) 0%, rgba(150,150,150,0.05) 20%, rgba(150,150,150,0.1) 50%, rgba(150,150,150,0.05) 80%, rgba(150,150,150,0.025) 100%);
    background: linear-gradient(to right, rgba(150,150,150,0.025) 0%, rgba(150,150,150,0.05) 20%, rgba(150,150,150,0.1) 50%, rgba(150,150,150,0.05) 80%, rgba(150,150,150,0.025) 100%);
}
.information .table__body .table__row::after{
    background: #fff;
    width: 100%;
    opacity: 1;
}
.information__about{
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid #f6d500;
    text-align: center;
}
.information__about::before{
    content: '!';
    color: #181818;
    background-color: #f6d500;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
}
.information__about:last-child{
    margin-bottom: 0;
}
.information__about .link{
    transition: all 0.3s ease;
    text-decoration: underline solid #181818;
}
.information__about .link:hover{
    text-decoration: underline solid #f6d500;
}
.information .list{
    margin-bottom: 20px;
}
.information .list:last-child{
    margin-bottom: 0;
}
.information__btn{
    text-align: right;
    margin-bottom: 40px;
}
.information__btn:last-child{
    margin-bottom: 0;
}
.information__grid .grid{
    margin: -12px;
}
.information__grid .grid__item {
    padding: 12px;
    width: 50%;
}
.information__photo{
    width: 100%;
    max-width: 575px;
    margin: 0 auto;
    -webkit-box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.24);
    -moz-box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.24);
    box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.24);
}
.list{
    padding-left: 20px;
}
.list__item{
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.list__item::before{
    content: '';
    width: 8px;
    height: 8px;
    background-color: #181818;
    margin-right: 16px;
    flex-shrink: 0;
    position: relative;
    top: 5px;
    transition: all 0.5s ease;
}
.list__item:last-child{
    margin-bottom: 0;
}
.list__content_decoration{
    text-decoration: underline solid #181818;
}
.list__content .list{
    margin-top: 15px;
}
.list:hover .list__item:first-child::before{
    animation: list 0.3s linear 2 alternate;
}
.list:hover .list__item:nth-child(2)::before{
    animation: list 0.3s 0.3s linear 2 alternate;
}
.list:hover .list__item:nth-child(3)::before{
    animation: list 0.3s 0.6s linear 2 alternate;
}
.list:hover .list__item:nth-child(4)::before{
    animation: list 0.3s 0.9s linear 2 alternate;
}
.list:hover .list__item:nth-child(5)::before{
    animation: list 0.3s 1.2s linear 2 alternate;
}
.list:hover .list__item:nth-child(6)::before{
    animation: list 0.3s 1.5s linear 2 alternate;
}
.list:hover .list__item:nth-child(7)::before{
    animation: list 0.3s 1.8s linear 2 alternate;
}
.list:hover .list__item:nth-child(8)::before{
    animation: list 0.3s 2.1s linear 2 alternate;
}
.list:hover .list__item:nth-child(9)::before{
    animation: list 0.3s 2.4s linear 2 alternate;
}
.list:hover .list__item:nth-child(10)::before{
    animation: list 0.3s 2.7s linear 2 alternate;
}
@keyframes list {
    0%{
        transform: rotate(0deg) scale(1);
        background-color: #181818;
    }
    95%{
        transform: rotate(585deg) scale(1.9);
        background-color: #f6d500;
    }
    100%{
        transform: rotate(585deg) scale(2);
        background-color: #f6d500;
    }
}
/*playvideo*/
.playvideo{
    overflow: hidden;
    width: 66%;
    margin: 0 auto;
}
.playvideo:not(:last-child){
    margin-bottom: 20px;
}
.playvideo__container{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
}
.playvideo__preview{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    object-fit: cover;
}
.playvideo__play,
.consultation__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 68px;
    height: 48px;
    border-radius: 15px;
    border: none;
    padding: 0;
    background-color: #4b4b4b;
    transition: all 0.3s ease;
    cursor: pointer;
}
.playvideo__play:hover,
.consultation__play:hover {
    background-color: #ff0000;
}
.playvideo__play::after,
.consultation__play::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 19px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}
.playvideo__iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    display: none;
}
/*licenses*/
.licenses{
    padding: 60px 0 45px;
}
.licenses .title{
    margin-bottom: 60px;
}
.licenses__item:not(:last-child){
    margin-bottom: 35px;
}
.licenses__card{
    background-color: #fff;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 40px 40px 50px;
}
.licenses__card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: calc(100% - 80px);
    max-width: 330px;
    height: 4px;
    background-color: #f6d500;
}
.licenses__card .grid{
    margin: -25px;
}
.licenses__card .grid__item{
    padding: 25px;
}
.licenses__card .grid__item:first-child{
    width: calc(100% - 300px);
}
.licenses__card .grid__item:last-child{
    width: 300px;
}
.licenses__image{
    cursor: pointer;
}
.licenses__image .image{
    display: block;
    margin: 0 auto;
    -webkit-box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.24);
    -moz-box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.24);
    box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.24);
    transform: translateY(0);
    transition: all 0.3s ease;
}
.licenses__image:hover .image{
    transform: translateY(-2%);
}
.licenses__title{
    font-size: 28px;
    font-weight: 700;
    font-family: 'DIN Pro Cond', sans-serif;
    margin-bottom: 20px;
}
.licenses__description p:not(:last-child){
    margin-bottom: 15px;
}
.licenses__description ul:not(:last-child){
    margin-bottom: 15px;
}
.licenses__description ul li:not(:last-child){
    margin-bottom: 8px;
}
.licenses__description ul li{
    padding-left: 25px;
    position: relative;
}
.licenses__description ul li::before{
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #f6d500;
    position: absolute;
    left: 0;
    top: 6px;
}
.licenses .slider__arrows{
    display: none;
}
.licenses .slider{
    padding: 0;
}
/*images__grid*/
.images__grid{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.images__grid > .images__item:nth-child(6n + 1){
    width: 37.8125%;
}
.images__grid > .images__item:nth-child(6n + 2){
    width: 24.375%;
}
.images__grid > .images__item:nth-child(6n + 3){
    width: 37.8125%;
}
.images__grid > .images__item:nth-child(6n + 4){
    width: 29%;
}
.images__grid > .images__item:nth-child(6n + 5){
    width: 42%;
}
.images__grid > .images__item:nth-child(6n + 6){
    width: 29%;
}
.images__item{
    display: block;
    overflow: hidden;
    cursor: pointer;
}
.images__photo{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    transform: scale(1);
}
.images__item .images__item{
    height: 50%;
}
.images__item .image {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.images__item:hover > .images__photo{
    transform: scale(1.05);
    transition: all 0.75s ease;
}
/*communications*/
.communications{
    background: url("../img/contacts_back.jpg") no-repeat center top;
    background-size: cover;
    padding: 150px 0 240px;
}
.communications__content{
    max-width: 825px;
}
.communications__intro{
    text-align: center;
    margin-bottom: 45px;
    overflow: hidden;
}
.communications__intro .link{
    font-family: 'DIN Pro Cond', sans-serif;
    font-size: 48px;
    margin: 25px 0;
}
.communications__subtitle{
    max-width: 700px;
    margin: 0 auto;
}
.communications__table{
    margin-bottom: 70px;
    overflow: hidden;
}
.communications__table .grid{
    margin: 0 -85px;
}
.communications__table .grid__item{
    width: 50%;
    padding: 0 85px;
    position: relative;
}
.communications__table .grid__item:nth-child(2n + 1)::before{
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}
.communications__table .communications__cell{
    padding: 70px 0;
}
.communications__title{
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 30px;
}
.communications__table .link{
    margin-top: 35px;
    font-size: 21px;
}
.communications__contacts{
    overflow: hidden;
}
.communications__contacts .grid{
    margin: -44px -85px;
}
.communications__contacts .grid__item{
    padding: 44px 85px;
    width: 50%;
}
.communications__social{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.communications__social .social{
    width: 235px;
}
/*calculator*/
.calculator{
    background-color: #f5f5f5;
    padding-bottom: 65px;
}
.calculator .title{
    margin-bottom: 40px;
}
.calculator__thanks{
    font-size: 48px;
    text-align: center;
}
.calculator__text{
    font-size: 24px;
    margin-top: 50px;
    text-align: center;
}
.calculator__item{
    padding: 55px 20px;
}
.calculator__item > .grid{
    margin: -10px;
}
.calculator__item > .grid > .grid__item{
    padding: 10px;
}
.calculator__item > .grid > .grid__item:first-child{
    width: calc(100% - 459px);
}
.calculator__item > .grid > .grid__item:last-child{
    width: 459px;
}
.tabs__item{
    background-color: #fff;
}
.tabs__item:not(.active){
    display: none;
}
.tabs__buttons{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    counter-reset: tabs;
}
.tabs__btn{
    background-color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 14px 14px 0 0;
    font-weight: 700;
    box-shadow: 0 0 0 0 #ffff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.tabs__btn.active{
    box-shadow: 0 -10px 0 0 #ffff;
    cursor: default;
}
.tabs__btn:not(:last-child){
    margin-right: 5px;
}
.tabs__btn::before{
    content: counter(tabs);
    counter-increment: tabs;
    text-align: center;
    display: inline-block;
    width: 28px;
    border-radius: 50%;
    padding: 5px;
    line-height: 1;
    background-color: #d6d6d6;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.tabs__btn.active::before{
    background-color: #f6d500;
}
.form__title{
    font-size: 30px;
    text-align: center;
}
.form__subtitle{
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
}
.form__subtitle + .form__content{
    margin-top: 45px;
}
.form__title + .form__content{
    margin-top: 60px;
}
.form__content > .grid{
    margin: -12px -20px;
    justify-content: center;
}
.form__content > .grid > .grid__item{
    padding: 12px 20px;
    width: 50%;
    max-width: 375px;
}
.form__content > .grid > .grid__item_btn{
    max-width: 226px;
}
.form__item{
    position: relative;
}
.grid__item_btn .form__item{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}
.form__label{
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
}
.form__label:last-child{
    margin-bottom: 0;
    padding-top: 31px;
}
.form__input{
    display: block;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}
.error .form__input{
    border: 1px solid red;
}
select.form__input{
    background: url("../img/select.png") no-repeat calc(100% - 12px) center;
    background-size: 9px 5px;
}
.form__buttons{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 45px;
}
.form__buttons .btn{
    flex-shrink: 0;
}
.form .btn{
    min-width: 186px;
}
.form__description{
    margin-left: 35px;
    font-size: 16px;
    color: #919191;
}
.form__error{
    color: red;
    font-size: 14px;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    display: none;
}
.illustration{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 90px 55px 0;
    overflow: hidden;
    position: relative;
}
.illustration__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}
.illustration__image{
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
}
.illustration__image .image{
    display: block;
    width: 100%;
    max-height: none;
    transform: translateX(0);
    transition: all 0.3s 0.3s ease;
}
.illustration__item{
    display: none;
}
.illustration__item:not(.illustration__item_static) .illustration__image:hover .image{
    transform: translateX(-40px);
    transition: all 0.3s 0s ease;
}
.illustration__image::before{
    content: '';
    width: 1px;
    height: 500px;
    opacity: 0;
    background-color: #d6d6d6;
    position: absolute;
    bottom: calc(100% + 20px);
    left: -15px;
    transition: opacity 0.3s 0s linear;
    z-index: 2;
}
.illustration__image:hover::before{
    opacity: 1;
    transition: opacity 0.3s 0.3s linear;
}
.illustration__image::after{
    content: '';
    width: 7px;
    height: 7px;
    background-color: #d6d6d6;
    position: absolute;
    bottom: calc(100% + 20px);
    left: -18px;
    transition: opacity 0.3s 0s ease;
    z-index: 2;
    border-radius: 50%;
    opacity: 0;
}
.illustration__image:hover::after{
    opacity: 1;
    transition: opacity 0.3s 0.3s ease;
}
.illustration__item_full .illustration__image .image{
    transform: translateY(-45px);
}
.illustration__item_static .illustration__image::before,
.illustration__item_static .illustration__image::after{
    content: none;
}
.illustration__description{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}
.illustration__text{
    background-color: #fff;
    position: relative;
    z-index: 3;
    padding: 0 12px;
    color: #969696;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s 0.3s ease;
    max-width: calc(100% - 120px);
    text-align: center;
    white-space: nowrap;
}
.illustration__description_default{
    z-index: 1;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
}
.illustration__item:hover .illustration__text{
    opacity: 1;
    transition: opacity 0.3s ease;
}
.illustration__description_default .illustration__text{
    opacity: 1;
    max-width: 100%;
    padding: 0;
    animation: lineAnimate 3s ease infinite;
    color: #FF5722;
    font-weight: 700;
    font-size: 20px;
}
.illustration__list:hover + .illustration__description_default .illustration__text{
    opacity: 0;
}
.illustration__description::before{
    content: '';
    width: calc(100% - 41px);
    height: calc(100% + 10px);
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 41px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s 0.3s ease;
}
.illustration__item:hover .illustration__description::before{
    opacity: 1;
    transition: opacity 0s 0s ease;
}
.illustration__description::after{
    content: '';
    width: calc(50% - 40px);
    opacity: 0;
    position: absolute;
    height: 50%;
    border-bottom: 1px solid #d6d6d6;
    background-color: #ffffff;
    bottom: 50%;
    left: 40px;
    z-index: 1;
    transition: opacity 0.3s 0.3s linear;
}
.illustration__item:hover .illustration__description::after{
    opacity: 1;
    transition: opacity 0.3s 0s linear;
}
.illustration__description_default::before, .illustration__description_default::after{
    content: none;
}
.illustration__list:hover + .illustration__description_default::after {
    opacity: 0;
}
@keyframes lineAnimate {
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
/*publications*/
.publications {
    padding: 60px 0;
    text-align: center;
}
.publications.publications_slider {
    padding-top: 0;
    text-align: left;
}
.publications_slider .title {
    margin-bottom: 24px;
}
.publications_slider .publications__item {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.publications__grid{
    text-align: left;
    margin-bottom: 55px;
}
.publications__grid .grid{
    justify-content: flex-start;
    margin: -25px -20px;
}
.publications__grid .grid__item{
    padding: 25px 20px;
    width: 33.333%;
}
.publications__item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.15);
}
.publications__photo{
    width: 100%;
    padding-bottom: 58%;
    position: relative;
    overflow: hidden;
}
.publications__photo .image{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}
.publications__photo:hover .image{
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s ease;
}
.publications__info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 8px 10px 0;
    flex-grow: 2;
}
.publications__date{
    font-size: 13px;
    color: #969696;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: DINPro, sans-serif;
}
.publications__name{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'DIN Pro Cond', sans-serif;
    cursor: pointer;
    text-decoration: underline solid transparent;
    transition: all 0.3s ease;
}
.publications__name:hover{
    text-decoration: underline solid #000000;
}
.publications__description{
    font-size: 16px;
    margin-bottom: 15px;
    flex-grow: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.publications__link{
    align-self: flex-end;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 12px;
    font-family: 'DIN Pro Cond', sans-serif;
    text-decoration: underline solid rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-top: auto;
}
.publications__link:hover{
    text-decoration: underline solid rgba(0, 0, 0, 0);
}
.publications__link::before{
    content: '';
    width: calc(100% + 20px);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    background-color: #f6d500;
}
/*article*/
.article{

}
.article__intro{

}
.article__preview{
    position: relative;
    width: 100%;
    padding-bottom: 38%;
}
.article__preview::before{
    content: '';
    background-image: -moz-linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    background-image: -ms-linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.article__intro .image{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.article__container{
    padding: 40px 65px;
    max-width: 640px;
    z-index: 2;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.article__content{
    padding: 55px 0;
}
.article__title{
    font-size: 44px;
    font-weight: 700;
    font-family: 'DIN Pro Cond', sans-serif;
}
.article__date{
    font-size: 20px;
    margin-top: 20px;
}
.article__content ul{
    margin: 25px 0 25px 40px;
}
.article__content table ul{
    margin: 0;
    padding-left: 10px;
}
.article__content li{
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}
.article__content li::before{
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #f6d500;
    position: absolute;
    left: 0;
    top: 5px;
}
.article__content li:last-child{
    margin-bottom: 0;
}
.article__content img{
    display: block;
    width: 100%;
    margin: 40px 0;
}
.article__content h2,
.article__content h3{
    font-size: 28px;
    font-weight: 700;
    font-family: 'DIN Pro Cond', sans-serif;
    margin: 65px 0 25px;
}
.article__content h1 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'DIN Pro Cond', sans-serif;
    margin-bottom: 25px;
}
.article__content i{
    display: block;
    font-style: italic;
    text-align: right;
    margin-top: 20px;
}
.article__content p .link,
.article__content i .link,
.article__content li .link {
    display: inline;
}
.article__content em {
    font-style: italic;
}
/*article-table*/
.data {
    display: block;
    overflow: auto;
    border: 1px solid #000000;
}
.data:not(:first-child) {
    margin-top: 40px;
}
.data:not(:last-child) {
    margin-bottom: 40px;
}
.data__table {
    display: block;
}
.data__table_scrolled {
    min-width: 1135px;
}
.data__table tbody {
    display: block;
}
.data__head {
    display: block;
    border-bottom: 1px solid #000000;
}
.data__body {
    display: block;
}
.data__row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.data__row:not(:last-child) {
    border-bottom: 1px solid #000000;
}
.data__cell {
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    flex-shrink: 0;
}
.data__cell:not(:last-child) {
    border-right: 1px solid #000000;
}
.data__cell_center {
    text-align: center;
}
.data__cell_bold {
    font-weight: bold;
}
.data__cell_5 {
    width: 5%;
}
.data__cell_6 {
    width: 6%;
}
.data__cell_7 {
    width: 7%;
}
.data__cell_8 {
    width: 8%;
}
.data__cell_9 {
    width: 9%;
}
.data__cell_10 {
    width: 10%;
}
.data__cell_15 {
    width: 15%;
}
.data__cell_16 {
    width: 16%;
}
.data__cell_17 {
    width: 17%;
}
.data__cell_18 {
    width: 18%;
}
.data__cell_19 {
    width: 19%;
}
.data__cell_20 {
    width: 20%;
}
.data__cell_25 {
    width: 25%;
}
.data__cell_30 {
    width: 30%;
}
.data__cell_33 {
    width: 33.333%;
}
.data__cell_40 {
    width: 40%;
}
.data__cell_50 {
    width: 50%;
}
.data__cell_60 {
    width: 60%;
}
.data__cell_70 {
    width: 70%;
}
.data__cell_75 {
    width: 75%;
}
.data__cell_80 {
    width: 80%;
}
.data__cell_90 {
    width: 90%;
}
.data__cell_100 {
    width: 100%;
}
.data__cell hr {
    border: none;
    height: 1px;
    margin: 4px -4px;
    background-color: #000000;
}
.text-left.text-left{
    text-align: left;
}
.text-right.text-right{
    text-align: right;
}
.text-center.text-center{
    text-align: center;
}
.text-underline{
    text-decoration: underline;
}

/*consultation*/
.consultation {
    padding-top: 56px;
    text-align: center;
}
.consultation__grid .grid {
    margin: -16px;
}
.consultation__grid .grid__item {
    padding: 16px;
    width: 33.333%;
}
.consultation__grid .consultation__item {
    padding: 0;
}
.consultation .slick-slide > div {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.consultation .slick-slide > div > div {
    display: block !important;
    width: 100%;
}

.consultation .slider__content {
    margin: -16px;
}
.consultation .slider__item {
    padding: 0;
}
.consultation__item {
    height: 100%;
    padding: 16px;
}
.consultation__description {
    font-size: 20px;
    font-weight: 700;
    padding-top: 8px;
    text-align: left;
}
.consultation__video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
}

.consultation__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup__item_video {
    width: calc(100vw - 60px);
    max-width: 864px;
    max-height: calc(100vw - 60px);
}

.popup__item_without-background .popup__close {
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
}
.popup__item_without-background .popup__close::before,
.popup__item_without-background .popup__close::after {
    background-color: #ffffff;
    width: 24px;
}
.popup__item_without-background .popup__close:hover::before,
.popup__item_without-background .popup__close:hover::after {
    background-color: #f6d500;
    width: 28px;
}

.popup__video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
}
.popup__iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*object*/
.object {
    padding-top: 45px;
}

.object__container {
    overflow: hidden;
}
.object__container .grid {
    margin: -15px;
}
.object__container .grid__item {
    width: 50%;
    padding: 15px;
}
.object__slider {
    position: relative;
}
.object__slider .slider,
.object__slider .slider__item {
    padding: 0;
}
.object__slider .slider__content {
    margin: 0;
}
.object__slider .slider__arrow {
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}
.object__slider .slider__arrow:hover {
    background: rgba(255, 255, 255, 1);
}
.object__slider .slider__arrow_prev {
    left: 4px;
}
.object__slider .slider__arrow_next {
    right: 4px;
}
.object__slider .slider__arrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border: none;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(135deg);
    z-index: 2;
}
.object__slider .slider__arrow::after {
    content: none;
}
.object__address {
    font-size: 18px;
    line-height: 1.1666667;
    color: #969696;
    margin-bottom: 28px;
    text-align: center;
}
.object__table:not(:last-child) {
    margin-bottom: 25px;
}
.object__row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #F3F3F3;
}
.object__row_head {
    background-color: #F6D500;
}
.object__cell {
    width: 28%;
    padding: 18px 14px;
    font-size: 16px;
    line-height: 1.125;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}
.object__cell:first-child {
    width: 44%;
}
.object__cell:not(:first-child) {
    text-align: center;
}
.object__cell_bold {
    font-weight: 700;
}
.object__row_head .object__cell {
    padding: 10px 14px;
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
}
.object__title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1758;
}
.object__title:not(:last-child) {
    margin-bottom: 15px;
}
.object__description {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2777778;
}
/*slider_navigation*/
.slider_navigation.slider {
    padding: 12px 0 0;
}
.slider_navigation .slider__item {
    width: 126px;
    padding: 0;
}
.slider__dot {
    padding: 11px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.slider_navigation .slider__item.slick-current .slider__dot {
    border: 1px solid #f6d500;
    cursor: default;
}
.slider_navigation .slider__content {
    margin: 0;
}
/*breadcrumbs*/
.breadcrumbs__content {
    border-top: 1px solid #E4E4E4;
    padding: 15px 0;
    overflow: hidden;
}
.breadcrumbs__grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: -10px;
}
.breadcrumbs__item {
    padding: 10px;
    position: relative;
}
.breadcrumbs__item:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    right: 0;
    top: 50%;
    transform: translate(30%, -50%) rotate(-45deg);
}

.breadcrumbs__link {
    display: inline-block;
    text-decoration: underline solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.15;
}
.breadcrumbs__link_disabled {
    color: #969696;
    cursor: default;
}
.breadcrumbs__link:not(.breadcrumbs__link_disabled):hover {
    text-decoration: underline solid #181818;
}
/*filters*/
.filters:not(:last-child) {
    margin-bottom: 60px;
}
.filters .grid {
    justify-content: flex-start;
    margin: -10px;
}
.filters .grid__item {
    padding: 10px;
    width: 50%;
    max-width: 215px;
}
.select {
    position: relative;
    width: 100%;
}
.select__title {
    display: block;
    width: 100%;
    color: #969696;
    background-color: transparent;
    border: 1px solid #E4E4E4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    padding: 12px 38px 12px 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.select__title:hover {
    border: 1px solid #F6D500;
}
.select.active .select__title {
    border: 1px solid #F6D500;
    background-color: #F6D500;
    color: #000000;
}
.select__title::before {
    content: '';
    display: block;
    position: absolute;
    right: 19px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    transform: translate(50%, -75%) rotate(45deg) scale(1, 1);
    z-index: 2;
}
.select.active .select__title::before {
    transform: translate(50%, -25%) rotate(45deg) scale(-1, -1);
}
.select__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #ffffff;
    max-height: 176px;
    transform: scale(1, 0);
    transform-origin: center top;
    z-index: 5;
}
.select.active .select__dropdown {
    transform: scale(1, 1);
    overflow: auto;
}
.select__item {
    display: block;
}
.select__input {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.select__line {
    display: block;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 16px;
    line-height: 1;
}
.select__line:hover {
    background-color: rgba(246, 213, 0, 0.2);
}
.select__input:checked + .select__line {
    background-color: #F3F3F3;
}
/*usefulness*/
.usefulness {
    overflow: hidden;
    padding-bottom: 50px;
}
.usefulness .grid {
    margin: -15px;
}
.usefulness .grid__item {
    width: 50%;
    padding: 15px;
}
.usefulness__item {
    background-position: center;
    background-size: cover;
    width: 100%;
    padding-bottom: 45%;
    position: relative;
}
.usefulness__item::before {
    content: '';
    background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, rgba(22, 22, 22, 0.8) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.usefulness__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 64px 44px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
.usefulness__wrapper {
    max-width: 264px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.usefulness__text {
    margin-bottom: 20px;
}
.btn_invert {
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #F6D500;
    color: #f6d500;
}
.btn_invert:hover {
    background-color: #f6d500;
}
.btn_invert::before {
    content: none;
}

/*about*/
.about {
    padding-top: 56px;
}
.about__video {
    position: relative;
    width: 100%;
    padding-bottom: 56.3%;
    cursor: pointer;
}
.about__video .video {
    position: absolute;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .publications__grid .grid {
        margin: -20px -15px;
    }
    .publications__grid .grid__item{
        padding: 20px 15px;
    }
    .usefulness__content {
        padding: 60px 44px;
    }
    .publications_slider .slider__content {
        margin: 0 -12px;
    }

    .publications_slider .slider__item {
        padding: 12px;
        float: none;
        height: auto;
    }

}
@media (max-width: 1170px) {
    body{
        font-size: 16px;
    }
    .btn {
        font-size: 18px;
    }
    .btn_fixed{
        left: 15px;
    }
    .btn__icon{
        height: 28px;
    }
    .header .menu__link {
        padding: 37px 0 45px;
        font-size: 14px;
    }
    .header .menu {
        margin: 0 30px;
    }
    .menu__list {
        margin: 0 -10px;
    }
    .menu__item {
        padding: 0 10px;
    }
    .intro{
        max-height: calc(56.25vw - 100px);
    }
    .intro_light{
        height: auto;
        max-height: 100%;
    }
    .intro_small{
        max-height: none;
    }
    .intro__content {
        max-width: 480px;
    }
    .intro__content_column {
        max-width: 100%;
    }
    .cards{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .intro__title {
        margin-bottom: 20px;
        font-size: 40px;
    }
    .intro_low .intro__content{
        max-width: 450px;
    }
    .intro__subtitle {
        font-size: 20px;
    }
    .intro__price {
        font-size: 22px;
        margin-top: 15px;
    }
    .intro__price_big {
        font-size: 30px;
    }
    .intro .link {
        font-size: 20px;
        margin-top: 50px;
    }
    .intro .btn_yellow,
    .intro .btn_white {
        margin-top: 50px;
    }
    .table + .btn {
        width: 275px;
    }
    .slider__content{
        margin: -15px;
    }
    .slider__item {
        padding: 15px;
    }
    .slider .thanks__link {
        border: 4px solid #181818;
        margin-bottom: 40px;
    }
    .slider .thanks__link::before {
        box-shadow: 0 13px 15px 0 rgba(0, 0, 0, 0.8);
    }
    .slider__arrow {
        top: calc((100% - 120px) / 2);
    }
    .footer__address {
        font-size: 16px;
    }
    .footer__link {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .rights {
        font-size: 15px;
        padding: 30px 0;
    }
    .calculator__item > .grid > .grid__item:first-child {
        width: calc(100% - 429px);
    }
    .calculator__item > .grid > .grid__item:last-child {
        width: 429px;
    }
    .illustration {
        padding: 90px 40px 0;
    }
    .illustration__description::after {
        width: calc(50% - 25px);
        left: 25px;
    }
    .form__content > .grid {
        margin: -12px;
    }
    .form__content > .grid > .grid__item {
        padding: 12px;
    }
    .form__description {
        margin-left: 24px;
    }
    .article__intro .container{
        padding: 0;
    }
    .usefulness__wrapper {
        max-width: 240px;
    }
    .technique {
        padding-top: 28px;
    }
    .technique__gallery {
        flex-direction: row;
        height: auto;
        margin-top: 28px;
    }
    .technique__item{
        height: auto;
        max-height: 100%;
        width: 100%;
    }
    .technique__item:nth-child(10){
        display: none;
    }
    .technique__item_3,
    .technique__item_4{
        width: 50%;
        height: auto;
        max-height: 100%;
    }
}
@media (max-width: 1024px){
    .header {
        height: 75px;
    }
    .header__content {
        flex-wrap: wrap;
        padding: 5px 0 0;
    }
    .header .logo {
        width: 69px;
        order: 1;
        margin-right: auto;
        margin-left: 0;
        padding: 0;
    }
    .header .menu {
        width: 100%;
        margin: 0;
        order: 3;
    }
    .header .menu__link {
        padding: 5px 5px 10px;
        border-top: 2px solid transparent;
    }
    .header .menu__link:hover {
        border-top: 2px solid #f6d500;
    }
    .header__links {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        padding: 0;
    }
    .header__links .link_phone {
        font-size: 18px;
        margin-bottom: 0;
    }
    .intro {
        height: calc(100vh - 75px);
    }
    .intro_light{
        height: auto;
    }
    .intro_small{
        height: auto;
    }
    .intro_small .intro__price, .intro.intro_small .link {
        margin-top: 20px;
    }
    .intro__image, .intro__video {
        height: 100%;
        object-fit: cover;
    }
    .intro_small + .information {
        padding-top: 55px;
    }
    .info__block {
        padding: 25px 20px 0;
    }
    .info__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .info__content {
        margin-bottom: 25px;
    }
    .info__subtitle {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .info__title.info__title_regular{
        font-size: 18px;
        line-height: 1.167;
        margin-bottom: 8px;
    }
    .info .link {
        font-size: 16px;
    }
    .thanks {
        padding: 0 0 50px;
    }
    .thanks__grid .grid {
        margin: -12px;
    }
    .thanks__grid .grid__item {
        padding: 12px;
    }
    .awards .subtitle {
        margin-bottom: 40px;
    }
    .awards__text {
        max-width: 110px;
        margin: 0 10px;
    }
    .price {
        padding: 60px 0;
    }
    .portfolio .slider,
    .publications_slider .slider,
    .consultation .slider {
        padding: 0 48px;
    }
    .portfolio__info {
        padding: 15px 0;
    }
    .portfolio__list {
        padding: 0 12px;
    }
    .portfolio__item {
        margin-bottom: 12px;
    }
    .portfolio__title {
        font-size: 16px;
        width: 65px;
    }
    .portfolio__icon {
        width: 14px;
        height: 18px;
        margin-right: 8px;
    }
    .portfolio__text {
        transform: translateY(2px);
    }
    .portfolio .btn,
    .thanks .btn,
    .btn_bottom {
        margin-top: 35px;
    }
    .table__row {
        margin: 0 -10px;
    }
    .table__cell {
        padding: 10px;
    }
    .table__head .table__cell {
        padding: 15px 10px;
        font-size: 18px;
    }
    .table_information .table__cell:nth-child(1){
        width: 205px;
    }
    .table_information .table__cell:nth-child(2){
        width: calc(100% - 320px);
    }
    .table_information .table__cell:nth-child(3){
        width: 115px;
    }
    .expert {
        padding: 30px 0 50px;
    }
    .expert .grid {
        margin: -15px;
    }
    .expert .grid__item {
        padding: 15px;
    }
    .news__item {
        height: 115px;
        margin-bottom: 20px;
    }
    .news__info {
        padding: 10px;
        border-bottom: 10px solid #fff;
    }
    .news__title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .news__description {
        font-size: 14px;
    }
    .menu__list {
        margin: 0 -5px;
    }
    .menu__item {
        padding: 0 5px;
    }
    .footer .menu__link {
        font-size: 14px;
        letter-spacing: -0.03em;
        padding: 15px 0;
    }
    .footer .grid {
        margin: -10px;
    }
    .footer .grid__item {
        padding: 10px;
        width: calc((100% - 150px) * 0.3);
    }
    .footer .grid__item:nth-child(3) {
        width: calc((100% - 150px) * 0.4);
    }
    .footer .grid__item:last-child {
        width: 150px;
    }
    .footer__link {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .footer .link_phone {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .footer .link_mail {
        margin-bottom: 25px;
    }
    .footer__address {
        font-size: 15px;
    }
    .information__grid .grid {
        margin: -15px 0;
    }
    .information__grid .grid__item {
        width: 100%;
        padding: 15px 0;
    }
    .licenses__card .grid__item:last-child {
        width: 255px;
    }
    .licenses__card .grid__item:first-child {
        width: calc(100% - 255px);
    }
    .communications {
        padding: 80px 0 235px;
    }
    .communications__table .grid{
        margin: 0 -40px;
    }
    .communications__table .grid__item {
        padding: 0 40px;
    }
    .communications__table .communications__cell {
        padding: 45px 0;
    }
    .communications__contacts .grid {
        margin: -20px -40px;
    }
    .communications__contacts .grid__item {
        padding: 20px 40px;
        width: 50%;
    }
    .communications__social .social {
        width: 190px;
    }

    .form__content > .grid{
        margin: -10px;
    }
    .form__content > .grid > .grid__item {
        width: 100%;
        padding: 10px;
    }
    .grid__item  .form__content > .grid > .grid__item {
        max-width: 100%;
    }
    .form__label:last-child {
        padding-top: 10px;
    }
    .form__buttons{
        flex-wrap: wrap;
    }
    .calculator__item > .grid > .grid__item:first-child {
        width: calc(100% - 396px);
    }
    .calculator__item > .grid > .grid__item:last-child {
        width: 396px;
    }
    .illustration {
        justify-content: flex-start;
        padding: 90px 55px 0;
    }
    .form__error {
        font-size: 12px;
        top: calc(100% + 2px);
    }
    .form__label {
        margin-bottom: 8px;
        font-size: 14px;
    }
    .form__input {
        padding: 10px 15px;
        font-size: 14px;
    }
    .form__buttons {
        margin-top: 30px;
    }
    .form__description {
        margin-top: 15px;
        font-size: 12px;
        margin-left: 0;
        width: 100%;
    }
    .illustration__image::before {
        height: 300px;
        bottom: calc(100% + 15px);
    }
    .illustration__image::after{
        bottom: calc(100% + 10px);
    }
    .illustration__description::after {
        width: calc(50% - 40px);
        left: 40px;
    }
    .illustration__text{
        font-size: 14px;
    }
    .form__title {
        font-size: 24px;
    }
    .form__subtitle {
        font-size: 18px;
    }
    .calculator__thanks {
        font-size: 40px;
    }
    .calculator__text {
        font-size: 18px;
        margin-top: 25px;
    }
    .publications {
        padding: 40px 0;
    }
    .publications__grid .grid {
        margin: -15px -8px;
    }
    .publications__grid .grid__item{
        padding: 15px 8px;
    }
    .publications__date {
        margin-bottom: 8px;
    }
    .publications__name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .publications__description {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .publications__link {
        font-size: 14px;
        padding-bottom: 10px;
    }
    .publications__grid {
        margin-bottom: 45px;
    }
    .article__container {
        padding: 30px 50px;
        max-width: 470px;
    }
    .article__title {
        font-size: 32px;
    }
    .article__date {
        font-size: 16px;
        margin-top: 12px;
    }
    .article__content {
        padding: 40px 0;
    }
    .article__content ul {
        margin: 20px 0 20px 30px;
    }
    .article__content h2,
    .article__content h3 {
        font-size: 24px;
        margin: 40px 0 20px;
    }
    .article__content h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .article__content img {
        margin: 30px 0;
    }
    .usefulness__content {
        padding: 32px 44px;
    }
}
@media (max-width: 860px){
    .footer .link_mail {
        margin-bottom: 10px;
    }
    .footer .menu__list{
        flex-wrap: wrap;
        position: relative;
        justify-content: flex-start;
    }
    .footer .menu__item {
        width: 20%;
    }
    .footer .menu__link {
        padding: 8px 0;
    }
    .footer .menu__item:nth-child(2n)::after{
        content: "";
        width: 1px;
        height: calc(100% + 25px);
        position: absolute;
        top: -25px;
        background: rgba(234,234,234,1);
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }
    .footer .menu__item:last-child::after{
        content: none;
    }
    .footer .menu__item:nth-child(2)::after{
        left: 20%;
    }
    .footer .menu__item:nth-child(4)::after{
        left: 40%;
    }
    .footer .menu__item:nth-child(6)::after{
        left: 60%;
    }
    .footer .menu__item:nth-child(8)::after{
        left: 80%;
    }
    .footer .menu__item:nth-child(10)::after{
        content: none;
    }
}
@media (max-width: 768px){
    .title {
        font-size: 26px;
    }
    .header{
        height: 0 !important;
    }
    .header .header__sticky{
        position: fixed;
        overflow: visible;
        width: auto;
        height: auto;
        top: 10px;
        right: 0;
        left: auto;
        background-color: transparent;
        z-index: 100;
    }
    .header::before{
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        background-color: #000;
        transition: all 0.3s ease;
        opacity: 0;
        z-index: 5;
    }
    .header_open::before{
        width: 100vw;
        opacity: 0.8;
    }
    .header__wrapper{
        position: relative;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.8);
        padding: 10px;
    }
    .header_open .header__wrapper{
        background-color: transparent;
    }
    .header__btn{
        display: block;
        width: 23px;
        height: 23px;
        background-color: transparent;
        position: relative;
        z-index: 6;
    }
    .header__lines, .header__btn::before, .header__btn::after{
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 3px;
        background-color: #181818;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
    .header__btn::before{
        content: "";
        top: 20%;
    }
    .header__btn::after{
        content: "";
        top: 81%;
    }
    .header__lines{
        top: 50%;
    }
    .header_open .header__btn::before{
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        background-color: #f6d500;
    }
    .header_open .header__btn::after{
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        background-color: #f6d500;
    }
    .header_open .header__lines{
        transform: translate(-150%, -50%);
        opacity: 0;
        background-color: #f6d500;
    }
    .header__content{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 300px;
        height: 100vh;
        overflow: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 30px 20px 0;
        background: linear-gradient(to left,transparent 0%,#fc3 30px,#121212 30px);
        color: #fff;
        transition: all 0.3s ease;
        transform: translateX(-100%);
        z-index: 5;
    }
    .header_open .header__content{
        transform: translateX(0);
    }
    .header .menu{
        order: 2;
    }
    .header__content::after{
        content: none;
    }
    .header .menu__list{
        flex-direction: column;
    }
    .header .menu__link{
        border-top: none;
        text-align: left;
        padding: 12px 15px;
        position: relative;
        color: #fff;
        font-size: 16px;
    }
    .header .menu__link:hover {
        border-top: none;
        color: #f6d500;
    }
    .header .menu__link::after, .header__links .link_phone::after{
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right,#fff,rgba(255,255,255,.001));
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .header .menu__item_submenu:hover{
        background-color: transparent;
    }
    .submenu{
        display: none;
    }
    .header__links{
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        order: 3;
    }
    .header__links .link_mail{
        letter-spacing: 0;
    }
    .header .logo {
        width: 95px;
        margin: 0 15px 10px;
    }
    .header .logo__triangle{
        fill: #f6d500;
    }
    .header .logo__text, .header .logo__pyramid{
        fill: #fff;
    }
    .header__links{
        width: 100%;
        align-items: stretch;
    }
    .header__links .link{
        padding: 12px 15px;
        position: relative;
    }
    .header__links .link:hover {
        text-decoration: underline solid #fff;
    }
    .breadcrumbs__content {
        border-top: none;
        padding-right: 45px;
    }
    .breadcrumbs__link {
        font-size: 14px;
    }
    .portfolio__grid .grid__item {
        width: 50%;
    }
    .portfolio__grid_preview .grid__item:last-child {
        display: none;
    }
    .filters:not(:last-child) {
        margin-bottom: 40px;
    }
    .object {
        padding-top: 40px;
    }
    .object__container .grid {
        flex-direction: column-reverse;
    }
    .object__container .grid__item {
        width: 100%;
    }
    .object__content {
        padding-left: 0;
        padding-bottom: 20px;
    }
    .object__address {
        font-size: 20px;
    }
    .intro {
        min-height: 100vh;
    }
    .intro__content{
        max-width: 100%;
    }
    .intro .logo{
        display: block;
        width: 75px;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    .intro .logo__text {
        fill: #fff;
    }
    .intro .logo__pyramid {
        fill: #fff;
    }
    .intro .logo__triangle {
        fill: #f6d500;
    }
    .intro_small{
        min-height: 0;
        padding: 60px 0 40px;
    }
    .intro_small .intro__title {
        margin-bottom: 15px;
        font-size: 32px;
    }
    .intro_small .intro__subtitle {
        font-size: 16px;
    }
    .intro_small .intro__content {
        max-width: 350px;
    }
    .intro_small .intro__price, .intro.intro_small .link {
        margin-top: 15px;
    }
    .intro_small .intro__price {
        font-size: 16px;
    }
    .intro_small .intro__price_big {
        font-size: 25px;
    }
    .intro_small .link {
        font-size: 16px;
    }
    .intro_small .link__icon {
        width: 22px;
    }
    .price {
        padding: 45px 0 55px;
    }
    .price .grid {
        margin: -30px -10px;
    }
    .price .grid__item {
        padding: 30px 10px;
    }
    .info .grid{
        justify-content: center;
    }
    .info .grid__item {
        width: 100%;
    }
    .info__title {
        font-size: 22px;
    }
    .thanks {
        padding: 40px 0;
    }
    .thanks__header{
        background: none;
        max-width: 100%;
        margin: 0 auto 35px;
        padding: 0;
    }
    .slider__arrow {
        width: 30px;
    }
    .slider,
    .portfolio .slider,
    .publications_slider .slider,
    .consultation .slider {
        padding: 0 40px;
    }
    .expert .grid{
        margin: -10px;
    }
    .expert .grid__item {
        padding: 10px;
    }
    .footer__content {
        padding: 15px 0 5px;
    }
    .footer .grid{
        justify-content: center;
        margin: -15px -10px;
    }
    .footer .grid__item {
        padding: 15px 10px;
        width: 30%;
    }
    .footer .grid__item:nth-child(3){
        width: 40%;
    }
    .footer__contacts {
        align-items: flex-start;
        text-align: left;
    }
    .popup__item_image {
        width: calc(100vw - 60px);
    }
    .popup__item_slider {
        height: auto;
        width: calc(100vw - 30px);
    }
    .popup .slider__arrow {
        width: 20px;
        height: 20px;
    }
    .popup .slider {
        padding: 0 20px;
    }
    .popup__item_slider .popup__content {
        padding: 45px 10px;
    }
    .information + .awards {
        padding-top: 40px;
    }

    .images__grid > .images__item:nth-child(2n + 1){
        width: 50%;
    }
    .images__grid > .images__item:nth-child(2n) {
        width: 50%;
    }
    .awards_horizontal .awards__link {
        width: 250px;
    }
    .awards_horizontal .awards__info {
        width: calc(100% - 250px);
    }
    .licenses__card {
        padding: 30px 20px 40px;
    }
    .licenses__card::before {
        left: 20px;
        width: calc(100% - 40px);
        max-width: 240px;
    }
    .licenses__title{
        font-size: 22px;
    }
    .licenses__card .grid {
        margin: -15px;
    }
    .licenses__card .grid__item {
        padding: 15px;
    }
    .licenses__card .grid__item:last-child {
        width: 200px;
    }
    .licenses__card .grid__item:first-child {
        width: calc(100% - 200px);
    }

    .communications__intro .link {
        font-size: 35px;
        margin: 15px 0;
    }
    .communications__title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .communications__table .link {
        margin-top: 25px;
        font-size: 16px;
    }
    .communications__table .grid {
        margin: 0 -20px;
    }
    .communications__table .grid__item {
        padding: 0 20px;
    }



    .calculator__item > .grid > .grid__item:last-child {
        display: none;
    }
    .calculator__item > .grid > .grid__item:first-child {
        width: 100%;
    }
    .publications__grid .grid__item {
        width: 50%;
    }
    .publications__date {
        font-size: 11px;
    }
    .data__row_column {
        flex-direction: column;
    }
    .data__row_desktop {
        display: none;
    }
    .data__row_column .data__cell {
        width: 100%;
    }
    .data__row_column .data__cell:first-child {
        text-align: center;
        font-weight: 700;
    }
    .data__row_column .data__cell:not(:last-child) {
        border-bottom: 1px solid #000000;
        border-right: none;
    }
    .usefulness .grid__item {
        width: 100%;
    }
    .usefulness__content {
        padding: 64px 44px;
    }
    .thanks__grid .grid__item {
        width: 25%;
    }
    .thanks__grid_preview .grid__item:last-child {
        display: none;
    }
    .consultation__grid .grid {
        margin: -12px;
    }
    .consultation__grid .grid__item {
        width: 50%;
        padding: 12px;
    }
}
@media (max-width: 599px) {
    .desktop{
        display: none !important;
    }
    .mobile{
        display: block;
    }
    .title {
        font-size: 28px;
    }
    .subtitle {
        margin-bottom: 30px;
    }
    .container{
        padding: 0 20px;
    }
    .intro {
        min-height: auto;
        max-height: initial;
        color: #181818;
        text-align: center;
        flex-direction: column;
        justify-content: flex-start;
        padding: 75px 0 0;
        height: auto;
        background-color: #ffffff;
    }
    .intro_light{
        padding-bottom: 40px;
        text-align: left;
    }
    .intro__photo_desktop {
        display: none;
    }
    .intro__photo_mobile {
        display: block;
        position: static;
        width: 100vw;
        height: 105.625vw;
        object-fit: cover;
        margin-left: -20px;
        margin-bottom: -90px;
    }
    .intro__info {
        position: relative;
        z-index: 2;
    }
    .intro__subtitle_indent {
        margin-bottom: 0;
    }
    .intro__iframe {
        display: block;
        width: 100%;
        padding-bottom: 56.3%;
        cursor: pointer;
        position: relative;
        margin-top: 20px;
    }
    .intro__iframe .video {
        pointer-events: none;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding-bottom: 0;
    }
    .intro.intro_low{
        height: 149vw;
        background: none !important;
        max-height: 480px;
        position: relative;
    }
    .intro.intro_low::before{
        content: '';
        display: block;
        width: 100%;
        height: 50%;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(255,255,255,1);
        background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }
    .intro_low .intro__image_desktop{
        display: none;
    }
    .intro_low .intro__image_mobile{
        display: block;
        width: 100%;
        height: auto;
        bottom: 0;
        top: auto;
    }
    .intro_low .intro__content {
        max-width: 224px;
    }
    .intro__content {
        max-width: 290px;
        margin: 0 auto;
    }
    .intro__content_column{
        max-width: 100%;
    }
    .intro__subtitle {
        font-size: 18px;
    }
    .intro::before, .intro__price, .intro .link, .intro .btn_yellow, .intro .btn_white{
        display: none;
    }
    .intro__image {
        transform: none;
        left: 0;
        width: 100%;
        height: 56.25vw;
    }
    .intro__video {
        position: static;
        transform: none;
        width: 100%;
        height: 56.25vw;
    }
    .intro__content {
        margin-bottom: 20px;
    }
    .intro .logo__pyramid {
        fill: #f6d500;
    }
    .intro .logo__text, .intro .logo__triangle {
        fill: #454243;
    }
    .intro__title {
        margin-bottom: 15px;
        font-size: 32px;
    }
    .intro__title_limited{
        font-size: 28px;
    }
    .info__content_indent {
        margin-bottom: 14px;
    }
    .intro__info {
        margin-bottom: 22px;
    }
    .intro__info .info__wrapper{
        padding: 12px 0 0 9px;
    }
    .info__decoration{
        width: 25px;
        height: 25px;
        padding: 4px;
    }
    .image_size{
        width: 21px;
        height: 21px;
    }
    .info__block.info__block_style {
        padding: 10px 18px 0;
    }
    .card {
        padding-left: 0;
    }
    .card__title {
        font-size: 18px;
        line-height: 1.167;
        margin-bottom: 10px;
        padding-left: 40px;
    }
    .card__title::after {
        bottom: 0;
        font-size: 21px;
        line-height: 1.2;
        width: 30px;
        height: 30px;
    }
    .text {
        font-size: 14px;
        line-height: 1.14;
    }
    .awards .subtitle {
        margin-bottom: 20px;
    }
    .awards .grid__item{
        order: 2;
        width: 50%;
        position: relative;
    }
    .awards .grid__item:last-child{
        order: 1;
        width: 100%;
    }
    .awards .grid__item:last-child::after {
        content: "";
        display: block;
        height: 1px;
        background: rgba(237,237,237,1);
        background: -webkit-linear-gradient(left, rgba(237,237,237,0) 0%, rgba(237,237,237,0.8) 20%, rgba(237,237,237,1) 50%, rgba(237,237,237,0.8) 80%, rgba(237,237,237,0) 100%);
        background: linear-gradient(to right, rgba(237,237,237,0) 0%, rgba(237,237,237,0.8) 20%, rgba(237,237,237,1) 50%, rgba(237,237,237,0.8) 80%, rgba(237,237,237,0) 100%);
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
    }
    .awards .grid__item:nth-child(1)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 1px;
        background: rgba(237,237,237,1);
        background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(237,237,237,0) 100%);
        background: linear-gradient(to bottom, rgba(237,237,237,1) 0%, rgba(237,237,237,0) 100%);
    }
    .awards__text {
        max-width: 100%;
    }
    .grid__item:not(:last-child) .awards__title::before, .grid__item:not(:last-child) .awards__title::after{
        content: none;
    }
    .awards__link{
        padding: 0;
        height: auto;
    }

    .awards .slider__arrows, .licenses .slider__arrows {
        display: flex;
        justify-content: space-between;
        width: 110px;
        margin: 30px auto 0;
    }
    .awards .slider__arrow, .licenses .slider__arrow{
        position: static;
        transform: none;
        width: 36px;
    }
    .awards .slider__arrow_next, .licenses .slider__arrow_next {
        transform: rotate(180deg);
    }
    .awards_horizontal .grid__item:nth-child(n) .awards__item {
        flex-direction: column;
        margin: -15px;
    }
    .awards_horizontal .awards__title{
        justify-content: center;
        font-size: 22px;
    }
    .awards_horizontal .awards__title::after, .awards_horizontal .awards__title::before{
        content: '' !important;
    }
    .awards_horizontal .awards__link  {
        width: 100%;
        max-width: 270px;
        padding: 15px;
    }
    .awards_horizontal .awards__info {
        width: 100%;
        padding: 15px;
    }
    .table__cell:nth-child(1), .table_information .table__cell:nth-child(1) {
        width: 65%;
    }
    .table__cell:nth-child(2) {
        display: none;
    }
    .table__cell:nth-child(3), .table_information .table__cell:nth-child(3) {
        width: 35%;
    }
    .table + .btn{
        display: block;
        margin: 40px auto 0;
    }
    .information__btn{
        text-align: center;
    }
    .expert {
        padding: 30px 0 60px;
        text-align: center;
    }
    .expert .grid__item:nth-child(n){
        width: 100%;
    }
    .video {
        width: 100%;
        height: auto;
        padding-bottom: 60%;
        pointer-events: auto;
    }
    .portfolio .title {
        margin-bottom: 20px;
    }
    .portfolio__content{
        padding: 8px 10px;
    }
    .contacts{
        background: url("../img/contacts_back_mobile.jpg") no-repeat center top;
        position: relative;
        background-size: cover;
        margin-bottom: 50px;
        height: 100vh;
        min-height: 400px;
        overflow: hidden;
        padding: 0;
    }
    .contacts::after {
        content: "";
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 120px;
        box-shadow: 0 15px 30px 20px rgba(255,255,255,1);
    }
    .contacts__content{
        max-width: 320px;
        margin: 0 auto;
    }
    .contacts__text {
        font-size: 20px;
    }
    .contacts__image, .contacts__video{
        display: none;
    }
    .contacts__label{
        display: block;
        position: absolute;
        right: 0;
        bottom: 35px;
        background-color: #f6d500;
        font-size: 24px;
        padding: 25px 20px 25px 34px;
        font-family: 'DIN Pro Cond', sans-serif;
        font-weight: 700;
        max-width: 355px;
        width: 100vw;
    }
    .footer .menu__item {
        width: 33.333%;
    }
    .footer .menu__item:nth-child(2)::after {
        left: 33.333%;
    }
    .footer .menu__item:nth-child(4)::after {
        left: 66.667%;
    }
    .footer .menu__item:nth-child(6)::after, .footer .menu__item:nth-child(8)::after{
        content: none;
    }
    .footer .grid__item {
        width: 50%;
    }
    .footer .grid__item:nth-child(3){
        width: calc(100% - 150px);
    }
    .popup__content {
        padding: 30px;
    }
    .popup__item_video .popup__content {
        padding: 44px 0;
    }
    .popup__close {
        top: 10px;
        right: 10px;
    }
    .popup__item_image {
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
        max-height: calc(100vh - 30px);
    }
    .popup__item_video {
        width: 100%;
        max-height: 100%;
    }
    .intro + .information{
        padding-top: 60px;
    }
    .information {
        padding: 25px 0;
    }
    .playvideo{
        width: 100%;
    }
    .licenses{
        overflow: hidden;
    }
    .licenses__item:not(:last-child){
        margin-bottom: 0;
    }
    .licenses__card {
        padding: 0;
        box-shadow: none;
        transition: all 0.5s ease;
        opacity: 0.4;
    }
    .slick-active .licenses__card{
        opacity: 1;
    }
    .licenses__card::before{
        content: none;
    }
    .licenses__card .grid{
        margin: 0;
    }
    .licenses__card .grid__item:first-child{
        display: none;
    }
    .licenses__card .grid__item:last-child {
        width: 100%;
        padding: 0;
    }
    .licenses__image .image {
        -webkit-box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.24);
        -moz-box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.24);
        box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.24);
    }
    .licenses .container{
        padding: 0;
    }

    .communications{
        background: url("../img/communications_mobile.jpg") no-repeat top center;
        background-size: cover;
        padding: 60px 0;
    }
    .communications__intro{
        margin-bottom: 20px;
    }
    .communications__intro .link{
        margin: 10px 0;
        font-size: 40px;
    }
    .communications__table{
        margin-bottom: 35px;
        text-align: center;
    }
    .communications__table .grid {
        margin: -20px 0;
    }
    .communications__table .grid__item {
        padding: 20px 0;
        width: 100%;
    }
    .communications__table .grid__item:nth-child(2n + 1)::before{
        content: none;
    }
    .communications__table .communications__cell{
        padding: 0;
    }
    .communications__description{
        display: none;
    }
    .communications__table .link{
        margin: 0;
        font-weight: 400;
    }
    .communications__contacts .grid {
        margin: -10px 0;
    }
    .communications__contacts .grid__item {
        padding: 10px 0;
        width: 100%;
    }
    .communications__contacts .communications__title{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .communications__social .social {
        width: 142px;
    }


    .tabs__btn_desktop{
        display: none;
    }
    .tabs__btn::before{
        margin: 0;
    }
    .publications__grid .grid {
        margin: -10px -5px;
    }
    .publications__grid .grid__item {
        padding: 10px 5px;
    }
    .article__preview{
        height: calc(100vh - 84px);
        padding-bottom: 0;
        min-height: 300px;
    }
    .article__container {
        padding: 20px;
        max-width: 410px;
    }
    .article__content img {
        margin: 30px -20px;
        width: calc(100% + 40px);
    }
    .article__content table ul{
        padding-left: 0;
    }
    .portfolio__grid .grid__item {
        width: 100%;
    }
    .consultation__grid .grid__item {
        width: 100%;
    }
    .usefulness__content {
        padding: 36px 44px;
    }
    .thanks__grid .grid__item {
        width: 50%;
    }
}
@media (max-width: 425px) {
    .btn_fixed{
        display: none;
    }
    .header__content {
        max-width: 260px;
    }
    .info__decoration:not(.info__decoration.info__decoration_style){
        display: none;
    }
    .info__wrapper{
        padding: 0;
    }
    .info .grid{
        margin: -15px;
    }
    .info .grid__item{
        padding: 15px;
    }
    .info__block:not(.info__block.info__block_style) {
        padding: 0;
    }
    .info__block:not(.info__block.info__block_style)::before{
        content: none;
    }
    .info .link{
        border: none;
    }
    .info__content:not(.info__content.info__content_indent){
        margin-bottom: 0;
    }
    .info__intro{
        display: none;
    }
    .info__title:not(.info__title.info__title_regular) {
        text-align: center;
        margin-bottom: 30px;
    }
    .info__title span{
        display: none;
    }
    .info__block_desktop{
        display: none;
    }
    .info__block_mobile{
        display: block;
    }
    .info__list{
        display: flex;
        justify-content: center;
        align-items: stretch;
        border: 1px solid #eaeaea;
    }
    .info__item{
        width: 333.333%;
        flex-direction: column;
        align-items: center;
        padding: 15px 5px;
        margin: 0;
        border-right: 1px solid #eaeaea;
    }
    .info__item:last-child{
        border-right: none;
    }
    .info__icon {
        width: 22px;
        height: 22px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .info__text{
        text-align: center;
    }
    .info__text span{
        display: none;
    }
    .info__item:nth-child(1) .info__text::before{
        content: "Узнать стоимость";
    }
    .info__item:nth-child(2) .info__text::before{
        content: "Получить консул-ию";
    }
    .info__item:nth-child(3) .info__text::before{
        content: "Выезд инженера";
    }
    .info .link{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        flex-wrap: wrap;
        text-align: center;
    }
    .info .link_phone{
        background-color: #f6d500;
    }
    .info__subtitle {
        display: none;
    }
    .info .link::after{
        color: #181818;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 22px;
        font-family: 'DIN Pro Cond', sans-serif;
        width: 100%;
    }
    .info .link_phone::after{
        content: "нажмите сюда, чтобы позвонить";
    }
    .info .link_wa::after{
        content: "нажмите сюда, чтобы написать";
    }
    .info .link_wa{
        color: #4caf50;
        font-size: 22px;
        font-family: 'DIN Pro Cond', sans-serif;
        border: 1px solid #181818;
    }
    .grid__item:last-child .info__list{
        display: none;
    }
    .price{
        background: #fff;
    }
    .price + .calculator{
        padding: 35px 0 40px;
    }
    .price .title span{
        display: none;
    }
    .table__head .table__row{
        background-color: #969696;
    }
    .table__head .table__row::after, .table__row::after{
        content: none;
    }
    .table__head .table__cell{
        color: #fff;
        padding: 0 5px;
    }
    .table__text_desktop, .table__row_desktop, .table + .btn{
        display: none;
    }
    .table__text_mobile{
        display: block;
    }
    .table__cell {
        padding: 5px;
        line-height: 1.875;
    }
    .table__row {
        margin: 0;
        padding: 0 15px;
    }
    .table__body .table__row:nth-child(2n){
        background: rgba(255,255,255,1);
        background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 20%, rgba(246,246,246,1) 80%, rgba(255,255,255,1) 100%);
        background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 20%, rgba(246,246,246,1) 80%, rgba(255,255,255,1) 100%);
    }
    .table__cell:nth-child(1) {
        width: calc(100% - 110px);
    }
    .table__cell:nth-child(3) {
        width: 110px;
    }
    .table + .btn {
        width: 268px;
        padding: 15px 20px;
    }
    .icon{
        border-radius: 50%;
        width: 20px;
        height: 20px;
        padding: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        margin-right: 20px;
    }
    .icon_wa{
        background-color: #4caf50;
        position: relative;
    }
    .icon .image{
        width: 100%;
    }
    .icon_wa::before{
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 0 4px;
        border-color: transparent transparent transparent #4caf4f;
        position: absolute;
        top: 75%;
        left: 1px;
    }
    .footer {
        padding-bottom: 40px;
    }
    .footer .menu__list {
        margin: 0 -20px;
    }
    .footer .menu__item {
        width: 50%;
        padding: 0 20px;
    }
    .footer .menu__link {
        text-align: left;
        font-size: 16px;
        letter-spacing: -0.01em;
        padding: 10px 0;
    }
    .footer .menu__item:nth-child(2)::after {
        left: 50%;
    }
    .footer .menu__item:nth-child(4)::after {
        content: none;
    }
    .footer .grid__item:nth-child(1), .footer .grid__item:nth-child(2){
        display: none;
    }
    .footer .grid__item:nth-child(3){
        width: 100%;
    }
    .rights {
        font-size: 14px;
        padding: 15px 0 45px;
        white-space: normal;
    }
    .buttons{
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 4;
        padding: 10px;
        background-color: #fff;
    }
    .buttons .grid{
        margin: -5px;
    }
    .buttons .grid__item{
        padding: 5px;
        width: 50%;
    }
    .buttons__item{
        border-radius: 10px;
        background-color: #eaeaea;
        height: 100%;
        padding: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .buttons .icon .buttons__item {
        padding: 0;
        background-color: transparent;
        justify-content: center;
    }
    .buttons__text{
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    .buttons__number{
        font-family: 'DIN Pro Cond', sans-serif;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    .buttons .icon_wa::before {
        border-width: 7px 0 0 7px;
        left: 2px;
        z-index: 2;
    }
    .buttons .icon_wa::after{
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 11px 0 0 11px;
        border-color: transparent transparent transparent #ffffff;
        position: absolute;
        top: calc(75% - 1px);
        left: -1px;
        z-index: 1;
    }
    .icon_tel{
        background-color: #f6d500;
    }
    .buttons .icon{
        flex-shrink: 0;
        margin-right: 10px;
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    .buttons .icon_wa{
        border: 4px solid #fff;
        width: 44px;
        height: 44px;
    }
    .buttons .grid__item:first-child .buttons__number{
        color: #4caf50;
    }
    .images__grid > .images__item:nth-child(n){
        width: 100%;
    }
    .form__title {
        font-size: 20px;
    }
    .form__subtitle {
        font-size: 16px;
    }
    .form__subtitle + .form__content {
        margin-top: 30px;
    }
    .form__title + .form__content {
        margin-top: 40px;
    }
    .publications__grid .grid__item {
        width: 100%;
    }
    .filters .grid__item {
        width: 100%;
        max-width: 100%;
    }
    .usefulness__wrapper {
        max-width: 240px;
    }
    .usefulness__content {
        padding: 24px 32px;
    }
}
@media (max-width: 370px){
    .buttons__item {
        padding: 5px;
    }
    .buttons__text {
        margin-bottom: 0;
    }
    .buttons__text .buttons__item {
        border-radius: 10px 10px 0 0;
    }
    .buttons__number {
        font-size: 18px;
    }
    .buttons__number .buttons__item {
        border-radius: 0 0 10px 10px;
    }
    .buttons .icon {
        width: 30px;
        height: 30px;
        padding: 5px;
        margin-bottom: 5px;
    }
    .buttons .icon_wa {
        border: 3px solid #fff;
        width: 34px;
        height: 34px;
    }
    .icon_wa::before{
        top: 72%;
    }
    .buttons .icon_wa::after {
        top: 72%;
        border-width: 9px 0 0 9px;
    }
    .table__row {
        padding: 0;
    }
    .table_information .table__body .table__cell:nth-child(1){
        font-weight: 400;
    }
    .usefulness__text {
        margin-bottom: 12px;
    }
    .usefulness__content {
        padding: 20px;
    }
}
@font-face {
    font-family: DINPro;
    src: url('../fonts/DINPro.eot');
    src: local('DINPro'),
    url('../fonts/DINPro.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro.woff') format('woff'),
    url('../fonts/DINPro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: DINPro;
    src: url('../fonts/DINPro-Medium.eot');
    src: local('DIN Pro Medium'), local('DINPro-Medium'),
    url('../fonts/DINPro-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro-Medium.woff') format('woff'),
    url('../fonts/DINPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: DINPro;
    src: url('../fonts/DINPro-Bold.eot');
    src: local('DIN Pro Bold'), local('DINPro-Bold'),
    url('../fonts/DINPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro-Bold.woff') format('woff'),
    url('../fonts/DINPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'DIN Pro Cond';
    src: url('../fonts/DINPro-CondensedMedium.eot');
    src: local('DIN Pro Condensed Medium'), local('DINPro-CondensedMedium'),
    url('../fonts/DINPro-CondensedMedium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro-CondensedMedium.woff') format('woff'),
    url('../fonts/DINPro-CondensedMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Cond';
    src: url('../fonts/DINPro-CondensedBold.eot');
    src: local('DIN Pro Condensed Bold'), local('DINPro-CondensedBold'),
    url('../fonts/DINPro-CondensedBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DINPro-CondensedBold.woff') format('woff'),
    url('../fonts/DINPro-CondensedBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: Arial;
    src: local('Arial'), url("../fonts/Arial.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Arial;
    src: local('Arial-Bold'), url("../fonts/Arial-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/*Какая-то дрянь*/
.all-about-company-trigger {
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 180px;
    background-color: rgba(0, 0, 0, .85);
    cursor: pointer;
    text-align: center;
    padding: 20px;
    pointer-events: none;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    opacity: 0
}

.all-about-company-trigger.active {
    opacity: 1;
    pointer-events: auto
}

.all-about-company-trigger h6 {
    font-size: 20px;
    color: #fff
}

.all-about-company-trigger img {
    display: block;
    margin: 15px auto;
    width: 50px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.all-about-company-trigger img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.all-about-company-trigger p {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-bottom: 1px dotted #fff
}

.all-about-company-trigger span, .all-about-company-video .close-video {
    position: absolute;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.all-about-company-trigger span {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, .95);
    border-radius: 50%;
    color: #fff;
    right: -10px;
    top: -10px;
    font-size: 14px
}
.all-about-company-trigger span:hover, .all-about-company-video .close-video:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.all-about-company-video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, .95);
    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%)
}

.all-about-company-video.open {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
}

.all-about-company-video iframe {
    position: absolute;
    display: block;
    width: 80%;
    left: 0;
    right: 0;
    top: 10%;
    margin: 0 auto
}

.all-about-company-video .close-video {
    right: 3%;
    top: 3%;
    cursor: pointer;
    width: 40px;
    height: 40px;
}
.all-about-company-video .close-video::before, .all-about-company-video .close-video::after,
.all-about-company-trigger span::before, .all-about-company-trigger span::after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #000;
}
.all-about-company-trigger span::before, .all-about-company-trigger span::after{
    background-color: #fff;
    width: 50%;
}
.all-about-company-video .close-video::before,
.all-about-company-trigger span::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.all-about-company-video .close-video::after,
.all-about-company-trigger span::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
