@charset "UTF-8";
a, button {
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
}

p, h1, h2, h3, ul, li {
  padding: 0;
  margin: 0;
}

.header {
  background: url(../img/header-bg.png) no-repeat center;
  background-size: cover;
  padding-top: 34px;
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header-top {
  position: relative;
  z-index: 2;
}

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

.header-top__img {
  display: inline-block;
  width: 61px;
  height: 61px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 18px;
}

.header-top__slogan {
  display: inline-block;
  font-family: 'Helvetica';
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
}

.header-top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-top__socials {
  margin-right: 32px;
}

.header-top__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 45px;
  height: 45px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.header-top__link:hover {
  border-color: #ffffff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.header-top__contacts {
  text-align: right;
}

.header-top__tel {
  display: block;
  font-family: 'Gilroy';
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.header-top__button {
  display: inline-block;
  font-size: 14px;
  font-family: 'Helvetica';
  color: #FF4141;
  background-color: transparent;
  border: none;
  border-bottom: 1px dashed #FF4141;
  padding: 0;
  -webkit-transition: border-color 0.1s;
  transition: border-color 0.1s;
}

.header-top__button:hover {
  border-color: transparent;
  -webkit-transition: border-color 0.1s;
  transition: border-color 0.1s;
}

.header-main {
  margin-top: 70px;
  padding-bottom: 190px;
}

.header-main__title {
  font-family: 'Gilroy';
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  position: relative;
  background-color: #ffffff;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
  text-shadow: -10px 0px 2px rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background-image: url(../img/text-pattern.png);
  text-shadow: unset;
  color: transparent;
  background-image: unset;
  background-color: unset;
}

.header-main__fake-title {
  font-family: 'Gilroy';
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  position: absolute;
  top: 0;
  text-shadow: 10px 0px 3px rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-shadow: unset;
  color: transparent;
}

.header-main__text-wrap {
  position: relative;
  background: url(../img/main-text.png) no-repeat center left;
  margin-left: -15px;
}

.header-main__label {
  font-size: 40px;
  position: absolute;
  bottom: 18px;
  right: -90px;
  font-family: 'Gilroy';
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
}

.header-main__label::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 396px;
  height: 80px;
  top: -14px;
  left: -48px;
  background: url(../img/label-bg.png) no-repeat center;
  background-size: cover;
}

.header-main__label::after {
  content: '';
  display: inline-block;
  border-width: 4px;
  border-color: #ff4141;
  border-style: solid;
  position: absolute;
  left: -30px;
  top: -14px;
  width: 450px;
  height: 80px;
  -webkit-box-shadow: 0 0 50px 2px rgba(255, 65, 65, 0.17);
          box-shadow: 0 0 50px 2px rgba(255, 65, 65, 0.17);
  -webkit-transform: skew(-10deg, 0);
          transform: skew(-10deg, 0);
  border-radius: 10px;
}

.header-main__subtitle {
  z-index: 2;
  margin-top: 20px;
  color: #ffffff;
  font-family: 'Helvetica';
  font-size: 22px;
}

.header-main__subtitle span {
  font-size: 45px;
  font-family: 'Gilroy';
  font-weight: 900;
  font-style: italic;
  color: #ff4141;
  margin: 0 6px;
  line-height: 1.5;
}

.header-main__subtitle span span {
  font-size: 30px;
}

.header-main__bottom {
  z-index: 2;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header-main__bottom::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 320px;
  height: 70px;
  bottom: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/header-line.png) no-repeat center;
  background-size: cover;
}

.header-main__desc {
  z-index: 2;
  font-size: 16px;
  font-family: 'Helvetica';
  opacity: 0.5;
  color: #ffffff;
  line-height: 1.5;
  display: inline-block;
}

.header-main__desc span {
  color: #FF4141;
  font-weight: bold;
}

.header-main__button {
  border: none;
  width: 263px;
  height: 70px;
  margin-left: 60px;
  border-radius: 10px;
  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;
  position: relative;
  background: url(../img/btn-bg.png) no-repeat center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 65, 65, 0.6));
          filter: drop-shadow(0 0 20px rgba(255, 65, 65, 0.6));
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -7px 0px 0px rgba(0, 0, 0, 0.45);
          box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -7px 0px 0px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow .2s ease;
  transition: -webkit-box-shadow .2s ease;
  transition: box-shadow .2s ease;
  transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
  font-family: 'Helvetica';
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

.header-main__button:hover {
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -3px 0px 0px rgba(0, 0, 0, 0.45);
          box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -3px 0px 0px rgba(0, 0, 0, 0.45);
}

.header-main__button:before {
  content: '';
  position: absolute;
  left: 0px;
  background: url(../img/header-icon.png);
  width: 91px;
  height: 84px;
  left: -30px;
  top: -10px;
}

.header-main__button span {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Helvetica';
  font-size: 16px;
  position: relative;
}

.header-main__button span:before {
  content: "Записаться";
  position: absolute;
  bottom: -2px;
  z-index: -1;
  color: rgba(0, 0, 0, 0.4);
}

.header-main__img {
  position: absolute;
  bottom: -410px;
  left: -82px;
}

.popups {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  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;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9;
  display: none;
  font-family: 'Helvetica';
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
}

.popup-thanks {
  text-align: center;
}

.popup {
  position: fixed;
  color: #212121;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 5;
  display: none;
}

.popup__cross {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../img/icons/cancel.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  z-index: 2;
}

.popup__title {
  font-size: 32px;
  text-align: center;
}

.popup-form {
  margin-top: 20px;
  width: 320px;
}

.popup-form__input {
  width: 100%;
  display: inline-block;
  margin-bottom: 18px;
  border: none;
  padding: 32px 32px 38px 105px;
  border-radius: 17px;
  background-color: #ffffff;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 24px;
}

.popup-form__submit {
  border: none;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  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;
  position: relative;
  background: url(../img/btn-bg.png) no-repeat center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 65, 65, 0.6));
          filter: drop-shadow(0 0 20px rgba(255, 65, 65, 0.6));
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -7px 0px 0px rgba(0, 0, 0, 0.45);
          box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -7px 0px 0px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow .2s ease;
  transition: -webkit-box-shadow .2s ease;
  transition: box-shadow .2s ease;
  transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
  font-family: 'Helvetica';
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

.popup-form__submit:hover {
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -3px 0px 0px rgba(0, 0, 0, 0.45);
          box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.38), inset 0px -3px 0px 0px rgba(0, 0, 0, 0.45);
}

.popup-form__submit:before {
  content: '';
  position: absolute;
  left: 0px;
  background: url(../img/header-icon.png);
  width: 91px;
  height: 84px;
  left: -30px;
  top: -10px;
}

.popup-form__submit span {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Helvetica';
  font-size: 16px;
  position: relative;
}

.popup-form__submit span:before {
  content: "Заказать звонок";
  position: absolute;
  bottom: -2px;
  z-index: -1;
  color: rgba(0, 0, 0, 0.4);
}

.exit__title {
  font-size: 38px;
  font-weight: 900;
}

.exit__subtitle {
  margin-top: 18px;
  line-height: 1.4;
  font-size: 22px;
}

.exit__subtitle span {
  font-weight: 900;
  color: #3880da;
}

.exit__wrap {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.exit__img {
  display: inline-block;
  height: 52px;
}

.exit__hint {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.exit__desc {
  font-size: 20px;
  line-height: 1.3;
}

.exit-box {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.exit-box__title {
  font-size: 18px;
}

.exit-box__timer {
  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;
}

.exit-box__wrap {
  text-align: center;
}

.exit-box__number {
  font-size: 30px;
  display: block;
}

.exit-box__hint {
  font-size: 16px;
  display: block;
}

.exit-box__separator {
  font-size: 30px;
  margin: 0 12px;
}

.exit-form {
  display: block;
  margin-top: 26px;
  position: relative;
}

.exit-form__input {
  display: block;
  width: 100%;
  padding: 26px 30px;
  border-radius: 32px;
  border: 2px solid #ececec;
  background-color: #fff;
  font-size: 16px;
}

.exit-form__submit {
  top: 0;
  right: 0;
  width: 110px;
  height: 69px;
  -webkit-box-shadow: 0 5px 0 #d79d21, 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 0 #d79d21, 0 15px 30px rgba(0, 0, 0, 0.15);
  border-radius: 35px;
  border: 1px solid #ffcd58;
  background-color: #ffcd58;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcd58), to(#ffb658));
  background-image: linear-gradient(to bottom, #ffcd58 0%, #ffb658 100%);
  text-transform: uppercase;
  line-height: 69px;
  font-size: 14px;
  text-align: center;
  font-weight: 900;
  position: absolute;
}

@media (max-width: 1200px) {
  .header-main__img {
    left: -118px;
  }
  .header-main__label {
    right: -100px;
    font-size: 38px;
  }
  .header-main__desc {
    font-size: 14px;
  }
}

@media (max-width: 990px) {
  .header-top__img {
    margin-right: 10px;
  }
  .header-top__slogan {
    font-size: 12px;
  }
  .header-main__title,
  .header-main__fake-title {
    font-size: 60px;
  }
  .header-main__label {
    font-size: 30px;
  }
  .header-main__label::after {
    width: 350px;
    height: 70px;
  }
  .header-main__label {
    font-size: 30px;
    left: 330px;
    bottom: 12px;
    right: unset;
  }
  .header-main__label::before {
    height: 70px;
    width: 340px;
  }
  .header-main__img {
    right: -318px;
    left: unset;
  }
  .header-main__text-wrap {
    background: unset;
  }
  .header-main__title {
    text-shadow: -10px 0px 2px rgba(255, 255, 255, 0.15);
    color: #ffffff;
    background-image: url(../img/text-pattern.png);
    background-color: #ffffff;
  }
  .header-main__fake-title {
    text-shadow: 10px 0px 2px rgba(255, 255, 255, 0.15);
    color: #ffffff;
  }
  .header-main__text-wrap {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 40px 0;
    padding-top: 15px;
  }
  .header-top__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 16px;
  }
  .header-top__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-top__socials {
    margin-right: 0;
  }
  .header-top__contacts {
    margin-top: 16px;
    text-align: center;
  }
  .header-main {
    margin-top: 30px;
  }
  .header-main__title, .header-main__fake-title {
    text-align: center;
    font-size: 42px;
  }
  .header-main__label {
    font-size: 30px;
    left: unset;
    bottom: unset;
    right: unset;
    position: relative;
    margin-top: 26px;
    text-align: center;
    font-size: 26px;
  }
  .header-main__label::after {
    width: 320px;
    height: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%) skew(-10deg, 0);
            transform: translateX(-50%) skew(-10deg, 0);
  }
  .header-main__label::before {
    height: 60px;
    width: 320px;
    left: 6px;
  }
  .header-main__subtitle {
    font-size: 13px;
    margin-top: 30px;
    text-align: center;
  }
  .header-main__subtitle span {
    font-size: 24px;
    margin: 0;
  }
  .header-main__subtitle span span {
    font-size: 20px;
  }
  .header-main__bottom::after {
    display: none;
  }
  .header-main__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-main__desc {
    text-align: center;
    margin-top: 24px;
  }
  .header-main__button {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
  }
  .popup {
    padding: 20px;
  }
  .popup-form {
    width: 280px;
  }
  .popup__title {
    font-size: 26px;
  }
  .popup-form__submit::after,
  .popup-form__submit {
    font-size: 14px;
  }
  .popup-form__submit {
    height: 66px;
  }
  .header-main__bottom {
    margin-top: 420px;
  }
  .header-main__img {
    right: unset;
    left: 42%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 156px;
    height: 420px;
  }
}
/*# sourceMappingURL=index.css.map */