/*=========== Thank You Screen CSS ===========*/

/*-------------------------------------
  1. Thank you heading
--------------------------------------*/
.thankyou__heading {
  font-family: Roboto, sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--icon_white);
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
  line-height: 1.1;
  animation: welcome-fadeUp 0.8s ease-out 0.1s both;
}

/*-------------------------------------
  2. Message spacing
--------------------------------------*/
.thankyou__message {
  max-width: 520px;
}

.thankyou__message .welcome__edition-primary {
  line-height: 1.6;
  margin-bottom: 16px;
}

/*-------------------------------------
  3. Responsive
--------------------------------------*/
@media only screen and (max-width: 1050px) {
  .thankyou__heading {
    font-size: 44px;
  }
}

@media only screen and (max-width: 768px) {
  .thankyou__heading {
    font-size: 36px;
  }
  .thankyou__message {
    max-width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  .thankyou__heading {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 360px) {
  .thankyou__heading {
    font-size: 24px;
  }
}

/*-------------------------------------
  4. Reduced Motion
--------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .thankyou__heading {
    animation: none !important;
  }
}
