*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: 'Montserrat', Arial;
}

/** Повторяющиеся блоки **/
.check-svg{
    min-width:40px;
    min-height:40px;
    max-width:40px;
    max-height:40px;
    fill: white;
}
.safe-svg{
    min-width:40px;
    min-height:40px;
    max-width:40px;
    max-height:40px;
    fill: white; 
}
section{
    width: 100%;
    padding: 90px 0;
}
.container {
    max-width: 1170px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 5;
    position: relative;
}
.body {
    width: 100%;
    height: 100%;
}
.title {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 100px;
}
.title span{
    color: #05d908;
}
.button{
    background-color: #05d908;
    font-weight: 700;
    color: #FFFFFF;
    border-radius: 50px;
    cursor: pointer;
}

/** Шапка **/
.header {
    height: 150px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 51;
}

/* меню бургер */
.header__burger {
	display: none;
	cursor: pointer;
}
.header__burger.active:before{
	transform:rotate(45deg);
	top: 9px;
}
.header__burger.active:after{
	transform:rotate(-45deg);
	bottom: 9px;
}
.header__burger.active span{
	transform: scale(0);
}
/* /меню бургер */


.header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    width: 160px;
    height: 100%;
    display: flex;
    align-items: center;
}
.header__logo img{
    width: 100%;
    height: auto;
}
.header__nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min-content;
}
.header__link {
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
    white-space: nowrap;
}
.header__link:nth-child(3){
    margin-right: 30px;
    margin-top: 10px;
}
.header__link:nth-child(4){
    margin-top: 10px;
}
.header__link:hover{
    color: #05d908;
    text-decoration: none;
}
.header__phone {
    color: #05d908;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    z-index: 1;
}
.header__phone:hover{
    text-decoration: underline;
    color: #05d908;
}
 .header__phone::before{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    top: 6.5px;
    left: 1.5px;
    background-color: #05d908;
    border-radius: 50%;
    z-index: -1;
}
.header__phone::after{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    top: 6.5px;
    left: 1.5px;
    background-color: #05d908;
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
    animation: 1s ease-in 1s infinite both running phone2;
}

@keyframes phone2 {
    0%{
        width: 7px;
        height: 7px;
        top: 6.5px;
        left: 1.5px;
    }
    100%{
        width: 20px;
        height: 20px;
        top: 0.2px;
        left: -5.3px;
        opacity: 0;
    }
} 

/** Главная **/
.main {
    height: 90vh;
    padding-top: 180px;
    background-image: url(/img/main-bg-2.jpg);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.main-promotion {
    height: 90vh;
    padding-top: 180px;
    background-image: url(/img/main-bg-promotion.jpg);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.main::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #0000005c;
}
.title-promotion {
    margin-top: 100px;
}
.main-promotion .main__button {
    margin-top: 55px;
}
.small-text {
    color: #fff;
    font-size: 10px;
    margin-top: 20px;
}
.main__body {
    max-width: 700px;
}
.main__title {
    line-height: 56px;
    margin-bottom: 0;
}
.main__list {
    margin: 50px 0;
}
.main__list p{
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
}
.main__list p .check-svg{
    width: 31px;
    height: 31px;
    margin-right: 20px;
    color: white;
}
.main__list p::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}
.main__button {
    display: flex;
    align-items: center;
}
.main__button .button{
    background-color: #05d908;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    color: #FFFFFF;
    padding: 20px 40px;
    transition: all 0.2s;
}
.main__button a:hover{
    color: #FFFFFF;
    text-decoration: none;
    transform: translate(0, -3px);
    box-shadow: 0 20px 40px 0 rgb(17 17 17);
}
.main__button p{
    width: 220px;
    color: rgb(213, 213, 213);
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    margin: 0 0 0 60px;
}

/** Преимущества **/
.advantages {
    background-color: #222222;
    height: 83vh;
    display: table;
}
.advantages__body {
    display: flex;
    flex-direction: column;
}
.advantages__title {
    text-align: center;
    font-size: 48px;
}
.advantages__content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.advantages__list {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
.advantages__list-item {
    display: flex;
}
.advantages__list-item:not(:last-child){
    margin-bottom: 40px;
}
.advantages__list-item img{
    margin-right: 40px;
}
.advantages__list-item p{
    display: flex;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}
.advantages__right {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.advantages__image {
    max-width: 100%;
    margin: auto 0;
}
.advantages__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.advantages__button .button{
    font-size: 16px;
    padding: 15px 30px;
    margin-right: 20px;
}
.advantages__button p{
    max-width: 245px;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    margin: 0 0 0 30px;
    color: white;
}

/** Какие катализаторы можно сдать **/
.catalysts {
    background-image: url('https://m-files-new.cdnvideo.ru/lpfile/8/8/8/8886096706df8c7d027cf37a28bfce0c.jpg?13311379');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: table;
}
.catalysts::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #222222;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: 0;
}
.catalysts__body {
    position: relative;
    z-index: 2;
}
.catalysts__title {
    text-align: center;
}
.cards {
    display: flex;
    justify-content: space-between;
}
.cards__item {
    display: flex;
    flex-direction: column;
    max-width: 330px;
    background-color: white;
    padding: 32px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    overflow: hidden;
}
.cards__image {
    position: relative;
    height:340px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: -17px -32px 32px -32px;
}
.cards__image::before{
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #05d908;
}
.cards__image--ceram{
    background-image: url('/img/16.39.38.jpeg');
}
.cards__image--sajev{
    background-image: url('/img/16.41.59.jpeg');
}
.cards__image--metall{
    background-image: url('/img/16.35.58.jpeg');
}
.cards__title {
    color: #1D1D1D;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}
.cards__description {
    color: #1D1D1D;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 50px;
}
.cards__price {
    color: #1D1D1D;
    font-size: 20px;
    font-weight: 700;
    margin-top: auto;
}
.cards__button {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin-top: 25px;
}

/**  Отзывы **/
.reviews {
    background-color: #2f2f2f;
    height: 90vh;
}
.reviews__body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reviews__title {
    position: relative;
    text-align: center;
    width: 350;
    padding-bottom: 25px;
}
.reviews__title::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 5px;
    background-color: #05d908;
}
.reviews__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}
.reviews__item {
    display: flex;
    align-items: center;
}
.reviews__item img{
    max-width: 200px;
    margin-right: 15px;
}
.reviews__image{
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 15px;
}
.reviews__text-block{
    display: flex;
    flex-direction: column;
    max-width: 312px;
}
.reviews__name{
    font-size: 22px;
    font-weight: 700;
    color: white;
}
.reviews__name span{
    color:#05d908;
    font-size: 42px;
    font-weight: 700;
}
.reviews__text {
    color: white;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

/**  Вызовите специалиста или запишитесь к нам на приём  **/

.specialist {
    height: 70vh;
    position: relative;
    background-image: url('//m-files.cdnvideo.ru/lpfile/9/d/7/9d7f10571cb96ab1677e5d125654ac9d.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.specialist::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #222222;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: 0;
}
.specialist__body {
    display: flex;
    position: relative;
    z-index: 2;
}
.specialist__image {
    max-width: 500px;
    max-height: 480px;
    width: 100%;
    height: 100%;
    display: flex;
    margin-right: 20px;
    align-items: center;
}
.specialist__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.specialist__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 58px;
    text-align: center;
    margin-bottom: 0;
}
.specialist__subtitle {
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    margin: 30px 0 50px 0;
    text-align: center;
}
.specialist__buttons {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.specialist__buttons div{
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.specialist__buttons div:last-child{
    background-color: rgb(241, 241, 241);
    color: #000000;
    border-radius: 50px;
    margin-left: 15px;
}
.specialist__list {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.specialist__item {
    display: flex;
}
.specialist__item:last-child{
    margin-left: 40px;
}
.specialist__item p{
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-left: 20px;
}
.specialist__item span{
    font-weight: 700;
}

/**  Контакты  **/
.contact {
    display: table;
    height: fit-content;
    position: relative;
    background-image: url('https://m-files.cdnvideo.ru/lpfile/6/7/1/671b11f48a777eb70bb9b6dcdf3bc098.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #222;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: 0;
}
.contact__body {
    position: relative;
    z-index: 2;
}
.contact__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact__title {
    text-align: center;
}
.contact__info {
    max-width: 450px;
    display: flex;
    flex-direction: column;
}
.contact__info p{
    margin-bottom: 50px;
}
.contact__info>p,
.contact__info a{
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}
.contact__info span{
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact__info a{
    display: block;
    margin-top: 10px;
}
.contact__info a:hover{
    color: white;
}
.contact__form {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.contact-form-form{
    display: flex;
}
.contact__form-title {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.contact__form-title::before{
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    height: 1px;
    width: 55%;
    background-color: #05d908;
}
.contact-form__input {
    padding: 21px 20px !important;
    border-radius: 20px !important;
    margin: 0 20px 0 0 !important;
}
.contact-form__button {
    padding: 12px 30px;
}
.contact__map {
    width: 600px;
    height: 400px;
}

/** Футер **/
.footer {
    background-color: #222222;
    max-height: 230px;
    height: 230px;
    width: 100%;
}
.footer__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__logo {
    max-width: 125px;
    max-height: 107px;
    display: flex;
    align-items: center;
}
.footer__text {
    color: white;
    font-size: 18px;
    font-weight: 300;
}
.footer__copyright {
    color:  rgb(141,141,141);
    font-size: 14px;
    font-weight: 300;
}
.footer__grafic p:first-child{
    color: white;
    font-size: 15px;
}
.footer__grafic p{
   color: #eaeaea;
   font-size: 14px;
}
.footer__grafic span{
    color: #9b9b9b;
}


/** Всплывающие формы **/
.user_form {
    background: none !important;
}

.success {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 99;
    top: 0;
    left: 0;
}

.success__text {
    font-size: 30px;
    font-weight: 600;
    color: #222222;
}

.popup-form,
.popup-call {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.popup-form__wrapper,
.popup-call_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-form__bg,
.popup-call__bg {
    position: absolute;
    background-color: RGBA(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
}

.popup-form__body,
.popup-call__body {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 100px;
    z-index: 99;
    min-height: 380px;
}

.popup-form__close,
.popup-call__close {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.popup-form__close::before,
.popup-form__close::after,
.popup-call__close::before,
.popup-call__close::after {
    content: '';
    position: absolute;
    top: 0;
    background-color: #000000;

}

.popup-form__close::before,
.popup-call__close::before {
    left: 0;
    width: 2px;
    height: 20px;
    transform: rotate(45deg);
}

.popup-form__close::after,
.popup-call__close::after {
    left: 0;
    width: 2px;
    height: 20px;
    transform: rotate(-45deg);
}

.popup-form__title,
.popup-call__title {
    font-size: 30px;
    font-family: Montserrat, Arial !important;
    font-weight: 700 !important;
    font-style: normal !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #222222;
}

.popup-form__subtitle {
    display: block;
    font-size: 20px;
    text-transform: lowercase;
    margin-top: 10px;
}

.popup-form__form {
    display: flex;
    flex-direction: column;
}

.popup-form__input {
    border: 1px solid lightgray !important;
    border-radius: 10px !important;
    padding: 20px 10px !important;
    margin-bottom: 20px !important;
    width: 100%;
}

.popup-form__label {
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
    cursor: pointer;
}

.popup-form__label a {
    margin-left: 2px;
}

.popup-form__checkbox {
    position: relative;
    z-index: 99;
    width: 18px;
    height: 18px;
    background-color: transparent;
    margin-right: 10px !important;
    cursor: pointer;
}

.popup-form__checkbox::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 22px;
    height: 22px;
    background-color: #05d908;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
}

.popup-form__checkbox:checked::before {
    background-image: url("https://creazilla-store.fra1.digitaloceanspaces.com/emojis/56765/check-mark-button-emoji-clipart-md.png");
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
}

.popup-form__button,
.footer-form__button {
    background: #05d908;
    border-radius: 25px;
    border: none;
    color: #FFFFFF;
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.footer-form {
    display: flex;
}

.footer-form__input {
    margin-right: 15px !important;
    padding: 20px !important;
    border-radius: 20px !important;
}
.footer__social img{
    width: 30px;
    height: 30px;
}
.footer__social a{
    display: inline-block;
}
.footer__social a:nth-child(even) {
    margin: 0 15px;
}
.footer-form__button {
    margin-top: 0px;
    font-weight: 400;
    padding: 12px 30px;
}

.popup-call__title {
    font-size: 25px;
}

.popup-call__body {
    height: 30%;
}

.scrollTop{
    width:  50px;
    height: 50px;
    display: block;
    position: fixed;
    bottom: -100%;
    left: 30px;
    transition: bottom 0.3s;
    z-index: 99;
}
.scrollTop img{
    width: 100%;
    height: 100%;
    filter: brightness(300%);
}

.header-politika{
	position: relative;
	background-color: #222222;
}

.politika{
	padding: 30px;
}

.politika li{
	list-style: disc !important;
}