@import "./variables.css";
@import "./variables.css";
@import "./variables.css";
.container {
  width: 100%;
  margin: 0 auto;
}

.banner-section {
  padding: 100px 0 30px;
}

.banner-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--black-color);
}

.banner-subheading {
  font-family: var(--brand-font);
  font-size: 60px;
  font-weight: 600;
  color: var(--black-color);
  line-height: 74px;
  padding-top: 2px;
}

.banner-description {
  padding-top: 12px;
  font-family: var(--brand-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
  max-width: 98%;
  color: var(--black-color);
}

.col-heading h4 {
  padding-top: 40px;
  padding-bottom: 18px;
  font-family: var(--brand-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
}

.col-test {
  flex: 0 0 auto;
  width: 33.33%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.banner-col-block {
  display: flex;
}
.banner-col-block .number-block {
  display: table;
}

.col-block__text {
  padding-left: 10px;
}
.col-block__heading {
  font-family: var(--brand-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
}
.col-block__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black-color);
  margin-top: 6px;
}
.col-block__number {
  width: 40px;
  height: 40px;
  background-color: #EBEBEB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.banner-btn {
  padding: 62px 0;
  display: flex;
}

.btn-already__claim {
  font-size: 18px;
  line-height: 38px;
  color: var(--already-claim-link);
  display: inline-block;
  border-style: solid;
  border-color: var(--already-claim-link);
  background-color: transparent;
  border-radius: 100px;
  height: 44px;
  max-width: 336px;
  width: 100%;
}

.instruction-doc-button {
  font-size: 18px;
  line-height: 38px;
  text-decoration-line: underline;
  color: var(--already-claim-link);
  display: inline-block;
  border: none;
  background-color: transparent;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.claim-btn {
  background: var(--button-primary-color);
  border-radius: 100px;
  font-family: var(--brand-font);
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  color: var(--white-color);
  border: none;
  height: 44px;
  max-width: 336px;
  width: 100%;
}

.w-33 {
  width: 33%;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.stepper-btn {
  display: flex;
  justify-content: space-between;
  bottom: 0px;
  max-width: 390px;
  right: 0;
  margin: 0 auto;
  width: 100%;
  padding: 12px 23px 20px 23px;
  background-color: var(--white-color);
  position: fixed;
  right: 0;
}

.claim-form::-webkit-scrollbar {
  display: none;
}

.claim-form {
  height: calc(100vh - 170px);
  overflow: auto;
}

.next-btn {
  border: 0 none;
  font-family: var(--brand-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  box-sizing: border-box;
  padding: 3px 21px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  text-transform: uppercase;
  background: var(--button-primary-color);
  color: var(--white-color);
}

.next-btn--disabled {
  background: var(--button-disable-color);
}

.back-btn {
  border: none;
  color: var(--black-color);
  background-color: transparent;
  font-family: var(--brand-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
}

.title {
  font-family: var(--brand-font);
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 74px;
  color: var(--black-color);
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .container,
.container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
.container-md,
.container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
.container-lg,
.container-md,
.container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1140px;
  }
}
@media (max-width: 600px) {
  .container,
.container-sm {
    max-width: 540px;
  }
}
@media (max-width: 1024px) {
  .col-test {
    width: 50%;
  }

  .claim-form {
    padding-bottom: 30px;
  }

  .stepper-btn {
    max-width: 100%;
    padding: 12px 18px 20px 18px;
    justify-content: space-evenly;
  }

  .btn-already__claim {
    margin-left: 40px;
  }
}
@media (max-width: 991.55px) {
  .banner-section {
    padding-bottom: 60px;
  }

  .banner-btn {
    flex-wrap: wrap;
  }

  .instruction-doc-button {
    margin-left: 20px;
  }

  .btn-already__claim {
    margin-top: 15px;
  }

  .w-33 {
    width: 50%;
  }
}
@media (max-width: 767.55px) {
  .mt-md-30 {
    margin-top: 30px;
  }

  .col-test {
    width: 100%;
  }

  .banner-btn a {
    margin-top: 14px;
    margin-left: 0;
    display: block;
  }

  .banner-btn {
    padding: 62px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .claim-btn {
    margin: 0 auto;
  }

  .btn-already__claim {
    margin: 14px auto;
  }

  .instruction-doc-button {
    margin-top: 14px;
    margin-left: 0;
  }

  .w-33 {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .banner-section {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .mt-sm-14 {
    margin-top: 14px;
  }

  .banner-section {
    padding: 95px 10px 100px 10px;
  }

  .banner-subheading {
    font-family: var(--brand-font);
    font-style: normal;
    font-weight: 600;
    color: var(--black-color);
    font-size: 33px;
    line-height: 41px;
  }

  .banner-description {
    font-size: 13px;
    line-height: 20px;
  }

  .col-heading h4 {
    font-family: var(--brand-font);
    font-style: normal;
    font-weight: 600;
    color: var(--black-color);
    font-size: 19px;
    line-height: 32px;
    padding: 28px 0px;
  }

  .banner-btn {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .stepper-btn {
    box-shadow: 0px 1px 2px #00000029, 0px 2px 4px #0000001f, 0px 1px 8px #0000001a;
  }
}
@media (max-width: 370px) {
  .banner-section {
    padding-bottom: 135px;
  }
}

/*# sourceMappingURL=MainPage.css.map */
