body {
  position: relative;
  font-family: 'GigaSans', sans-serif;
  font-weight: 400;
  line-height: 1.3;
  min-height: 100vh;
  color: #353232;
}

.body--active {
  overflow: hidden;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: #EB464A;
  padding: 15px 25px;
  min-width: 209px;
  min-height: 50px;
  border-radius: 8px;
  border: 5px;
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.button:hover {
  background: #F67D80;
}

.button:focus {
  outline: none;
}

h1 {
  position: relative;
  font-family: inherit;
  font-size: 40px;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 30px;
}

h2 {
  position: relative;
  font-family: inherit;
  font-size: 30px;
  font-weight: 600;
  line-height: 130%;
  color: #000;
  margin-bottom: 40px;
}

ul {
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

.green {
  color: #EB464A;
}

a {
  color: #000;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

a:hover {
  text-decoration: none;
  color: #EB464A;
}

a:focus {
  outline: none;
}

svg {
  width: 50px;
  height: 50px;
}

.modal {
  cursor: pointer;
  outline: 0;
}

.modal-dialog-centered::before {
  display: none;
}

.modal-backdrop {
  background: #000000;
  opacity: .75;
}

.modal-dialog {
  
}

.modal-content {
  max-width: 495px;
  padding: 40px;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
  border: 0;
  border-radius: 6px;
  cursor: initial;
}

.modal-content .form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  margin: 0 auto;
  margin-bottom: 20px;
}

.modal-content .form .input {
  width: 100%;
  max-width: 100%;
  background: #fff;
}

.form__warning {
  font-size: 10px;
  color: #424242;
  line-height: 130%;
}

.modal-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.modal-body {
  padding: 0;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.modal__title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 110%;
  padding-left: 0;
  margin-bottom: 20px;
}

.modal-order-title {
  font-size: 25px;
  margin-bottom: 20px;
}

.modal-order-text {
  padding: 15px;
  background: #F7F7F7;
  border-radius: 20px;
  margin-bottom: 30px;
}

#modal-order .modal__title {
  font-size: 16px;
}

.modal__subtitle {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 50px;
}

.modal__subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.171);
}

.modal-subtitle {
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
}

.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 50%;
  background: #EB464A;
}

.modal-close svg {
  position: absolute;
  fill: #fff;
  width: 12px;
  height: 12px;
  margin-right: 0;
  opacity: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.modal-close svg:hover {
  opacity: 1;
}

.modal__button {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 30px;
}



form .input-wrapper {
  margin-bottom: 15px;
}

form input,
form textarea {
  padding: 15px;
  width: 100%;
  border: 0;
  background: #F7F7F7;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  transition: .2s;
}

.header--active{
    background: #fff;
    box-shadow: 0px 3px 11px rgba(125, 100, 100, 0.1);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  margin-right: 170px;
  min-width: auto;
}

.logo__img {
  position: relative;
  display: block;
  margin-right: 10px;
}

.logo__img img {
  width: 60px;
}

.logo__name {
  position: relative;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.logo__description {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
}

.menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__item {
  position: relative;
  margin-right: 60px;
}

.menu__item:last-child {
  margin-right: 0;
}

.menu__link {
  font-size: 16px;
  font-weight: 600;
  color: #353232;
  padding: 5px 0;
}

.sub-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 230px;
  padding: 15px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 15px 0 #0000001f;
          box-shadow: 0 5px 15px 0 #0000001f;
  z-index: 10;
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  visibility: hidden;
}

.sub-menu__link {
  display: block;
  padding: 5px;
}

.menu__item:hover .sub-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

.burger {
  position: relative;
  display: none;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.phone__icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.phone__number {
  display: block;
  font-weight: 600;
  color: #EB464A;
  text-align: right;
}

.body-overflow {
  overflow: hidden;
}

.red {
  color: #EB464A;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.main-screen {
  position: relative;
  overflow: hidden;
  padding-top: 250px;
  padding-bottom: 150px;
}

.main-screen .overflow-element {
  position: absolute;
  bottom: 0;
}

.main-screen__col-inner {
  position: relative;
}

.main-screen__overhead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.main-screen__subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 70px;
}

.main-screen__subtitle .red {
  font-weight: 600;
}

.main-screen__img {
  position: absolute;
  top: -120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.overflow-element {
  position: relative;
}

.advantages {
  position: relative;
  padding: 50px 0;
  padding-bottom: 30px;
}

.advantages__col:last-child .advantage__value::before {
  display: none;
}

.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.advantage__value {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #FFEFEF;
  -webkit-box-shadow: 0px 3px 11px rgba(125, 100, 100, 0.1);
          box-shadow: 0px 3px 11px rgba(125, 100, 100, 0.1);
  margin-bottom: 30px;
}

.advantage__value::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 145px;
  width: 130px;
  height: 2px;
  background: #EB464A;
}

.advantage__value-num {
  font-size: 40px;
  font-weight: 700;
  color: #EB464A;
}

.advantage__text {
  font-size: 20px;
  font-weight: 600;
}

.why {
  padding: 100px 0;
  padding-bottom: 120px;
}

.why__row {
  margin-bottom: -30px;
}

.why__col {
  margin-bottom: 30px;
}

.reason {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 170px;
  padding: 30px;
  background: #F7F7F7;
  -webkit-box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
          box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
  border-radius: 2px;
}

.reason__text {
  max-width: 70%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}

.reason__text-title {
  font-size: 20px;
  font-weight: 600;
  color: #EB464A;
  margin-bottom: 15px;
}

.reason__text-descr {
  font-size: 16px;
  font-weight: 400;
}

.reason__img {
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 30px;
  top: 0;
}

.services {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 160px;
}

.services__inner .side-b .service .service__title {
  padding-left: 0;
  padding-right: 30px;
}

.services__inner .side-b .service .service__icon {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.services .overlay-element {
  position: absolute;
  top: 0;
}

.services .overlay-element-2 {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}

.services__title {
  top: -100px;
  margin-bottom: 10px;
}

.services__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.services__img-item {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.service {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  background: -o-linear-gradient(356.02deg, #4A68B6 35.38%, #7189E1 78.81%);
  background: linear-gradient(93.98deg, #4A68B6 35.38%, #7189E1 78.81%);
  -webkit-box-shadow: inset -3px -4px 4px rgba(255, 255, 255, 0.25), inset 5px 2px 4px rgba(255, 255, 255, 0.32);
          box-shadow: inset -3px -4px 4px rgba(255, 255, 255, 0.25), inset 5px 2px 4px rgba(255, 255, 255, 0.32);
  border-radius: 86px;
  margin-bottom: 50px;
}

.service:last-child {
  margin-bottom: 0;
}

.service__title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding-left: 30px;
}

.service__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #fff;
}

.overlay-element {
  position: relative;
}

.price {
  padding: 100px 0;
}

.price-menu {
  height: 100%;
}

.price-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #BEBEBE;
  border-radius: 6px;
  height: 100%;
}

.price-menu__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 30px;
  border-radius: 5px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.price-menu__item-inner:hover {
  background: #EB464A;
}

.price-menu__item-inner:hover .price-menu__icon svg {
  stroke: #fff;
}

.price-menu__item-inner:hover .price-menu__name {
  font-weight: 500;
  color: #fff;
}

.price-menu__icon {
  margin-right: 20px;
}

.price-menu__icon svg {
  stroke: #000;
  width: 32px;
  height: 32px;
}

.price-menu__name {
  font-size: 20px;
  font-weight: 400;
}

.price-menu__item-inner--active {
  background: #EB464A;
}

.price-menu__item-inner--active .price-menu__icon svg {
  stroke: #fff;
}

.price-menu__item-inner--active .price-menu__name {
  font-weight: 500;
  color: #fff;
}

.price-content-wrapper {
  margin-bottom: -15px;
}

.price-content {
  position: relative;
  display: none;
  min-height: 495px;
}

.price-content--active {
  display: block;
  -webkit-animation: show .2s linear;
          animation: show .2s linear;
}

.price-box {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin: -15px;
}

.price-box--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show .2s linear;
          animation: show .2s linear;
}

.price-box__item {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 15px;
}

.price-box__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
  min-height: 135px;
  background: #F7F7F7;
  -webkit-box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
          box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
  border-radius: 2px;
}

.price-box__item-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 600;
  margin-bottom: 25px;
}

.price-box__item-price {
  font-weight: 600;
  color: #EB464A;
}

.price-nav {
  position: absolute;
  right: 15px;
  bottom: -70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.price-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 43px;
  height: 43px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
          box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  border: 0;
}

.price-nav__btn:hover {
  background: #FEDEDE;
}

.price-nav__btn:disabled {
  opacity: 1;
}

.price-nav__btn:focus {
  outline: 0;
}

.price-nav__btn svg {
  width: 6px;
  height: 9px;
}

.price-nav__btn-left {
  margin-right: 15px;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.works {
  padding-bottom: 100px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
}

.slider {
  position: relative;
  margin-bottom: 30px;
}

.slider__container {
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
}

.swiper-wrapper {
  margin: 0 auto;
}

.slide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slide__img-box {
  position: relative;
  overflow: hidden;
  max-width: 555px;
  width: 100%;
  height: 373px;
}

.slide__img {
  position: absolute;
  top: 0;
  left: 0;
}

.slide__text-content {
  padding-left: 75px;
}

.slide__list {
  margin-bottom: -30px;
}

.slide__item {
  margin-bottom: 30px;
}

.slide__item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.slide .red {
  font-weight: 600;
}

.slider-nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.slider-nav__btn {
  cursor: pointer;
}

.slider-nav__btn:focus {
  outline: none;
}

.slider-nav__btn-icon {
  width: 15px;
  height: 27px;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 24px;
  background: #D3DADD;
  margin-right: 8px;
  opacity: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.swiper-pagination-bullet-active {
  background: #EB464A;
}

.footer {
  position: relative;
  padding: 100px 0;
  padding-top: 150px;
  overflow: hidden;
}

.footer .section-bg {
  top: -50%;
}

.footer .overlay-element {
  position: absolute;
  top: 0;
  left: 0;
}

.contacts__info {
  margin-bottom: 40px;
}

.contacts__info:last-child {
  margin-bottom: 0;
}

.contacts__key {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contacts__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__value svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
}

.form-container__title {
  margin-bottom: 20px;
}

.form-container__subtitle {
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}

.form-container .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  width: 100%;
}

.input-wrapper {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

.input-wrapper:last-child {
  margin-bottom: 0;
}

.input {
  padding: 19px 30px;
  font-weight: 600;
  color: #353232;
  background: #fff;
  border: 1px solid #D8DFE1;
  border-radius: 6px;
}

.input::-webkit-input-placeholder {
  font-weight: 600;
  color: #353232;
}

.input::-moz-placeholder {
  font-weight: 600;
  color: #353232;
}

.input:-ms-input-placeholder {
  font-weight: 600;
  color: #353232;
}

.input::-ms-input-placeholder {
  font-weight: 600;
  color: #353232;
}

.input::placeholder {
  font-weight: 600;
  color: #353232;
}

.form-button {
  margin-top: 50px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1260px;
  }
}

@media (max-width: 1920px) {
  .section-bg {
    width: auto;
  }
}

@media (max-width: 1200px) {
  .logo {
    min-width: 150px;
    margin-right: 78px;
  }

  .logo__name {
    font-size: 18px;
  }

  .logo__description {
    font-size: 12px;
  }

  .menu {
    margin-right: 35px;
  }

  .phone__number {
    font-size: 16px;
  }

  .logo {
    margin-right: 50px;
  }

  .menu__item {
    margin-right: 30px;
  }

  .main-screen {
    padding-top: 200px;
  }

  .main-screen__col:nth-child(1) {
    max-width: 60%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }

  .main-screen__col:nth-child(2) {
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }

  h1 {
    font-size: 37px;
  }

  .main-screen__img {
    top: -80px;
  }

  .main-screen__img-item {
    max-width: 300px;
  }

  .advantage__value::before {
    width: 60px;
  }

  .reason__img {
    right: 0;
    padding: 15px;
    width: 150px;
  }

  .reason__img img {
    width: 100%;
    height: 100%;
  }

  .services {
    padding-bottom: 130px;
  }

  .services__col {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .services__col:nth-child(2) {
    display: none;
  }

  .services .overlay-element,
  .services .overlay-element-2 {
    width: 1680px;
  }

  .price-menu__list {
    height: auto;
  }

  .price-menu__item-inner {
    padding: 25px;
  }

  .price-menu__name {
    max-width: 80%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    font-size: 18px;
  }

  .price-menu__icon {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    margin-right: 0;
  }

  .price-content {
    min-height: 555px;
  }

  .price-box__item-inner {
    min-height: 155px;
  }

  .slide__text-content {
    padding-left: 30px;
  }

  .slide__img-box {
    max-width: 50%;
    height: auto;
    border-radius: 6px;
  }

  .slide__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .slider-nav {
    position: relative;
  }

  .footer__col {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (max-width: 992px) {
  .logo__img img {
    width: 60px;
  }

  .burger {
    display: block;
  }

  .burger__line {
    position: relative;
    width: 18px;
    height: 2px;
    margin-bottom: 4px;
    background: #EB464A;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
  }

  .burger__line-2 {
    width: 18px;
    margin-left: auto;
  }

  .burger__line-4 {
    position: absolute;
    top: 0px;
    left: -7px;
    -webkit-transform: rotate(45deg) translateX(-12px);
    -ms-transform: rotate(45deg) translateX(-12px);
    transform: rotate(45deg) translateX(-12px);
    opacity: 0;
  }

  .burger__line-5 {
    position: absolute;
    top: 0px;
    right: -7px;
    -webkit-transform: rotate(-45deg) translateX(12px);
    -ms-transform: rotate(-45deg) translateX(12px);
    transform: rotate(-45deg) translateX(12px);
    opacity: 0;
  }

  .burger__line:last-child {
    margin-bottom: 0;
  }

  .burger__line-1--active {
    width: 0;
  }

  .burger__line-2--active {
    width: 0;
  }

  .burger__line-3--active {
    width: 0;
  }

  .burger__line-4--active {
    -webkit-transform: rotate(45deg) translateX(9px);
    -ms-transform: rotate(45deg) translateX(9px);
    transform: rotate(45deg) translateX(9px);
    opacity: 1;
    left: -24px;
  }

  .burger__line-5--active {
    -webkit-transform: rotate(-45deg) translateX(-9px);
    -ms-transform: rotate(-45deg) translateX(-9px);
    transform: rotate(-45deg) translateX(-9px);
    opacity: 1;
  }

  .header__collapse {
    position: absolute;
    top: 84px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 0;
    background: #232323;
    padding-top: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    overflow: hidden;
  }

  .header__collapse--active {
    height: calc(100vh - 87.7px);
  }

  .menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .menu__item {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .menu__item:last-child {
    margin-bottom: 0;
  }

  .menu__link {
    display: block;
    font-size: 18px;
    color: #fff;
  }

  .menu {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .phone__number {
    font-size: 20px;
    color: #f88408;
  }
}

@media (max-width: 991px) {
  .header {
    background: #fff;
  }

  .main-screen {
    padding-bottom: 110px;
  }

  .main-screen__col:nth-child(1) {
    max-width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }

  .main-screen__col:nth-child(2) {
    max-width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }

  h1 {
    font-size: 32px;
  }

  .main-screen__subtitle br {
    display: none;
  }

  .overflow-element {
    width: 992px;
  }

  .advantages__row {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: -30px;
  }

  .advantages__col {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    margin-bottom: 30px;
  }

  .advantages__col:nth-child(3) .advantage__value::before {
    display: none;
  }

  .advantage__value::before {
    width: 40px;
  }

  .why {
    padding-top: 80px;
  }

  .reason__text-descr br {
    display: none;
  }

  .service__icon {
    width: 85px;
    height: 85px;
  }

  .service__icon-item {
    width: 40px;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }

  .service__title {
    font-size: 18px;
  }

  .services__col:nth-child(1) .service:nth-child(2) .service__icon-item {
    width: 30px;
  }

  .price {
    padding-top: 50px;
  }

  .price-menu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border: 0;
    margin-bottom: 21px;
  }

  .price-menu__item {
    max-width: 33.333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    padding: 5px;
  }

  .price-menu__item-inner {
    min-height: 76px;
    padding: 15px;
    border: 1px solid #efefef;
  }

  .price-content {
    min-height: auto;
  }

  .works {
    padding-top: 50px;
  }

  .slider {
    margin-bottom: 70px;
  }

  .slider-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .slider-nav {
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 230px;
    margin: 0 auto;
  }

  .slider-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .swiper-pagination {
    margin-bottom: 50px;
  }

  .slide__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .slide__img-box {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    height: 250px;
    margin-bottom: 30px;
  }

  .slide__text-content {
    padding-left: 0;
  }

  .slide__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .slide__item {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .footer__col:nth-child(1) {
    max-width: 45%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }

  .footer__col:nth-child(2) {
    max-width: 55%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }

  .footer .section-bg {
    top: 0;
  }
}

@media (max-width: 767px) {
  section {
    padding: 80px 0 !important;
  }

  .main-screen {
    padding-top: 160px !important;
    padding-bottom: 80px;
  }

  .main-screen__col:nth-child(2) {
    display: none;
  }

  .main-screen__col:nth-child(1) {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .advantage__value-num {
    position: relative;
    font-size: 35px;
  }

  .overflow-element,
  .overlay-element {
    display: none;
  }

  .advantages__row {
    margin: -10px;
  }

  .advantages__col {
    padding: 10px;
    margin-bottom: 0;
  }

  .advantage {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15px;
    background: #f7f7f7;
    min-height: 144px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
            box-shadow: 0px 6px 11px rgba(38, 38, 38, 0.1);
  }

  .advantages__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .advantage__value {
    width: auto;
    height: auto;
    background: transparent;
    margin-bottom: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .advantage__value::before {
    display: none;
  }

  .advantages__col {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .advantage__text {
    font-size: 18px;
    text-align: left;
  }

  .why {
    padding-top: 50px !important;
  }

  .reason__img {
    padding: 30px;
  }

  .reason__img-item {
    width: 100%;
  }

  .services__title {
    top: 0;
    margin-bottom: 40px;
  }

  .services__col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .service {
    margin-bottom: 30px;
  }

  .service:last-child {
    margin-bottom: 30px;
  }

  .services .overlay-element-2 {
    display: none;
  }

  .services__inner .side-b .service .service__icon {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .services__inner .side-b .service .service__title {
    padding-left: 30px;
    padding-right: 0;
  }

  .service__title br {
    display: none;
  }

  .price-menu__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 500%;
            flex: 0 0 500%;
  }

  .price-menu__item-inner {
    min-height: 78px;
  }

  .price-menu__icon {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }

  .slider {
    margin-bottom: 30px;
  }

  .swiper-slide {
    background: #F7F7F7;
    border-radius: 6px;
  }

  .slide__img-box {
    margin-bottom: 15px;
  }

  .slide__text-content {
    padding: 10px;
    padding-top: 0;
  }

  .slide__item-title {
    font-size: 18px;
  }

  .slide__item {
    padding: 15px;
  }

  .footer {
    padding: 50px 0;
  }

  .footer__col:nth-child(1) {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }

  .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .contacts__title {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .contacts__info {
    margin-right: 30px;
  }

  .contacts__info:last-child {
    margin-right: 0;
  }

  .footer__col:nth-child(2) {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .footer .section-bg {
    top: 0;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 460px;
  }

  .main-screen {
    background: #F7F7F7;
  }

  .services {
    background: #F7F7F7;
  }

  .section-bg {
    display: none;
  }

  .price-menu__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .price-box__item-inner {
    min-height: 151px;
    padding: 15px;
  }

  .price-box {
    margin: -10px;
  }

  .price-box__item {
    padding: 10px;
  }

  .price-box__item-title {
    font-size: 15px;
  }

  .slide__img-box {
    height: 200px;
  }

  .slide__item {
    margin-bottom: 0;
  }

  .slide__list {
    margin-bottom: 0;
  }

  .slide__item-descr {
    font-size: 15px;
  }

  .footer {
    background: #353232;
    color: #fff;
  }

  .contacts__title {
    color: #fff;
  }

  .contacts__key {
    font-weight: 500;
    color: #a2a2a2;
  }

  .form-container__subtitle {
    color: #353232;
  }

  .form-container__subtitle br {
    display: none;
  }

  .contacts__value a {
    color: #fff;
  }
  
  .modal-content {
      padding: 20px;
      padding-top: 40px;
  }
  
  .modal__title {
      font-size: 25px;
  }
  
  .modal__subtitle {
      font-size: 16px;
  }
  
  .modal__subtitle br {
      display: none;
  }
  
  .modal__button {
      margin-top: 30px;
  }
  
  .modal-close {
      background: transparent;
  }
  
  .modal-close svg {
      fill: #000;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 320px;
  }

  section {
    padding: 60px 0 !important;
  }

  h1 {
    font-size: 30px;
  }

  h1 br {
    display: none;
  }

  .main-screen__overhead,
  .main-screen__subtitle {
    font-size: 18px;
  }

  .advantages__col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .reason__img {
    display: none;
  }

  .reason__text {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .service__icon {
    display: none;
  }

  .service,
  .service:last-child {
    margin-bottom: 10px;
    border-radius: 6px;
  }

  .service__title {
    font-size: 16px;
  }

  .swiper-slide {
    min-height: 630px;
  }

  .slide__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .form-container {
    padding: 30px 15px;
  }

  .input {
    padding: 19px;
  }

  .form-container__title {
    font-size: 25px;
  }

  .form-container__subtitle {
    font-size: 18px;
  }

  .price-box__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .price-box__item-inner {
    min-height: 110px;
  }

  .price-menu__icon {
    max-width: 17%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
  }
  
  .modal-content {
      max-width: 320px;
  }
  
  .modal__button {
      max-width: 100%;
      width: 100%;
  }
}