h1 {
  font-size: 53px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.4;
  color: #1C1C1C;
  margin-bottom: 50px;
}

h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 85px;
}

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

a:hover {
  text-decoration: none;
}

b {
  font-weight: 700;
}

ol,
ul,
dl {
  margin-bottom: 0;
}

button {
  color: #fff;
  max-width: 300px;
  width: 100%;
  height: 49px;
  background: #159bf3;
  border-radius: 5px;
  border: none;
  padding: 10px 15px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

button:hover {
  background: #45b5ff;
}

button:focus {
  outline: none;
}

body {
  font-family: 'montserrat';
  font-weight: 400;
  color: #272727;
  background-color: #fff;
}

.modal {
  padding: 15px;
}

.modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 500px;
  width: 100%;
  padding: 50px;
  margin: 0 auto;
}

.modal-header {
  border: 0;
}

.modal-title {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.modal-close svg {
  position: absolute;
  margin-right: 0;
}

form {
  max-width: 350px;
  width: 100%;
}

.input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #efefef;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 5px;
}

svg {
  width: 16px;
  height: 16px;
  margin-right: 15px;
}

input {
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
}

.form-warning {
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
  max-width: 244px;
}

.modal .form{
    margin: 0 auto;
}

.header {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
}

.header .row {
  display: flex;
  height: 70px;
  align-items: center;

}

.header__logo {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.header__description {
  font-size: 14px;
  line-height: 16px;
  color: #9c9c9c;
}

.header__tel {
  margin-left: auto;
  margin-right: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #159bf3;
}

.header__cta {
  width: 200px;
}

#main-screen .mob-only {
  display: none;
}

.main-screen {
  background-color: #f3f3f3;
  padding: 100px 0;
}

.main-screen .main-screen__container {
  position: relative;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.main-screen .main-screen__container .main-screen__social {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 15px;
  width: 100px;
  height: 50px;
  background: #ffb400;
  border-radius: 0 0 0 5px;
}

.main-screen .main-screen__container .main-screen__social svg {
  fill: #fff;
  width: 20px;
  height: 20px;
  margin-right: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.main-screen .main-screen__container .main-screen__social svg:hover {
  fill: #000;
}

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

.main-screen .main-screen__col img {
  position: absolute;
  width: 500px;
  right: -40px;
  bottom: -80px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.main-screen h1 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.main-screen h1 span {
  color: #ffb400;
}

.main-screen__subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.main-screen__list {
  margin-bottom: 20px;
}

.main-screen__item {
  margin-bottom: 5px;
}

.main-screen__item svg {
  width: 20px;
  height: 20px;
  fill: #159bf3;
}

.main-screen__sale {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
  cursor: pointer;
}

.main-screen__sale span {
  padding: 5px 15px;
  padding-left: 9px;
  background: #ffb400;
  border-radius: 5px;
  margin-left: -30px;
}

.main-screen__sale svg {
  width: 50px;
  height: 50px;
  fill: #ffb400;
  -webkit-transform: rotate(-3deg);
      -ms-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.benefit {
  position: relative;
  padding: 100px 0;
  padding-bottom: 70px;
  background-color: #fff;
}

.benefit::before {
  content: "";
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 300px;
  background-color: #ffb400;
  opacity: .2;
}

.blue {
  color: #159bf3;
}

.benefit-col {
  margin-bottom: 30px;
}

.benefit-col__inner {
  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;
  min-height: 272px;
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
}

.benefit-col__inner svg {
  width: 50px;
  height: 50px;
  margin-right: 0;
  fill: #159bf3;
  margin-bottom: 15px;
}

.benefit-col__header {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.benefit-col__header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #ffb400;
}

.benefit-col__text {
  font-size: 14px;
  text-align: center;
  color: #828282;
  width: 100%;
  min-height: 105px;
}

.quiz-section {
  position: relative;
  padding: 100px 0;
}

.quiz-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 300px;
  background-color: #159bf3;
  opacity: .2;
}

.quiz {
  position: relative;
  max-width: 800px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
}

.quiz__body {
  border-bottom: 2px solid #f9f9f9;
}

.quiz__head {
  padding: 50px;
  border-bottom: 2px solid #f9f9f9;
}

.quiz__header {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

.step {
  display: none;
  padding: 50px;
  opacity: 0;
  -webkit-animation: stepShow 1s linear;
  animation: stepShow 1s linear;
  min-height: 354px;
}

.step__header {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}

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

.step__field {
  position: relative;
  display: block;
  width: 100%;
  max-width: calc(50% - 8px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 8px);
          flex: 0 0 calc(50% - 8px);
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid #f9f9f9;
}

.step__field input {
  opacity: 0;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  left: 0;
  margin-bottom: 0;
  margin-right: 15px;
  padding: 0;
  border: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step__field label {
  font-weight: 500;
  padding-left: 50px;
}

label {
  margin-bottom: 0;
}

.step__field label:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 15px;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #ffb400;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step__field label:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 15px;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #ffb400;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.step__field input:checked + label:before {
  background: #ffb400;
}

.step__input {
  font-family: 'montserrat';
  font-weight: 500;
  background-color: #f6f9fb;
  max-width: 300px;
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 0;
}

.step__input::-webkit-input-placeholder {
  font-family: 'montserrat';
}

.step__input::-moz-placeholder {
  font-family: 'montserrat';
}

.step__input:-ms-input-placeholder {
  font-family: 'montserrat';
}

.step__input::-ms-input-placeholder {
  font-family: 'montserrat';
}

.step__input::placeholder {
  font-family: 'montserrat';
}

.step--active {
  display: block;
  opacity: 1;
  -webkit-animation: stepShow 1s linear;
  animation: stepShow 1s linear;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.quiz__footer {
  position: relative;
  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;
  padding: 50px;
}

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

.quiz__step-count {
  position: absolute;
  font-weight: 500;
}

.quiz__btn {
  width: 150px;
  margin-right: 15px;
}

.quiz__btn:nth-child(2) {
  margin-right: 0;
}

.last-step .step__content {
  -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;
}

.form__btn {
  max-width: 244px;
  width: 100%;
}

.modal .form__btn{
    
}

.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;
}

.about {
  background-color: #f3f3f3;
  padding: 100px 0;
}

.about .container {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
}

.about h2 {
  text-align: left;
  margin-bottom: 30px;
}

.about__col-inner {
  overflow: hidden;
}

.about__col-inner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.about__col-inner {
  padding: 30px;
}

.contact {
  padding: 100px 0;
}

.contact .container {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.contact h2 {
  text-align: left;
  margin-bottom: 30px;
}

.contact img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.contact__col {
  padding: 50px;
  background-color: #f3f3f3;
}

.contact__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.contact__phone a{
  font-size: 30px;
  font-weight: 700;
  color: #159bf3;
  margin-bottom: 30px;
  transition: .2s;
}

.contact__phone a:hover{
    color: #45b5ff;
}

.contact__text {
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
}

.contact__text svg {
  fill: #ffb400;
  width: 35px;
  height: 35px;
}

.contact__work-time {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 30px;
}

.main-screen .main-screen__col img{
  height: 656px;
  object-fit: cover;
}




@media (max-width: 1200px) {
  .main-screen h1 {
    font-size: 25px;
  }

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

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

  .main-screen__sale span {
    position: relative;
    font-size: 16px;
  }

  .main-screen .main-screen__col img {
    width: 400px;
    bottom: -50px;
  }

  .benefit-col__header {
    text-align: center;
    min-height: 69px;
  }

  .benefit-col__inner {
    min-height: 308px;
  }

  .about__col {
    overflow: hidden;
  }

  .about__col-inner img {
    left: 0px;
    width: 600px;
  }

  .contact__col {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  .main-screen {
    padding: 80px 0;
  }

  .main-screen .main-screen__container {
    padding: 30px;
  }

  .main-screen h1 {
    font-size: 23px;
  }

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

  .main-screen__col:nth-child(2) {
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff0cc;
  }

  .main-screen__list {
    margin-bottom: 30px;
  }

  .main-screen .main-screen__col img {
    width: 480px;
    right: -2px;
  }

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

  .main-screen__sale svg {
    display: none;
  }

  .main-screen__sale span {
    display: block;
    margin-left: 0;
    padding: 5px 20px;
  }

  .benefit {
    padding: 80px 0;
  }

  h2 {
    font-size: 25px;
    margin-bottom: 80px;
  }

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

  .benefit-col__header {
    min-height: auto;
  }

  .benefit-col__inner {
    min-height: 270px;
  }

  .benefit::before {
    top: 53%;
    height: 610px;
  }

  .quiz-section {
    padding: 80px 0;
    padding-top: 0;
  }

  .about__col {
    min-height: 370px;
  }

  .about__col:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .about__col-inner img {
    left: 0px;
    width: 100%;
    top: -90px;
  }

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

@media (max-width: 768px) {
  .modal-content {
    max-width: 320px;
    padding: 50px 20px;
  }

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

  .header__description,
  .header__cta {
    display: none;
  }

  #main-screen .mob-only {
    position: unset;
    display: block;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;;
  }
  .contact__phone a {
    font-size: 27px;
  }
  .header .row {
    margin: 0 1px;
  }
  .header__tel {
    margin-right: 0;
  }
}

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

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

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

  .main-screen {
    padding: 50px 15px;
    padding-top: 15px;
  }

  .main-screen .main-screen__container {
    padding: 15px;
    padding-top: 120px;
  }

  .main-screen h1 {
    text-transform: none;
    line-height: 1.5;
    font-size: 18px;
    text-align: center;
  }

  .main-screen__sale span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }

  .main-screen__subtitle {
    font-size: 14px;
    text-align: center;
  }

  .main-screen__item svg {
    display: none;
  }

  .main-screen__item span {
    font-size: 14px;
  }

  .main-screen__item {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    padding-top: 10px;
  }

  .main-screen__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #ffb400;
  }

  button {
    width: 100%;
  }

  .benefit {
    padding: 50px 0;
  }

  h2 {
    font-size: 23px;
    margin-bottom: 50px;
  }

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

  .benefit-col__header {
    font-size: 16px;
  }

  .benefit-col__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 284px;
    padding: 25px;
  }

  .benefit-col__text {
    min-height: auto;
  }

  .benefit::before {
    top: 52%;
    height: 77%;
  }

  .quiz__head {
    padding: 25px;
  }

  .quiz__header {
    font-size: 18px;
  }

  .step {
    padding: 25px;
    min-height: 394px;
  }

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

  .step__header {
    margin-bottom: 25px;
  }

  .step__field input {
    margin-right: 0;
  }

  .step__field label {
    padding-left: 30px;
  }

  .quiz-section {
    padding: 50px 0;
  }

  .quiz__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px;
  }

  .quiz__step-count {
    position: relative;
  }

  .quiz__nav {
    margin-bottom: 15px;
  }

  .quiz-section::before {
    top: 45%;
    height: 510px;
  }

  .about {
    padding: 50px 0;
  }

  .about__tex {
    font-size: 14px;
  }

  .about .container {
    background: none;
  }

  .about__col-inner {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px 15px;
  }

  .about__col:nth-child(1) {
    display: none;
  }

  .contact {
    padding: 50px 0;
  }

  .contact__col {
    background: none;
    padding: 25px;
    padding-top: 0;
  }

  .contact__phone {
    font-size: 20px;
  }

  .contact__text svg {
    display: none;
  }

  .contact__text {
    max-width: 100%;
  }

  .contact__title {
    font-size: 18px;
  }
}

@media (max-width: 991px){
  .main-screen .main-screen__col img {
    width: 315px;
  }
}
