.banner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;

  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/main-bg.png');
}
.banner-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.banner-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.banner-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
}
.banner-box {
  display: flex;
  gap: 40px;
}
.banner-box span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  /* font-size: 18px; */
  font-size: clamp(0.875rem, 0.425rem + 1.6vw, 1.125rem);
  line-height: 111%;
  color: #252525;
}
.banner-box span:first-child {
  max-width: 194px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  /* font-size: 18px; */

  line-height: 111%;
  color: #fff;
  border-radius: 100px;
  background: linear-gradient(157deg, #3f68d2 0%, #7da2ff 100%);
}
.banner-box__fire {
  width: 30px;
  height: 34px;
}
.banner-box__icon {
  width: 24px;
  height: 24px;
}
.banner-date {
  display: flex;
  gap: 13px;
  align-items: center;

  font-family: var(--font-family);
  font-weight: 400;
  /* font-size: 21px; */
  font-size: clamp(0.938rem, 0.262rem + 2.4vw, 1.313rem);
  line-height: 100%;
  color: #252525;
}
.banner-date__flag {
  width: 36px;
  height: 36px;
}
.banner-title {
  font-family: var(--font-family);
  font-weight: 200;
  /* font-size: 52px; */
  font-size: clamp(2rem, 0.75rem + 4.44vw, 3.25rem);

  line-height: 127%;
  color: #252525;
}
.banner-title span {
  font-weight: 500;
  color: #2589ed;
}
.banner-text {
  max-width: 445px;
  font-family: var(--font-family);
  font-weight: 300;
  /* font-size: 19px; */
  font-size: clamp(0.875rem, 0.313rem + 2vw, 1.188rem);
  line-height: 137%;
  color: #252525;
}
.banner-img {
  margin-top: -40px;
}
.banner-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.banner-form__input {
  width: 100%;
  padding: 20px 24px;

  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 112%;
  color: #252525;
  border: 1px solid rgba(37, 37, 37, 0.09);
  border-radius: 30px;
  background: rgba(65, 106, 211, 0.05);
}

.banner-btn {
  width: 100%;
  border-radius: 30px;

  height: 60px;
  padding: 22px 35px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(157deg, #3f68d2 0%, #7da2ff 100%);
}

.banner-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 950px) {
  .banner {
    height: 100%;
  }
  .banner-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .banner-box {
    gap: 20px;
  }

  .banner-box__icon {
    width: 15px;
    height: 15px;
  }
  .banner-date {
    gap: 22px;
  }
  .banner-date__flag {
    width: 27px;
    height: 27px;
  }
  .banner-img {
    margin: 0;
  }
  .banner-form {
    margin: 0 auto;
    max-width: 450px;
    flex-direction: column;
  }
}
@media screen and (max-width: 650px) {
  .banner {
    background-image: url('../images/main-bg-mobile.png');
  }
}

.thanks-section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;

  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/main-bg.png');
}
@media screen and (max-width: 650px) {
  .thanks-section {
    background-image: url('../images/main-bg-mobile.png');
  }
}

.thanks-page {
  width: 100%;
  overflow: hidden;
}

.wrapper {
  max-width: 600px;
}

@media screen and (max-width: 650px) {
  .wrapper {
    max-width: 320px;
  }
}

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

.thanks-section__title {
  margin: 0 auto;
  font-weight: 500;
  font-size: 52px;
  line-height: 66px;
}

@media screen and (max-width: 650px) {
  .thanks-section__title {
    font-size: 32px;
    line-height: 42px;
  }
  
}

.thanks-section__title span {
  color: #2589ed;
}

.thanks-section__text {
  margin-top: 20px;

  font-weight: 300;
  font-size: 19px;
  line-height: 26px;
}

@media screen and (max-width: 650px) {
  .thanks-section__text {
    font-size: 14px;
    line-height: 24px;
  }
}

.thanks-section__links {
  margin-top: 20px;
}

.thanks-section__link {
  display: inline-block;
  width: 100%;
  max-width: 262px;
  border-radius: 30px;

  height: 60px;
  padding: 22px 35px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(157deg, #3f68d2 0%, #7da2ff 100%);
}

.thanks-section__link:hover {
  opacity: 0.7;
}

.banner .info {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 650px) {
  .banner .info {
    flex-direction: column;
    gap: 5px;
  }
}
.banner a.info-link {
  font-size: 12px;
  color: #333;
}

.banner a.info-link:hover {
  color: #3f68d2;
}