body,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

ul {
  list-style: none;
}

h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: normal;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: bold;
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: normal;
}

h4 {
  font-size: 33px;
  line-height: 1.3;
  font-weight: normal;
}

section {
  width: 100%;
  height: 100vh;
  background: url("../images/bg.jpg") center center / cover no-repeat;
  background-color: #193135;
  color: #fff;
  display: flex;
  align-items: center;
}

.yellow-highlight {
  color: #FAC91B;
}

.yellow-btn {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  background: #FAC91B;
  border-radius: 10px;
  padding: 15px 50px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yellow-btn:hover {
  background: #FDCB00;
}

/* main-page */

.main-page {
  position: relative;
}

.main-page__content {
  padding-left: 100px;
}

.main-page__content h1 {
  margin-bottom: 8%;
}

.main-page__content p {
  font-size: 32px;
  line-height: 1.4;
  max-width: 500px;
  margin-bottom: 40px;
}

.main-page__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.quiz,
.first-question,
.second-question,
.third-question,
.fourth-question,
.fifth-question,
#contact-details,
.promised-money-mobile {
  display: none;
}

.active-question {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* quiz */

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

.question-block {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: inset -5px 0 10px 8px rgba(0, 0, 0, 0.25);
  color: #000;
  width: 70%;
  height: 90vh;
}

.question-answers {
  margin-top: 30px;
}

.question-counter {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 64px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.question-img-man {
  position: absolute;
  bottom: 0;
  right: 0;
  /* position: relative;
  margin-left: auto; */
  max-width: 500px;
  width: 100%;
}

.answer-btn {
  font-size: 36px;
  line-height: 1.2;
  background-color: #E1F1F1;
  padding: 10px 30px;
  margin: 10px 0;
  border: 0;
  border-radius: 5px;
  box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 98%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.answer-btn:hover {
  background-color: #c8eaea;
}

.answer-btn.clicked {
  background-color: #b4eeee;
}

/* first-question */

.first-question h3 {
  font-size: 48px;
}

.first-question .answer-btn {
  font-size: 40px;
  width: 60%;
}

/* second-question, third-question, fourth-question */

.second-question .answer-btn,
.third-question .answer-btn,
.fourth-question .answer-btn {
  width: 90%;
}

/* fifth-question */

.fifth-question .answer-btn {
  width: 60%;
}

/* contact-details */

.contact-details-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details__content img {
  display: block;
  margin: 0 23%;
}

.contact-details {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: inset -5px 0 10px 8px rgba(0, 0, 0, 0.25);
  color: #000;
  width: 90%;
  /* height: 90vh; */
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 420px;
  column-gap: 60px;
}

.contact-details p {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-details__form {
  background: #FAFAFA;
  padding: 30px 20px;
  box-shadow: 3px 4px 16px 6px rgba(0, 0, 0, 0.25);
  margin-right: 30px;
  border-radius: 4px;
}

.contact-details__form form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.contact-details__form form input {
  font-size: 18px;
  color: #333;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  border: 2px solid #ADADAD;
}

.contact-details__form form input::placeholder {
  color: #666363;
}

.contact-details__form form button.yellow-btn {
  font-size: 28px;
  border: 0;
  font-weight: bold;
}

@media(max-width: 1300px) {
  .quiz {
    padding-left: 30px;
  }

  .main-page__content {
    padding-left: 50px;
  }

  .question-img-man {
    max-width: 450px;
  }
}

@media(max-width: 1100px) {

  h1 {
    font-size: 60px;
  }

  h3 {
    font-size: 37px;
  }

  .main-page__content,
  .quiz {
    padding-left: 40px;
  }

  .main-page__content h1 {
    margin-bottom: 6%;
    font-size: 56px;
  }

  .question-img-man {
    max-width: 330px;
  }

  .question-img-man--third-question {
    max-width: 215px;
  }

  .question-answers {
    margin-top: 5px;
  }

  .question-counter {
    font-size: 55px;
  }

  .question-block {
    padding: 50px 35px;
  }

  .answer-btn {
    font-size: 29px;
  }

  .contact-details {
    width: 94%;
    padding: 30px;
    column-gap: 50px;
    grid-template-columns: 1fr 380px;
  }

  .contact-details__form {
    margin-right: 13px;
  }

  .contact-details-img {
    position: absolute;
    max-width: 240px;
  }

  .contact-details p:last-child {
    max-width: 70%;
  }

  .contact-details__content img {
    margin: 0;
    bottom: 10px;
    left: 37%;
  }

  .contact-details__content h4 {
    font-size: 31px;
    margin-bottom: 20px;
  }

  .promised-money {
    max-width: 400px;
  }
}

@media(max-width: 1000px) {
  .promised-money-mobile {
    display: block;
    width: 100%;
  }

  .promised-money {
    display: none;
  }

  section {
    min-height: 100vh;
    height: 100%;
    align-items: flex-start;
  }

  .main-page__content,
  .quiz {
    padding: 30px;
  }

  .first-question .answer-btn {
    font-size: 29px;
  }

  h1 {
    font-size: 50px;
  }

  h3,
  .first-question h3 {
    font-size: 34px;
  }

  .question-block,
  .contact-details {
    height: 100%;
  }

  .question-counter {
    top: initial;
    left: 40px;
    bottom: 40px;
    background: rgba(0, 0, 0, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
  }

  .question-block {
    width: 100%;
    padding: 35px;
  }

  .first-question .answer-btn,
  .second-question .answer-btn,
  .third-question .answer-btn,
  .fourth-question .answer-btn,
  .fifth-question .answer-btn {
    width: 98%;
  }

  .question-block,
  .contact-details {
    grid-template-columns: 1fr;
    width: 96%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.25);
    padding: 30px 30px 40px;
  }

  .contact-details-wrapper {
    align-items: flex-start;
    padding: 25px 0;
  }

  .contact-details__content img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-details p:last-child {
    max-width: 100%;
  }

  .contact-details__form {
    margin-right: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    margin-top: 10px;
    width: 100%;
    max-width: 400px;
    margin: 10px auto 0;
  }

  .contact-details__content h4 {
    margin-bottom: 0;
  }

  .question-img-man {
    width: 100%;
    position: relative;
    margin-left: auto;
  }
}

@media(max-width: 700px) {

  .main-page {
    display: flex;
    flex-direction: column;
  }

  .main-page__image {
    position: relative;
    bottom: 0;
    transform: none;
    margin-left: auto;
    margin-top: auto;
  }

  .main-page__content {
    padding: 12px 10px;
  }

  .quiz {
    padding: 20px 15px;
    overflow: hidden;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .main-page__content h1 {
    margin-bottom: 10px;
  }

  .main-page__content p {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .yellow-btn {
    font-size: 24px;
    padding: 13px 50px;
  }

 

  body {
    overflow-x: hidden;
  }

  .question-counter {
    font-size: 32px;
    width: 60px;
    height: 60px;
    left: 30px;
    bottom: 30px;
  }

  .question-block,
  .contact-details {
    width: 100%;
  }

  .question-block,
  .contact-details {
    padding: 20px;
  }

  .contact-details-wrapper {
    padding: 15px 10px;
  }

  h3,
  .first-question h3 {
    font-size: 26px;
  }

  .answer-btn,
  .first-question .answer-btn {
    font-size: 20px;
    padding: 10px;
    margin: 7px 0;
  }

  .iti--separate-dial-code .iti__selected-dial-code,
  .contact-details__form form input {
    font-size: 14px !important;
  }

  .contact-details__form {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width: 500px) {
  .third-question .answer-btn {
    font-size: 18px;
  }

  h3,
  .first-question h3 {
    font-size: 23px;
  }

  .contact-details__content h4 {
    font-size: 26px;
  }

  .contact-details p {
    font-size: 22px;
  }

  .quiz {
    padding: 5px;
  }

  .question-block,
  .contact-details {
    padding: 15px 13px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
  }

  .question-counter {
    font-size: 25px;
    width: 40px;
    height: 40px;
    bottom: 20px;
  }

}

@media(max-width: 350px) {
  .contact-details__form {
    width: 270px;
    margin: 0 auto;
    padding: 20px 10px;
  }

  #telephone {
    padding-left: 78px !important;
  }

  .contact-details__form form input {
    font-size: 17px;
    height: 50px;
    line-height: 50px;
  }

  .contact-details__content h4 {
    font-size: 24px;
  }

  .contact-details p {
    font-size: 20px;
  }

  .iti--separate-dial-code .iti__selected-dial-code,
  .contact-details__form form input {
    font-size: 13px !important;
  }
}

.iti__tel-input{
  width: 100%;
  padding-left: 100px !important;
}