/* Basic styles start */

@font-face {
   font-family: "TT Commons";
   src: url("../fonts/TTCommons-Light.woff2"), url("../fonts/TTCommons-Light.woff");
   font-weight: 300;
   font-display: swap;
   font-style: normal;
}

@font-face {
   font-family: "TT Commons";
   src: url("../fonts/TTCommons-Regular.woff2"), url("../fonts/TTCommons-Regular.woff");
   font-weight: 400;
   font-display: swap;
   font-style: normal;
}

@font-face {
   font-family: "TT Commons";
   src: url("../fonts/TTCommons-Medium.woff2"), url("../fonts/TTCommons-Medium.woff");
   font-weight: 500;
   font-display: swap;
   font-style: normal;
}

@font-face {
   font-family: "TT Commons";
   src: url("../fonts/TTCommons-DemiBold.woff2"), url("../fonts/TTCommons-DemiBold.woff");
   font-weight: 600;
   font-display: swap;
   font-style: normal;
}

body {
   font-family: "TT Commons";
   font-weight: 400;
   font-size: 16px;
}

button {
   cursor: pointer;
   transition: all 0.5s;
}

a {
   text-decoration: none;
   color: #040320;
}

li {
   list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
   margin: 0;
   padding: 0;
}

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   scroll-behavior: smooth !important;
}

.wrapper {
   width: 1300px;
   display: flex;
   margin: 0 15px;
}

/* Basic styles end */

/* Header styles start */

header {
   width: 100%;
   padding-top: 50px;
   display: flex;
   flex-direction: column;
   align-items: center;
   background: url(../img/header-bg.webp);
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
}

.header__wrapper {
   justify-content: space-between;
   align-items: center;
   padding: 11px 20px;
   background: #ffffff;
   box-shadow: 0px 4px 15px rgba(128, 128, 128, 0.08);
   border-radius: 18px;
   margin: 0 20px;
}

.header__logo {
   display: flex;
}

.nav__list {
   display: flex;
}

.nav__item {
   margin-left: 85px;
}

.nav__link {
   color: #240071;
   font-size: 16px;
}

.nav__link:hover {
   border-bottom: 1px solid #240071;
}

.call__block {
   display: flex;
   align-items: center;
}

.call__block2 {
   display: flex;
   align-items: center;
   justify-content: center;
}

.phone__number {
   margin-right: 12px;
   color: #240071;
   font-weight: 500;
   font-size: 18px;
}

.phone__number2 {
   margin-right: 12px;
   color: #fff;
   font-weight: 500;
   font-size: 18px;
}

.mobile__btns_block {
   display: none;
}

.mobile__btn {
   width: 167px;
   height: 54px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 6px;
   border: none;
   color: #fff;
   font-size: 16px;
   font-weight: 400;
   margin: 0 10px;
}

.mail__text {
   margin-left: 9px;
}

.phone__text {
   margin-left: 9px;
}

.email__btn {
   background: #5d14cd;
}

.call__btn {
   background: #01b729;
   font-weight: 500;
   margin-left: 1px;
}

.header__benefits_block {
   display: none;
}

/* Scroll up btn styles start */

.up__btn {
   width: 60px;
   height: 60px;
   background: #205bff;
   border-radius: 10px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   left: 22px;
   bottom: 5px;
   z-index: 111;
}

/* Scroll up btn styles end*/

/* Click to call styles start*/

@keyframes btn__phone_circle {
   0% {
      transform: scale(1);
   }

   100% {
      transform: scale(1.3);
   }
}

.click__call_link {
   position: fixed;
   right: 22px;
   bottom: 13px;
   z-index: 111;
}

.btn__phone_wrap {
   position: relative;
}

.btn__phone {
   width: 80px;
   height: 80px;
   border-radius: 50px;
   background: #8c47e8 url(../img/click-to-call.svg) center center no-repeat;
}

.btn__phone_circle {
   width: 80px;
   height: 80px;
   border: 10px solid #fff;
   opacity: 0.4;
   border-radius: 60px;
   animation: btn__phone_circle 0.8s infinite alternate linear;
}

/* Click to call styles end*/

/* Modal style start */

.modal__block {
   display: none;
   transform: translateY(-105%);
   display: flex;
   flex-direction: column;
   align-items: center;
   position: fixed;
   width: 93.5%;
   height: 790px;
   padding: 15px 15px 26px;
   left: 3%;
   top: 3%;
   background: #ffffff;
   border: 1px solid #eff0f6;
   box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
   border-radius: 16px;
   z-index: 999;
   transition: all 0.5s;
}

.modal__close_block {
   width: 100%;
   text-align: right;
}

.modal__block.active {
   transform: translateY(0%);
}

.modal__input {
   width: 305px;
   height: 56px;
   background: #ffffff;
   border: 1px solid #eff0f6;
   box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
   border-radius: 16px;
}

.name__input_block {
   margin-bottom: 25px;
}

.name__input_block:last-child {
   margin-bottom: 30px;
}

.input__name {
   font-size: 18px;
   margin-bottom: 5px;
}

/* Modal style end */

/* Burger styles start */

.hours__icon {
   display: none;
}

.burger__wrapper {
   display: none;
}

.burger__icon_block {
   display: none;
   width: 22px;
   height: 17px;
   position: relative;
   margin-left: 22px;
}

.burger__line {
   height: 2px;
   display: block;
   background: #240071;
   width: 100%;
   position: absolute;
   border-radius: 50px;
   transition: 0.3s;
}

.burger__line_first {
   top: 0;
}

.burger__line_second {
    top: 44.7%;
}

.burger__line_third {
   bottom: 0;
}

.burger__menu {
   transform: translateX(100%);
   width: 71%;
   height: 851px;
   background: #5c1ec7;
   position: fixed;
   top: 0;
   right: 0;
   text-align: center;
   padding: 35px 35px 26px 25px;
   transition: 0.4s;
   display: none;
   z-index: 9999;
}

.burger__menu.active {
   transform: translateX(0%);
}

.burger__close_wrapper {
   width: 100%;
   margin-bottom: 16px;
   display: flex;
   justify-content: end;
}

.burger__close {
}

.burger__menu_list {
   display: flex;
   flex-direction: column;
   align-items: self-start;
   margin-bottom: 300px;
}

.burger__item {
   margin-bottom: 20px;
}

.burger__link {
   color: #f8f8f8;
   font-weight: 500;
   font-size: 22px;
}

/* Burger styles end */

/* Header styles end */

/* Main styles start */

.main {
   width: 100%;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

.main__wrapper {
   padding-top: 124px;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 89px;
}

.main__title {
   font-weight: 500;
   font-size: 56px;
   color: #202020;
   max-width: 530px;
   margin-bottom: 40px;
   text-transform: uppercase;
}

.main__subtitle_block {
   display: flex;
   align-items: center;
   margin-bottom: 62px;
}

.main__text {
   max-width: 583px;
   font-weight: 300;
   font-size: 24px;
   margin-left: 30px;
}

.main__btn {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 240px;
   height: 70px;
   font-weight: 600;
   font-size: 18px;
   color: #fff;
   border: none;
   background: linear-gradient(94.39deg, #9047ed 0%, #7849cc 100%);
   box-shadow: 0px 4px 50px rgba(130, 72, 218, 0.3);
   border-radius: 8px;
}

.main__btn:hover {
   background: linear-gradient(94.39deg, #6b19d3 0%, #401096 100%);
}

.main__btn2:hover {
   background: linear-gradient(94.39deg, #6b19d3 0%, #401096 100%);
}

.main__btn2 {
   display: none;
   width: 240px;
   height: 70px;
   font-weight: 600;
   font-size: 18px;
   color: #fff;
   border: none;
   background: linear-gradient(94.39deg, #9047ed 0%, #7849cc 100%);
   box-shadow: 0px 4px 50px rgba(130, 72, 218, 0.3);
   border-radius: 8px;
}

.check_icon {
   margin-left: 10px;
}

.main__pic_block {
   position: relative;
}

.tap__water {
   width: 95%;
}

.swipe__icon_wrapper {
   width: 100%;
   display: flex;
   justify-content: center;
}

/* Circle animation styles start */

@keyframes rotate {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

.circle {
   position: absolute;
   width: 146px;
   height: 146px;
   top: 30%;
   left: 11%;
   transform: rotate(10.6deg);
   background-image: url(../img/rain.webp), linear-gradient(#7f48d5, #7f48d5);
   border-radius: 100%;
   box-shadow: 0px 0px 120px rgba(124, 72, 210, 0.7);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 111;
}

.stroke1 {
   position: absolute;
   width: 126px;
   height: 126px;
   stroke-width: 2;
   stroke-dasharray: 15 17;
   animation: rotate 15s linear infinite;
}

.circle__text_block {
   width: 80px;
   text-align: center;
}

.circle__text {
   color: #fff;
   font-size: 14px;
}

.circle__text_from {
   font-size: 16px;
}

.price {
   font-size: 28px;
   font-weight: 600;
}

/* Circle animation styles end */

/* Main styles end */

/* Services styles start */

.services {
   display: flex;
   justify-content: center;
   padding-top: 97px;
   padding-bottom: 181px;
   background: #ececec;
}

.services__block {
   min-width: 0;
   width: 1081px;
   background: url(../img/cards-bg.webp);
   background-repeat: no-repeat;
   background-size: 100% 100%;
}

.service__title_block {
   margin: 60px 0 40px 75px;
   display: flex;
   align-items: center;
}

.services__title {
   margin-left: 20px;
   font-size: 24px;
   font-weight: 400;
}

/* Services slider styles start */

.cards__slider {
   position: relative;
   min-width: 0;
   width: 92%;
}

.cards__slider .slick-arrow {
   font-size: 0;
   position: absolute;
   border: none;
   top: 39%;
}

.cards__slider .slick-next {
   width: 40px;
   height: 40px;
   background: url(../img/cards-right-btn.svg);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   right: -70px;
}

.cards__slider .slick-prev {
   width: 40px;
   height: 40px;
   background: url(../img/cards-left-btn.svg);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   left: -70px;
}

/* Services slider styles end */

.cards__block {
   display: flex;
   justify-content: space-between;
   margin: 0 auto;
   margin-bottom: 75px;
}

.card {
   width: 290px;
   background: #fdfdfd;
   border: 1px solid #e4e1ea;
   border-radius: 35px;
   margin: 0 20px;
}

.card__pic {
   width: 100%;
}

.card__text_block {
   padding: 29px 48px 25px 20px;
   margin-top: -7px;
}

.card__title {
   margin-bottom: 20px;
   font-weight: 500;
   font-size: 18px;
   line-height: 100%;
}

.card__text {
   font-weight: 300;
   line-height: 130%;
   width: 215px;
}

.card__btn {
   width: 220px;
   height: 56px;
   background: none;
   filter: drop-shadow(0px 4px 50px rgba(130, 72, 218, 0.3));
   border-radius: 8px;
   border: 1px solid #8747e1;
   font-weight: 600;
   font-size: 18px;
   color: #8747e1;
   display: flex;
   justify-content: center;
   align-items: center;
   padding-top: 2px;
   margin: 0 auto 25px;
}

.cards__icon {
   margin-left: 10px;
}

.cards__block {
}

/* Services styles end */

/* About styles start */

.about {
   display: flex;
   justify-content: center;
   background: url(../img/about-bg.webp);
   padding-top: 147px;
   padding-bottom: 147px;
}

.about__wrapper {
   justify-content: space-around;
}

.about__us {
   margin-bottom: 35px;
   display: flex;
   align-items: center;
}

.about__us2 {
   margin-bottom: 35px;
   align-items: center;
   display: none;
}

.about__title {
   margin-bottom: 30px;
}

.about__text {
   margin-bottom: 30px;
}

.about__us_text {
   font-size: 24px;
   font-weight: 300;
   color: #fff;
   margin-left: 20px;
}

.about__title {
   max-width: 530px;
   font-weight: 500;
   font-size: 38px;
   line-height: 140%;
   color: #fff;
   text-transform: uppercase;
}

.about__text {
   width: 488px;
   font-weight: 500;
   font-size: 20px;
   line-height: 140%;
   color: #fff;
}

.about__btn {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 220px;
   height: 56px;
   font-weight: 600;
   font-size: 18px;
   color: #fff;
   background: none;
   filter: drop-shadow(0px 4px 50px rgba(130, 72, 218, 0.3));
   border-radius: 8px;
   border: 1px solid #fff;
}

.about__btn:hover {
   background: linear-gradient(94.39deg, #6b19d3 0%, #401096 100%);
}

.about__btn2:hover {
   background: linear-gradient(94.39deg, #6b19d3 0%, #401096 100%);
}

.about__btn2 {
   display: none;
   width: 220px;
   height: 56px;
   font-weight: 600;
   font-size: 18px;
   color: #fff;
   background: none;
   filter: drop-shadow(0px 4px 50px rgba(130, 72, 218, 0.3));
   border-radius: 8px;
   border: 1px solid #fff;
}

.about__pic_block {
   display: flex;
   align-items: center;
}

.about__pic {
   width: 100%;
}

/* About styles end */

/* Guarantee styles start */

.guarantees {
   display: flex;
   justify-content: center;
   padding-top: 100px;
   padding-bottom: 147px;
}

.guarantees__wrapper {
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

.tablet__pic {
   width: 100%;
}

.guarantees__titles_block {
   width: 100%;
   margin-bottom: 35px;
}

.guarantees_title {
   max-width: 750px;
   font-size: 48px;
   font-weight: 400;
   margin-bottom: 25px;
}

.guarantees__subtitle {
   max-width: 750px;
   font-size: 20px;
   line-height: 140%;
}

.guarantees__block {
   display: flex;
   margin-bottom: 78px;
}

.guarantees__block:last-child {
   margin-bottom: 0;
}

.shield__icon_wrapper {
   margin-right: 30px;
}

.guarantees__block_title {
   max-width: 266px;
   font-weight: 500;
   font-size: 20px;
   margin-bottom: 15px;
   line-height: 140%;
}

.guarantees__block_text {
   max-width: 399px;
   font-weight: 300;
   font-size: 18px;
   line-height: 140%;
}

/* Guarantee styles end */

/* Order styles start */

.order {
   display: flex;
   justify-content: center;
   padding-top: 162px;
   padding-bottom: 163px;
   background: #f5f5f5;
}

.order__wrapper {
   width: 1300px;
   background: url(../img/order-bg.webp);
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   flex-direction: column;
   justify-content: end;
   border-radius: 25px;
   margin: 0 20px;
}

.order__title {
   color: #fff;
   font-size: 56px;
   font-weight: 400;
   margin-bottom: 12px;
}

.order__text {
   max-width: 479px;
   font-size: 20px;
   line-height: 140%;
   color: #fff;
   margin-bottom: 30px;
}

.order__btn {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 240px;
   height: 70px;
   font-weight: 600;
   font-size: 18px;
   color: #fff;
   border: none;
   background: linear-gradient(94.39deg, #9047ed 0%, #7849cc 100%);
   box-shadow: 0px 4px 50px rgba(130, 72, 218, 0.3);
   border-radius: 8px;
   border: 1px solid #fff;
}

.modal__btn {
   width: 240px;
   height: 70px;
   font-weight: 600;
   font-size: 18px;
   color: #fff;
   border: none;
   background: linear-gradient(94.39deg, #9047ed 0%, #7849cc 100%);
   box-shadow: 0px 4px 50px rgba(130, 72, 218, 0.3);
   border-radius: 8px;
   border: 1px solid #fff;
}

.order__text_block {
   padding-top: 259px;
   padding-bottom: 120px;
   margin-left: 40px;
}

/* Order styles end */

/* Reviews styles start */

.reviews {
   display: flex;
   justify-content: center;
   padding-top: 248px;
   padding-bottom: 248px;
}

.reviews__wrapper {
   flex-direction: column;
   width: 1151px;
   min-width: 0;
}

.reviews__title_block {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
   margin-left: 0px;
}

.review__text {
   margin-left: 20px;
   font-size: 24px;
}

/* Slider styles start */

.slider {
   width: 100%;
   min-width: 0;
   position: relative;
}

.slide {
   width: 536px;
   margin: 0 20px;
   display: flex !important;
   flex-direction: column;
   padding: 30px 70px 24px 30px;
   background: #fdfdfd;
   border: 1px solid #e4e1ea;
   border-radius: 20px;
}

.slider .slick-arrow {
   font-size: 0;
   position: absolute;
   border: none;
   top: 40%;
}

.slider .slick-next {
   width: 40px;
   height: 40px;
   background: url(../img/slider-next-btn.svg);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   right: -70px;
}

.slider .slick-next:hover {
   background: url(../img/slider-next-hover.svg);
}

.slider .slick-prev {
   width: 40px;
   height: 40px;
   background: url(../img/slider-prev-btn2.svg);
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   left: -70px;
}

.slider .slick-prev:hover {
   background: url(../img/slider-hover-btn.svg);
}

.review {
   width: 436px;
   font-size: 16px;
   line-height: 150%;
   color: #374151;
}

.reviewer__info {
   width: 200px;
   display: flex;
   margin-bottom: 20px;
}

.reviewer {
   margin-left: 12px;
   margin-top: 8.5px;
}

.reviewer__status {
   color: #6d7280;
   font-size: 15px;
}

.reviewer__name {
   font-weight: 600;
   color: #111827;
   display: block;
   margin-bottom: 6px;
}

/* Slider styles end */

/* Reviews styles end */

/* Call styles start */

.call {
   display: flex;
   justify-content: center;
   background: url(../img/about-bg.webp);
   padding-top: 147px;
   padding-bottom: 121px;
}

.call__wrapper {
   width: 1086px;
   justify-content: space-between;
}

.call__block_name {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
}

.call__block_name2 {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
}

.extra__call {
   font-size: 24px;
   color: #fff;
   text-transform: uppercase;
   margin-left: 20px;
   display: block;
}

.call__title {
   font-weight: 400;
   font-size: 56px;
   color: #fff;
   margin-bottom: 25px;
}

.call__text {
   width: 488px;
   margin-bottom: 96px;
   font-size: 20px;
   line-height: 140%;
   color: #fff;
}

.call__pic_block {
   display: flex;
   align-items: center;
}

.white__checkmark {
   margin-left: 10px;
}

/* Call styles end */

/* Questions styles start */

.questions {
   display: flex;
   justify-content: center;
   padding-top: 137px;
   padding-bottom: 105px;
   background: #f5f5f5;
}

.questions__wrapper {
   width: 946px;
}

.question__mark {
}

.questions__block_name {
   display: flex;
   align-items: center;
   margin-bottom: 70px;
}

.question__block_about {
   font-size: 36px;
   margin-left: 20px;
}

.questions__menu_block {
   width: 100%;
   
}

.question__item {
   display: flex;
   justify-content: space-between;
   padding-top: 37px;
   padding-bottom: 38px;
   padding-right: 46px;
   padding-left: 36px;
   background: #fff;
   margin-bottom: 25px;
   box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.03);
   border-radius: 12px;
    cursor:pointer;
}

.question__text_block {
   width: 821px;
}

.question__title {
   font-weight: 500;
   font-size: 18px;
}

.question__text {
   transition: all 0.2s;
   height: 0;
   overflow: hidden;
   font-size: 0;
   color: #727272;
   padding-left: 19px;
   border-left: 2px solid #5d14cd;
}

.question__text.active {
   overflow: hidden;
   height: auto;
   margin-top: 44px;
   font-size: 16px;
}

.purple__plus {
   transition: 0.2s;
}

.purple__plus_wrapper {
   display: flex;
   align-items: center;
}

.purple__plus_wrapper.active {
   align-items: flex-start;
}

.purple__plus.active {
   transform: rotate(45deg);
}

/* Questions styles end */

/* Prices styles start */

.prices {
   display: flex;
   justify-content: center;
   padding-top: 147px;
   padding-bottom: 283px;
}

.prices__wrapper {
   width: 932px;
   flex-direction: column;
}

.prices__block_name {
   display: flex;
   align-items: center;
   margin-bottom: 100px;
}

.price__text {
   font-size: 36px;
   margin-left: 16px;
}

.prices__block {
   display: flex;
   justify-content: space-between;
}

.price__block {
   display: flex;
   margin-bottom: 24px;
}

.service__name {
   font-size: 18px;
   color: #202020;
   margin-left: 7px;
}

.service__price {
   font-weight: 600;
}

.gold__circle {
   width: 20px;
   height: 20px;
}

/* Prices styles end */

/* Form styles start */

.form {
   display: flex;
   justify-content: center;
   background: #f7f9fc;
   padding-top: 212px;
   padding-bottom: 145px;
}

.form__wrapper {
   width: 1220px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 20px;
}

.form__text_block {
   width: 485px;
   margin-right: 5px;
}

.form__title {
   width: 466px;
   font-weight: 700;
   font-size: 48px;
   color: #211f54;
   margin-bottom: 8px;
}

.form__subtitle {
   width: 472px;
   color: #6e7191;
   font-size: 21px;
   margin-bottom: 12px;
}

.form__call_block {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
}

.form__call_info {
   margin-left: 5px;
}

.form__call_text {
   color: #6e7191;
}

.form__number {
   color: #211f54;
   font-weight: 700;
   font-size: 28px;
}

.line {
   width: 100%;
   height: 1px;
   background: #dcddeb;
}

.form__extra_title {
   font-weight: 700;
   font-size: 28px;
   color: #211f54;
   margin-top: 55px;
   margin-bottom: 9px;
}

.form__extra_text {
   width: 401px;
   color: #6e7191;
   font-size: 21px;
   margin-bottom: 10px;
}

.form__btn {
   width: 257px;
   height: 73px;
   color: #211f54;
   font-weight: 700;
   font-size: 18px;
   background: #ffffff;
   border: 1px solid #eff0f6;
   box-shadow: 0px 4px 10px rgba(20, 20, 43, 0.04);
   border-radius: 14px;
}

.form__info_block {
   width: 55.2%;
   background: #ffffff;
   border: 1px solid #eff0f6;
   box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
   border-radius: 16px;
   padding: 85px 61px 42px;
}

.form__input_wrapper {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.form__input_info {
   font-size: 18px;
   color: #211f54;
   margin-bottom: 12px;
}

.form__input_block {
   margin-bottom: 32px;
}

.form__input_block2 {
   width: 100%;
}

.form__input2 {
   width: 100% !important;
   height: 144px !important;
}

.form__input {
   width: 259px;
   height: 50px;
   padding: 15px;
   background: #ffffff;
   border: 1px solid #eff0f6;
   box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
   border-radius: 16px;
}

.submit__btn {
   background: #8148d8;
   border-radius: 14px;
   width: 219px;
   border: none;
   color: #fff;
   font-size: 18px;
   height: 72px;
   margin-top: 10px;
   margin-bottom: 43px;
}

/* Form styles end */

/* Footer styles start */

footer {
   display: flex;
   justify-content: center;
   background: #f8f8f8;
   padding-top: 50px;
   padding-bottom: 50px;
}

.footer__wrapper {
   width: 1200px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 20px;
}

.footer__logo {
}

.footer__info {
   width: 170px;
   font-weight: 300;
   font-size: 12px;
   margin-top: 32px;
   color: #6446a5;
}

.footer__info2 {
   display: none;
   width: 170px;
   font-weight: 300;
   font-size: 12px;
   margin-top: 32px;
   color: #6446a5;
}

.footer__links {
   display: flex;
   flex-direction: column;
}

.footer__link {
   font-size: 14px;
   color: #240071;
   margin-bottom: 12px;
}

.email__address {
   font-size: 38px;
   color: #240071;
   margin-bottom: 12px;
}

.address {
   color: #240071;
}

.footer__number {
   font-size: 16px;
   font-weight: 400;
}

/* Footer styles end */
        
/* Adaptive styles start */

@media screen and (max-width: 1337px) {
   .header__wrapper {
      width: 97%;
   }
   .slider .slick-arrow {
      top: 115%;
   }
   .slider .slick-next {
      right: 285px;
   }
   .slider .slick-prev {
      left: 300px;
   }
   .form__input_wrapper {
      justify-content: center;
   }
}

@media screen and (max-width: 1155px) {
   .main__pic_block {
      display: flex;
      justify-content: end;
   }
   .main__pic_wrapper {
      width: 75%;
   }
   .circle {
      top: 34%;
      left: 56%;
   }
   .guarantees__pic_block {
      width: 46%;
   }
   .guarantees {
      padding-top: 70px;
      padding-bottom: 70px;
   }
   .cards__slider .slick-arrow {
      top: 132%;
   }
   .cards__slider .slick-prev {
      left: 250px;
   }
   .cards__slider .slick-next {
      right: 250px;
   }
   .review {
      width: auto;
   }
   .services__block {
      background: #fff;
      border-radius: 20px;
      margin: 0 22px;
   }
   .nav__item {
      margin-left: 45px;
   }
}

@media screen and (max-width: 997px) {
   .nav__item {
      margin-left: 25px;
   }
   .call__block {
      justify-content: flex-end;
   }
   .phone__number {
      font-size: 16px;
   }
   .header__phone {
      width: 25%;
   }
   .main__text {
      font-size: 20px;
   }
   .main__title {
      font-size: 46px;
   }
   .header__shield_icon {
      width: 50px;
   }
   .circle {
      top: 41%;
      left: 25%;
   }
   .guarantees__wrapper {
      flex-direction: column;
   }
   .guarantees__pic_block {
      width: 60%;
   }
   .about__title {
      font-size: 34px;
   }
   .about__text {
      font-size: 16px;
   }
   .about__pic_block {
      justify-content: end;
   }
   .call__text {
      font-size: 18px;
      width: 434px;
   }
   .call__title {
      font-size: 50px;
   }
   .questions__wrapper {
      width: 96%;
   }
   .reviews {
      padding-top: 70px;
      padding-bottom: 140px;
   }
   .cards__slider .slick-arrow {
      top: 125%;
   }
   .services {
      padding-bottom: 155px;
   }
   .form__title {
      font-size: 38px;
   }
   .form__subtitle {
      font-size: 18px;
   }
   .form__wrapper {
      flex-direction: column;
      align-items: center;
   }
   .form__text_block {
      margin-bottom: 75px;
      margin-right: 0;
   }
   .form__info_block {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-bottom: 32px;
   }
   .form {
      padding-top: 74px;
      padding-bottom: 77px;
   }
   .submit__btn {
      margin-bottom: 0;
      margin-top: 0;
   }
   .form__input {
      width: 100%;
   }
   .form__input_wrapper {
      flex-direction: column;
   }
}

@media screen and (max-width: 765px) {
   .nav__menu {
      display: none;
   }
   .call__block {
      display: none;
   }
   .burger__icon_block {
      display: block;
   }
   .burger__menu {
      display: block;
   }
   header {
      padding-top: 20px;
   }
   .main__btn {
      display: none;
   }
   .main__btn2 {
      display: flex !important;
      justify-content: center;
      align-items: center;
      margin-top: 70px;
   }
   .main__pic_block {
      justify-content: center;
   }
   .circle {
      top: 34%;
      left: 48%;
   }
   .swipe__icon_wrapper {
      display: none;
   }
   .main__wrapper {
      flex-direction: column;
      margin-bottom: 16px;
      padding-top: 40px;
   }
   .main__text {
      font-size: 18px;
   }
   .main__title {
      font-size: 32px;
   }
   .guarantees__pic_block {
      display: none;
   }
   .guarantees__titles_block {
      margin-bottom: 80px;
   }
   .guarantees__subtitle {
      text-align: center;
      font-size: 18px;
   }
   .guarantees_title {
      text-align: center;
      font-size: 34px;
   }
   .order__title {
      font-size: 32px;
   }
   .order__text {
      font-size: 18px;
   }
   .order {
      padding-top: 70px;
      padding-bottom: 70px;
   }
   .about__wrapper {
      flex-direction: column-reverse;
   }
   .about__pic_block {
      justify-content: center;
   }
   .about__title {
      font-size: 30px;
      text-align: center;
      width: auto;
      margin-bottom: 20px;
   }
   .about__pic {
      width: 60%;
   }
   .about {
      padding-top: 36px;
      padding-bottom: 54px;
   }
   .about__us {
      display: none;
   }
   .about__us2 {
      display: flex;
   }
   .about__text_block {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
   }
   .about__text {
      text-align: center;
      width: auto;
   }
   .call__text {
      font-size: 18px;
      width: 434px;
      text-align: center;
      margin-bottom: 0;
   }
   .call__title {
      font-size: 40px;
      text-align: center;
   }
   .call__wrapper {
      flex-direction: column;
      align-items: center;
   }
   .call__text_block {
      margin-bottom: 19px;
      display: flex;
      flex-direction: column;
   }
   .call {
      padding-top: 70px;
      padding-bottom: 75px;
   }
   .about__btn {
      display: none;
   }
   .about__btn2 {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 38px;
   }
   .questions {
      padding-top: 70px;
      padding-bottom: 60px;
   }
   .service__name {
   }
   .prices__block {
      flex-wrap: wrap;
   }
   .prices {
      padding-top: 70px;
      padding-bottom: 49px;
   }
   .footer__wrapper {
      flex-direction: column;
      align-items: center;
   }
   .footer__logo_block {
      text-align: center;
      margin-bottom: 17px;
   }
   .footer__links {
      text-align: center;
      margin-bottom: 30px;
   }
   .address__block {
      text-align: center;
      margin-bottom: 30px;
   }
   .footer__info {
      display: none;
   }
   .footer__info2 {
      display: block;
      text-align: center;
   }
   .slider .slick-prev {
      left: 175px;
   }
   .slider .slick-next {
      right: 175px;
   }
   .hours__icon {
      display: block;
   }
   .cards__slider .slick-next {
      right: 130px;
   }
   .cards__slider .slick-prev {
      left: 130px;
   }
   .services {
      padding-top: 131px;
      padding-bottom: 179px;
   }
   .burger__wrapper {
      display: flex;
      align-items: center;
   }
   .form__wrapper {
   }
   .form__subtitle {
      width: auto;
   }
   .form__title {
      width: auto;
      font-size: 32px;
   }
   .form__extra_text {
      width: auto;
   }
   .form__text_block {
      width: auto;
   }
   .order__text_block {
      margin-left: 15px;
   }
   .header__benefits_block {
      display: block;
   }
   .header__shield_icon {
      display: none;
   }
   .benefits__item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
   }
   .benefits__text {
      margin-left: 15px;
   }
   .main__subtitle_block {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 0;
   }
   .main__subtitle_block {
      margin-bottom: -15px;
   }
   .benefits__text {
      font-weight: 500;
      font-size: 20px;
   }
   .main__title {
      margin-bottom: 16px;
   }
   .main__text {
      margin-left: 0;
      margin-bottom: 23px;
   }
   .main__btn2 {
      margin-top: -50px;
      position: relative;
      z-index: 0;
      margin-bottom: 20px;
   }
   .mobile__btns_block {
      display: flex;
      position: fixed;
      bottom: 5px;
      z-index: 999;
   }
   .up__btn {
      display: none;
   }
   .click__call_link {
      display: none;
   }
   .main__wrapper {
      margin-bottom: 0;
   }
}

@media screen and (max-width: 479px) {
   .order__text {
      width: auto;
   }
   .form__info_block {
      padding: 15px 61px 15px;
   }
   .main__text {
      font-size: 18px;
   }
   .main__title {
      font-size: 26px;
   }
   .main__pic_wrapper {
      width: auto;
      display: flex;
      justify-content: center;
   }
   .tap__water {
      width: 100%;
   }
   .guarantees_title {
      font-size: 26px;
   }
   .guarantees__subtitle {
      font-size: 16px;
   }
   .guarantees__block {
      flex-direction: column;
      align-items: center;
   }
   .shield__icon_wrapper {
      margin-right: 0;
      margin-bottom: 30px;
   }
   .guarantees__text_block {
      display: flex;
      flex-direction: column;
      align-items: center;
   }
   .guarantees__block_text {
      text-align: center;
   }
   .guarantees__block_title {
      text-align: center;
      font-size: 16px;
   }
   .guarantees__block_text {
      text-align: center;
      font-size: 16px;
   }
   .guarantees__block {
      margin-bottom: 30px;
   }
   .guarantees__titles_block {
      margin-bottom: 30px;
   }
   .order__title {
      font-size: 26px;
   }
   .order__text {
      font-size: 16px;
   }
   .order__text_block {
      margin-bottom: 16px;
      margin-left: 15px;
   }
   .order__wrapper {
      height: 429px;
   }
   .about__title {
      font-size: 26px;
   }
   .call__text {
      width: auto;
   }
   .call__title {
      font-size: 28px;
   }
   .slider .slick-arrow {
      width: 69px;
      height: 69px;
   }
   .slider .slick-prev {
      background: url(../img/slider-purple-btnprev.svg);
      left: 75px;
   }
   .slider .slick-prev:hover {
      background: url(../img/slider-purple-btnprev.svg);
   }
   .slider .slick-next {
      background: url(../img/slider-purple-btn.svg);
      transform: rotate(180deg);
      right: 75px;
   }
   .slider .slick-next:hover {
      background: url(../img/slider-purple-btn.svg);
      transform: rotate(180deg);
   }
   .slider .slick-arrow {
      top: 110%;
   }
   .cards__slider .slick-arrow {
      width: 69px;
      height: 69px;
   }
   .cards__slider .slick-prev {
      background: url(../img/slider-purple-btn.svg);
      left: 25px;
   }
   .cards__slider .slick-next {
      background: url(../img/slider-purple-btn.svg);
      transform: rotate(180deg);
      right: 25px;
   }
   .form__title {
      font-size: 28px;
   }
   .form__info_block {
      padding-left: 20px;
      padding-right: 20px;
   }
   .order__text_block {
      padding-top: 205px;
   }
   .slick-arrow {
      margin-top: -30px;
   }
}

@media screen and (max-width: 375px) {
   .modal__block {
      display: flex;
   }
   .service__title_block {
      margin: -78px 0 40px 3px;
   }
}

.popup_fade {
	display: none;
}
.popup_fade:before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.7;
	z-index: 9999;
}
.popup {
	position: fixed;
	top: 20%;
	left: 50%;
	padding: 20px;
	width: 360px;
	margin-left: -200px;	
	background: #fff;
	border: 1px solid #8148d8;
	border-radius: 4px; 
	z-index: 99999;
	opacity: 1;	
}
.popup_close {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

/* Adaptive styles start */
