@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: Roboto;
  overflow-x: hidden;
  background: #F0F0F0;
  -webkit-box-shadow: 0px 3px 35px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 35px rgba(0, 0, 0, 0.25);
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
  color: inherit;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.body__active {
  overflow: hidden;
}

.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px 0 15px;
}

.phone__pulse {
  position: fixed;
  bottom: 10px;
  right: 15px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pulse-phone 2s infinite;
          animation: pulse-phone 2s infinite;
  width: 46px;
  height: 46px;
  z-index: 2;
  display: none;
}

@-webkit-keyframes pulse-phone {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
            box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
    border-radius: 50%;
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(68, 201, 116, 0.25);
            box-shadow: 0 0 0 10px rgba(68, 201, 116, 0.25);
    border-radius: 50%;
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
            box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
    border-radius: 100%;
  }
}

@keyframes pulse-phone {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
            box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
    border-radius: 50%;
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(68, 201, 116, 0.25);
            box-shadow: 0 0 0 10px rgba(68, 201, 116, 0.25);
    border-radius: 50%;
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
            box-shadow: 0 0 0 0 rgba(68, 201, 116, 0.25);
    border-radius: 100%;
  }
}
.d-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 147px;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 15px 0 15px;
}
.header .logo {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 52px;
  line-height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
  color: #16272F;
}
.header .logo__png {
  width: 44px;
  height: 44px;
  margin-right: 9px;
}
.header .logo__mobile__png {
  display: none;
}
.header .number {
  font-size: 18px;
  font-weight: bold;
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #5A5A5A;
  margin-right: 245px;
}

.menu__ul {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  margin-right: 10px;
}

.menu__list {
  margin: 35px 50px 0 0;
  position: relative;
}

.animate__link {
  text-decoration: none;
  color: inherit;
}

.animate__link:after {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF750A;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  max-width: 100%;
}

.animate__link:hover:after,
.animate__link:focus:after {
  width: 100%;
}

.block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  color: #747474;
}

.vector__bg {
  width: 48px;
  height: 48px;
  background: #ebddcd;
  border-radius: 50%;
  padding: 14px;
  margin-right: 18px;
}

.vector {
  width: 20px;
  height: 20px;
}

/* header mobile */
.navigation {
  display: none;
}

.background {
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.background .logo__burger__png {
  width: 35px;
  height: 29px;
  margin: 15px auto;
}

.menu__mobile {
  margin-top: 70px;
}

.menu__mobile__list {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 144.69%;
  padding-bottom: 38px;
  margin: 12px 15px;
}
.menu__mobile__list:hover:after {
  position: absolute;
  content: url(../img/icon/arrows.png);
  right: 10px;
}

.background.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.burger {
  position: absolute;
  right: 15px;
  top: 35px;
  width: 22px;
  height: 16px;
  cursor: pointer;
  z-index: 5;
}

.burger span, .burger span:before, .burger span:after {
  width: 100%;
  position: absolute;
  height: 3px;
  background: #000;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}

.burger span:before {
  content: "";
  top: -8px;
  -webkit-transition: top 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.burger span {
  top: 6px;
}

.burger span:after {
  content: "";
  bottom: -8px;
  -webkit-transition: bottom 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.burger span.active:before {
  border: none;
  background-color: #CACACA;
  content: "";
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger span.active:after {
  border: none;
  background-color: #CACACA;
  content: "";
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: bottom 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: bottom 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: bottom 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger span.active {
  background: rgba(255, 255, 255, 0);
}

.section__one {
  max-width: 1920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.block__left {
  padding: 140px 79px 223px 68px;
  max-width: 45%;
  background: #16272F;
}

.title {
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 75px;
  color: #FFFFFF;
}

.text {
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F8F8F8;
  margin-top: 35px;
}

.btn {
  text-decoration: none;
  margin-top: 35px;
  width: 210px;
  height: 55px;
  background: #FF750A;
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 8px 41px;
}
.btn .d-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn .icon__phone {
  width: 16px;
  height: 16px;
  top: 8px;
  left: 41px;
}
.btn .text__btn {
  position: absolute;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 151px;
}

.block__right {
  background: url("../img/images/repeat.png");
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  position: absolute;
}

.section__two {
  max-width: 1280px;
  padding-top: 95px;
  padding-bottom: 45px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section__two .d-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section__two__img1 {
  width: 415px;
  height: 351px;
  background: url("../img/images/1.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.section__two__img2 {
  width: 370px;
  height: 315px;
  border: 14px solid #fff;
  margin-top: -143px;
  background: url("../img/images/one.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.section__two .block__24 {
  font-style: normal;
  font-weight: 500;
  font-size: 54px;
  line-height: 63px;
  color: #FFFFFF;
  background: #FF750A;
  padding: 54px 68px;
  height: 100%;
}

.section__two__img {
  max-width: 50%;
}

.section__two__block {
  max-width: 50%;
}

.section__title {
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  color: #000000;
}

.section__text {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  color: #707070;
  max-width: 526px;
  padding: 86px 0 0 95px;
}

.section__box {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  color: #000000;
  margin-top: 40px;
  padding-left: 130px;
  position: relative;
}
.section__box:before {
  content: url("../img/icon/icon.png");
  top: -10px;
  padding-top: 5px;
  margin-left: -40px;
  position: absolute;
}

.section__three {
  max-width: 1280px;
  margin: 130px auto 0 auto;
}
.section__three .section__title {
  text-align: center;
}
.section__three .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 70px 1fr 70px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  margin-top: 80px;
  margin-bottom: 40px;
}
.section__three .box {
  background: #fff;
  padding: 40px 28px;
}
.section__three .icon__wrench {
  width: 89px;
  height: 89px;
  margin: 0 auto;
}
.section__three .subtitle__box {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
  margin-top: 68px;
}
.section__three .text__box {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #646464;
  margin-top: 12px;
}

.section__five {
  max-width: 1280px;
  margin: 80px auto 0 auto;
  padding: 140px 0;
}
.section__five .section__title {
  font-family: Open Sans;
  font-size: 52px;
  margin-left: 30px;
}
.section__five .reviews {
  margin: 0 auto;
}
.section__five .slick-arrow {
  display: none !important;
}
.section__five .block__reviews {
  margin: 70px 50px 0 50px;
  padding: 60px 60px 72px 60px;
  max-width: 537px;
  min-height: 276px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.05), inset 0px 0px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.05), inset 0px 0px 2px rgba(0, 0, 0, 0.25);
}
.section__five .author__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section__five .author {
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  border-bottom: 2px solid #FF750A;
  color: #040404;
  opacity: 0.8;
}
.section__five .icon__reviews {
  width: 120px;
  height: 19.02px;
}
.section__five .text__reviews {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  margin-top: 55px;
}

.footer {
  font-family: Roboto;
  height: 200px;
  padding-bottom: 10px;
  background-color: #F0F0F0;
}

.style__footer {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block__footer {
  width: 330px;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  color: #4A4A4A;
  margin-top: 77px;
  height: 41px;
}

.block__mobile__footer {
  line-height: 130%;
  text-align: center;
  color: #2E2E2E;
  width: 300px;
  margin: 25px auto;
  display: none;
}

.number__footer {
  font-size: 20px;
  line-height: 23px;
  color: #4A4A4A;
}

.icon__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 15px;
  bottom: -40px;
}
.icon__socials {
  margin-left: 30px;
}

.mobile__hr {
  display: none;
}

/* mobile */
@media screen and (max-width: 1440px) {
  .header .number {
    margin-right: 0;
  }

  .menu__list {
    margin: 38px 0 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header .logo {
    font-size: 24px;
  }
  .header .logo__png {
    width: 25px;
    height: 34px;
  }

  .menu__list {
    margin: 38px 0 0 10px;
    font-size: 14px;
  }

  .vector {
    height: 15px;
  }
  .vector__bg {
    margin-right: 5px;
    width: 40px;
    height: 40px;
  }

  .ellipse, .ellipse1 {
    top: 350px;
  }

  .block__left {
    padding: 100px 30px 100px 30px;
  }

  .title {
    font-size: 40px;
    line-height: 60px;
  }

  .text {
    font-size: 18px;
  }

  .section__two {
    display: block;
    max-width: 600px;
  }
  .section__two .block__24 {
    text-align: center;
  }
  .section__two .d-f {
    display: block;
  }
  .section__two__img1 {
    width: 100%;
  }
  .section__two__img2 {
    width: 100%;
    margin-top: 0;
    border: none;
  }
  .section__two__block {
    max-width: 100%;
  }

  .section__three .wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 0 16px;
  }

  .section__five .block__reviews {
    max-width: 100%;
  }

  .footer {
    height: auto;
  }

  .block__footer {
    margin: 33px auto;
    text-align: left !important;
  }

  .icon__social {
    bottom: inherit;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0;
    height: 80px;
    background: #F0F0F0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
  }

  .header .logo {
    margin: 10px 15px;
  }
  .header .logo__png {
    display: none;
  }
  .header .logo__mobile__png {
    display: block;
  }

  .block {
    display: none;
  }

  .menu__ul, .header .number {
    display: none;
  }

  .navigation {
    display: block;
  }

  .section__one {
    display: block;
  }

  .block__left {
    max-width: 100%;
    padding: 173px 24px 0 24px;
    min-height: 730px;
  }

  .title {
    text-align: center;
    font-size: 28px;
    line-height: 33px;
  }

  .text {
    text-align: center;
    font-size: 17px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .btn {
    margin: 99px auto;
  }

  .block__right {
    max-width: 100%;
    height: 227px;
    position: static;
    margin: -227px auto 0 auto;
  }

  .section__three .wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 0 16px;
    margin-top: 50px;
  }

  .section__five .block__reviews {
    margin: 70px 16px 0 16px;
  }

  .section__five {
    margin: 0 auto;
    padding: 100px 0;
  }

  .section__title {
    padding: 40px 0 0 32px;
    font-weight: bold;
    font-size: 28px;
    line-height: 33px;
    text-align: center;
    color: #000000;
  }
  .section__five .section__title {
    font-size: 28px;
    padding: 0;
  }

  .section__text {
    padding: 25px 32px 0 32px;
  }

  .section__box {
    padding-left: 70px;
  }

  .section__three {
    margin: 50px auto 0 auto;
  }

  .block__footer {
    text-align: center !important;
  }

  .footer1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer2 {
    padding-top: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .number__footer {
    font-weight: 700;
  }

  .icon__social {
    bottom: inherit;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    margin-top: 10px;
  }

  .mobile__hr {
    display: block;
    margin-top: 60px;
  }
}
@media screen and (max-width: 425px) {
  .btn {
    margin: 40px auto;
  }

  .footer1 {
    padding: 50px 0;
  }

  .footer2 {
    padding-top: 50px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}