@font-face {
  font-family: "IntroBold";
  src: url("./fonts/IntroBoldAlt.woff2") format("woff2"),
    url("./fonts/IntroBoldAlt.woff") format("woff");
}
@font-face {
  font-family: "Intro";
  src: url("./fonts/IntroRegularAlt.woff2") format("woff2"),
    url("./fonts/IntroRegularAlt.woff") format("woff");
}
@font-face {
  font-family: "OpenSans";
  src: url("./fonts/OpenSans.woff2?v=2") format("woff2"),
    url("./fonts/OpenSans.woff?v=2") format("woff");
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --white: #fff;
  --grey: #f3f3f3;
  --purple: #6e13ff;
  --green: #21a400;
  --red: #e20000;
  --blue: #0075ff;
}
a {
  color: inherit;
  text-decoration: none;

}
html {
  font-family: "OpenSans";
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  background-color: var(--grey);
}
.root-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.general-title {
  font-size: 3rem;
  line-height: 4rem;
  font-family: "IntroBold";
  text-transform: uppercase;
  color: var(--black);
}

.general-title.purple {
  color: var(--purple);
}
.container {
  max-width: 180rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 3.4rem;
}
.main-menu a.active {
  color: var(--purple);
}
.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.3rem;
  list-style-type: none;
  color: var(--black);
  text-transform: uppercase;
  font-family: "IntroBold";
}

.home-banner {
  border-radius: 6rem;
  padding: 8rem;
  position: relative;
  background: linear-gradient(95.12deg, #28cbfd -14.11%, #b02aff 54.33%);
  box-shadow: 0px 6.1rem 9.9rem 0px #8913ff33;
}

.home-banner__title {
  font-family: "IntroBold";
  font-size: 8rem;
  line-height: 10rem;
  max-width: 100rem;
  text-transform: uppercase;
  color: var(--white);
}
.home-banner__desc {
  font-family: "OpenSans";
  font-size: 2rem;
  line-height: 2.7rem;
  color: var(--white);
  margin: 4.5rem 0;
  max-width: 51.6rem;
}

.home-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: "IntroBold";
  color: var(--purple);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 2rem;
  height: 9.6rem;
  padding: 3rem;
  border-radius: 7.4rem;
  overflow: hidden;
  background-color: var(--white);
  border: none;
  cursor: pointer;
}

.home-banner__image {
  position: absolute;
  top: -12rem;
  right: -4rem;
  pointer-events: none;
  width: 83.3rem;
}
.checkmarks {
  margin-top: 3.4rem;
}

.checkmarks-list {
  list-style-type: none;
  margin-top: 4rem;
}

.checkmarks-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  line-height: 2.1rem;
  color: var(--black);
  font-family: "OpenSans";
  font-weight: bold;
}

.checkmarks-list li:not(:last-child) {
  margin-bottom: 2rem;
}
.checkmarks-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.checkmarks-list:nth-child(1),
.checkmarks-list:nth-child(2) {
  padding-right: 3rem;
}

.checkmarks-unique {
  background-color: var(--white);
  border-radius: 4rem;
  padding: 5rem 4.3rem;
  transform: translateY(-4rem);
}

.checkmarks__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: "IntroBold";
  color: var(--white);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 2rem;
  height: 9.6rem;
  padding: 3rem;
  border-radius: 7.4rem;
  overflow: hidden;
  background: linear-gradient(95.12deg, #28cbfd -14.11%, #b02aff 54.33%);
  border: none;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 3.4rem;
}

.qa {
  margin-top: 3.4rem;
}
.qa__title {
  text-align: center;
}

.qa-list {
  margin: 3.4rem 0;
}
.qa-list ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.qa-card {
  border-radius: 4rem;
  background-color: var(--white);
  padding: 4rem;
}
.qa-card__title {
  font-family: "OpenSans";
  font-weight: bold;
  color: var(--black);
  font-size: 2rem;
  line-height: 2.7rem;
}
.qa-card__desc {
  margin-top: 2rem;
  font-family: "OpenSans";
  line-height: 2.2rem;
  font-size: 1.6rem;
  color: var(--black);
}

.qa-list__btn {
  background-color: var(--purple);
  padding: 3rem 5rem;
  border-radius: 5rem;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IntroBold";
  border: none;
  margin: 0 auto;
  margin-top: 3.4rem;
  gap: 2rem;
  cursor: pointer;
  font-size: 2rem;
}

footer.main-menu {
  padding-bottom: 3rem;
}
.footer-wrapper {
  border-top: 1px solid #cccccc;
  margin-top: auto;
}

.pay-banner {
  padding: 8rem;
  font-size: 4rem;
  line-height: 4rem;
  font-family: "IntroBold";
  color: var(--white);
  background: linear-gradient(95.12deg, #28cbfd -14.11%, #b02aff 54.33%);
  border-radius: 6rem;
  box-shadow: 0px 6.1rem 9.9rem 0px #8913ff33;
  margin-bottom: 8rem;
  text-transform: uppercase;
}
.pay-title {
  margin-bottom: 7rem;
}
.pay-box {
  display: flex;
  gap: 2.4rem;
}
.pay-input {
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #cccccc;
  color: var(--purple);
  font-family: "OpenSans";
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.7rem;
  height: 8.4rem;
  display: flex;
  align-items: center;
  width: 60%;
  max-width: 72.2rem;
}
.pay__btn {
  padding: 3rem 5rem;
  border-radius: 2rem;
  display: flex;
  gap: 2rem;
  font-family: "IntroBold";
  font-size: 2rem;
  background-color: var(--purple);
  border: none;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
}

.success-alert {
  border: 1px solid var(--green);
  padding: 2.9rem 2rem;
  font-family: "OpenSans";
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.7rem;
  color: var(--green);
  background-color: #21a4001a;
  border-radius: 2rem;
  max-width: 107.7rem;
}
.error-alert {
  border: 1px solid var(--red);
  padding: 2.9rem 2rem;
  font-family: "OpenSans";
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.7rem;
  color: var(--red);
  background-color: #e200001a;
  border-radius: 2rem;
  max-width: 107.7rem;
}

.fail-pay__btn {
  margin-top: 7rem;
}

.input-container {
  height: 7rem;
  border-radius: 1rem;
  border: 1px solid #bcbcbc;
  display: flex;
}

.input-container--file {
  height: 12rem;
}
.input-container--file .input__field {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.input__field__placeholder.active {
  color: var(--black);
}
.input__field-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.6rem;
  font-family: "OpenSans";
  font-size: 1.6rem;
  color: #787878;
}
.input__svg {
  width: 6.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #bcbcbc;
  flex: none;
}

.input__field {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0 1.6rem;
  font-family: "OpenSans";
  font-size: 1.6rem;
}
.input__field::placeholder {
  color: #787878;
}
.input__field-file-button {
  position: absolute;
  right: 0.8rem;
  top: 0.6rem;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--purple);
  color: var(--white);
  font-family: "OpenSans";
  font-weight: bold;
  font-size: 2rem;
  border-radius: 0.7rem;
  border: none;
  padding: 0 5.5rem;
}
.check-container {
  display: grid;
  grid-template-columns: 64% 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.check-user-details {
  margin-top: 3rem;
  margin-bottom: 7rem;
}
.check-user-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.file-upload-extensions {
  color: #787878;
  font-size: 1.6rem;
  font-family: "OpenSans";
  margin-top: 1rem;
}

.checkbox-wrapper {
  font-size: 1.6rem;
  font-family: "OpenSans";
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkbox-wrapper a {
  color: var(--blue);
}

.mt-7-0 {
  margin-top: 7rem;
}
.checkbox-wrapper input {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  flex: none;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 3rem;
  height: 3rem;
  border: 1px solid currentColor;
  border-radius: 0.5rem;
  display: grid;
  place-content: center;
}

.checkbox-wrapper input[type="checkbox"]::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--purple);
  border-radius: 2px;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.check-additional-checkboxes {
  margin-top: 7rem;
  margin-bottom: 6.5rem;
}

.check-additional-checkboxes h3 {
  margin-bottom: 3rem;
}

.file-upload-section h3,
.range-slider-section h3 {
  margin-bottom: 3rem;
}
.range-slider-section {
  margin-bottom: 7rem;
}
.check-additional-checkboxes__button {
  padding: 0 5rem;
  border-radius: 2rem;
  height: 8.4rem;
  border: none;
  background-color: var(--purple);
  color: white;
  font-family: "OpenSans";
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.7rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  cursor: pointer;
}

.check-container .checkmarks-unique {
  transform: translate(0, 0);
  margin-top: 3rem;
}

.check-container .checkmarks-unique .check-additional-checkboxes__button {
  width: 100%;
  margin-top: 4rem;
}
.hamburger-menu {
  position: relative;
  z-index: 100;
  display: none;
}
#menu__toggle {
  opacity: 0;
  position: absolute;
  inset: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 26px;
  height: 26px;

  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--purple);
  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: "";
  top: -8px;
}
.menu__btn > span::after {
  content: "";
  top: 8px;
}
.burger-menu--list {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100svh;
  background-color: var(--white);
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateX(120%);
  display: none;
}
.burger-menu--list.active {
  transform: translateX(0);
}
.burger-menu--list nav {
  display: block !important;
}
.burger-menu--list ul {
  color: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  padding: 10.6rem 3.5rem;
}
#range-slider .range-slider__thumb[data-lower] {
  width: 0;
}

#range-slider .range-slider__range {
  border-radius: 6px;
}

.range-slider {
  background-color: #e8e8e8;
}
.range-slider .range-slider__thumb,
.range-slider .range-slider__range {
  background-color: var(--purple);
}

.thumb-percentage {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  color: var(--black);
  font-family: "OpenSans";
  width: max-content;
}

@media (max-width: 1700px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 1550px) {
  html {
    font-size: 54%;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 46%;
  }
}
@media (max-width: 1170px) {
  html {
    font-size: 42%;
  }
}
@media (max-width: 1050px) {
  html {
    font-size: 38%;
  }
}
@media (max-width: 950px) {
  html {
    font-size: 30%;
  }
}
@media (max-width: 950px) {
  html {
    font-size: 30%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  .general-title {
    font-size: 2rem;
    line-height: 4rem;
  }
  .hamburger-menu {
    display: block;
  }
  .burger-menu--list {
    display: block;
  }
  header.main-menu nav {
    display: none;
  }
  header.main-menu a img {
    width: 19.4rem;
  }
  .home-banner__image {
    display: none;
  }
  .home-banner {
    border-radius: 3rem;
    padding: 3rem;
  }
  .home-banner__title {
    font-size: 3.1rem;
    line-height: 5rem;
  }
  .home-banner__btn {
    font-size: 1.3rem;
    gap: 1rem;
    padding: 2rem;
    height: 7rem;
  }
  footer.main-menu {
    flex-direction: column;
  }
  footer.main-menu nav ul {
    margin-top: 4rem;
    flex-direction: column;
    gap: 4rem;
  }
  .checkmarks-wrapper {
    grid-template-columns: 1fr;
  }
  .checkmarks-wrapper .checkmarks-unique {
    margin-top: 2.5rem;
  }
  .checkmarks-unique {
    transform: translate(0, 0);
    padding: 3rem;
  }
  .checkmarks__btn {
    font-size: 1.3rem;
    height: 7.6rem;
    width: 100%;
  }
  .qa-list ul {
    grid-template-columns: 1fr;
  }
  .qa-list__btn {
    height: 6.4rem;
    font-size: 1.3rem;
  }
  .pay-banner {
    padding: 3rem;
    border-radius: 3rem;
    font-size: 3rem;
    line-height: 6rem;
    margin-bottom: 2.5rem;
  }
  .pay-title {
    margin-bottom: 3rem;
  }
  .pay-input {
    width: 100%;
    height: 8rem;
  }
  .pay-box {
    flex-direction: column;
  }
  .pay__btn {
    justify-content: center;
    width: 100%;
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
  .fail-pay__btn {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }
  .qa-card {
    padding: 2rem;
    border-radius: 2rem;
  }
  .check-container {
    grid-template-columns: 1fr;
  }
  .check-user-details {
    grid-template-columns: 1fr;
  }
  .input__field,
  .input__field__placeholder {
    font-size: 1.2rem;
  }
  .input__field-file-button {
    font-size: 1.6rem;
    padding: 0 3.2rem;
  }
  .check-additional-checkboxes {
    margin-bottom: 2.5rem;
  }
  .check-additional-checkboxes__button {
    font-size: 1.3rem;
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
    padding: 0 2rem;
  }
  .check-container {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 56%;
  }
}
@media (max-width: 376px) {
  html {
    font-size: 52%;
  }
}
