/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Kumbh Sans", serif;
  background-color: #fafafa;
  overflow-x: hidden;
  overflow-y: auto;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  color: #747b95;
}

.h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #747b95;
}

.h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #747b95;
}

.body-1 {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #333950;
}

.body-2 {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #333950;
}

.light-blue {
  color: #829cff;
}

.blue {
  color: #5175ff;
}

.dark-blue {
  color: #333950;
}

.black {
  color: #25293a;
}

.gray {
  color: #747b95;
}

.red {
  color: #f05b5b;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
}

.header {
  position: relative;
  margin-block: 30px;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.pattern-header {
  position: absolute;
  top: -195px;
}

.hero {
  margin-block: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.hero__image {
  position: relative;
  width: 171px;
  height: 192px;
  z-index: 1;
}

.hero__title {
  margin-block: 20px;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #333950;
}

.hero__description {
  margin-block: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #747b95;
}

.hero__btn,
.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
  cursor: pointer;
  margin-inline: auto;
  width: 171px;
  height: 56px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  background-color: #5175ff;
  box-shadow: 0px 25px 25px -10px rgba(63, 91, 194, 0.247159);
}

.hero__btn:hover,
.footer__btn:hover {
  background-color: #829cff;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 760px;
  overflow: hidden;
  position: relative;
  margin-top: 800px;
  background-color: #25293a;
  width: 100%;
  height: 1248px;
}

.footer::after {
  position: absolute;
  content: "";
  bottom: -300px;
  width: 100%;
  height: 100%;
  background-image: url(./assets/home/bg-pattern-footer.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
}

.footer__title__date {
  color: #5175ff;
}

.footer__date-limit__container {
  margin-block: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-inline: auto;
}

.footer__date-limit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 92px;
  color: #fff;
  background-color: #333950;
  border-radius: 13px;
  opacity: 1;
  z-index: 3;
}

.cards__container {
  margin-top: -30px;
  position: absolute;
  left: 5%;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.card {
  padding: 50px;
  margin-inline: auto;
  width: 100%;
  background-color: #fff;
  height: 508px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 13px;
  color: #333950;
}

.card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.card__price {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
}

.card__users {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

.card__list {
  width: 100%;
  margin-top: -30px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #747b95;
}

.card__title {
  text-align: center;
}

.card__item {
  margin-block: 20px;
}

.card__btn {
  cursor: pointer;
  transition: 1s;
  margin-top: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(82, 116, 255, 0.15);
  mix-blend-mode: normal;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  min-width: 171px;
  min-height: 56px;
  color: #5175ff;
}

.card__btn:hover {
  opacity: 0.8;
}

.card.card__pro {
  position: relative;
  background-color: #5175ff;
  color: #fff;
}

.card.card__pro::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -230px;
  left: 0;
  background-image: url(./assets/home/bg-pattern-pricing.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card__pro .card__item {
  color: rgb(255, 255, 255, 0.75);
}

.card__pro .card__btn {
  background-color: #fff;
  color: #5175ff;
}

.card__btn-tablet {
  display: none;
}

.amount {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  color: #ffffff;
}

.amount__subtitle {
  font-weight: 700;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.signup-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fafafa;
}

.signup-header {
  margin-block: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.signup-pattern-header {
  z-index: 0;
  position: absolute;
  top: -250px;
  left: 0;
}

.signup-hero__content {
  position: relative;
  z-index: 1;
}

.signup-hero__title {
  margin: 20px auto;
  width: 87%;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #333950;
}

.signup-hero__description {
  width: 87%;
  margin: 20px auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #747b95;
}

.signup-date__limit-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  letter-spacing: 5px;
  color: #333950;
}

.signup-date__limit-container {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

.signup-date__limit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 92px;
  background: rgb(81, 117, 255, 0.1);
  border-radius: 4px;
}

.signup-date__limit-amount {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  color: #5175ff;
}

.signup-date__limit-duration {
  font-weight: 700;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: #333950;
  opacity: 0.5;
}

.container__side {
  margin-top: 300px;
  position: relative;
  width: 100%;
  height: 320px;
  background-color: #25293a;
  background-image: url(./assets/sign-up/bg-pattern-side.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.signup-content {
  position: relative;
  z-index: 1;
}

.form {
  position: absolute;
  top: 420px;
  left: 5%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  width: 90%;
  height: 485px;
  border-radius: 13px;
  background-color: #fff;
}

.options {
  padding: 10px 30px;
  position: absolute;
  top: 220px;
  left: 5%;
  border-radius: 8px;
  width: 90%;
  height: 170px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  background: #fff;
  border: 1px solid rgba(51, 57, 80, 0.153273);
  box-shadow: 0px 50px 50px -25px rgba(75, 92, 154, 0.747077);
}

.option__item {
  cursor: pointer;
  height: 40px;
  z-index: 4;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(116, 123, 149, 0.4);
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #333950;
}

.price {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #333950;
  opacity: 0.4;
}

.option__item-last {
  border: none;
}

.icon-check {
  height: 9.5px;
  width: 12.49px;
}

.input {
  position: relative;
  margin-inline: 10px;
  height: 70px;
  border-bottom: 1px solid rgba(116, 123, 149, 0.2);
  width: 90%;
}

.input input {
  width: 90%;
  height: 90%;
  border: none;
  outline: none;
}

.scroll {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #333950;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-block: 20px;
  gap: 5px;
  height: 70px;
  border-bottom: 1px solid rgba(116, 123, 149, 0.2);
  width: 90%;
}

.free {
  opacity: 0.5;
  color: #747b95;
  font-weight: bold;
}

.arrow {
  cursor: pointer;
  width: 11px;
  height: 5.5px;
}

.form__btn {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  cursor: pointer;
  transform: 1s;
  background-color: #5175ff;
  border-radius: 28px;
  color: #fff;
  width: 90%;
  height: 56px;
}

.form__btn:hover {
  opacity: 0.6;
}

.error-icon {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header {
    padding-inline: 20px;
  }

  .pattern-header {
    top: -280px;
    right: -400px;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero__image {
    width: 281px;
    height: 314px;
  }

  .card__btn {
    display: none;
  }

  .card__btn-tablet {
    display: flex;
  }

  .signup-header {
    margin-left: 50px;
    justify-content: flex-start;
  }

  .signup-date__limit-title {
    margin-block: 50px 20px;
  }

  .signup-date__limit-item {
    width: 100px;
    height: 128px;
  }

  .signup-date__limit-amount {
    font-size: 56px;
  }

  .signup-date__limit-duration {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) {
  .header {
    justify-content: flex-start;
  }

  .signup-pattern-header {
    display: none;
  }

  .hero {
    padding-inline: 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .hero__content {
    width: 50%;
  }

  .hero__title,
  .hero__description {
    text-align: left;
  }

  .hero__btn {
    margin-inline: 0;
  }

  .footer {
    padding-top: 400px;
    margin-top: 600px;
    height: 986px;
  }

  .card {
    padding: 30px;
    height: 316px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .card__right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card__list {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    text-align: left;
  }

  .card__item {
    margin-block: 10px;
  }

  .card__price,
  .card__users {
    margin-top: -20px;
  }

  .card.card__pro {
    overflow: hidden;
  }

  .card.card__pro::after {
    top: 50px;
    left: -240px;
  }

  .signup-content {
    margin-top: 150px;
  }

  .footer__title {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
  }

  .footer__date-limit {
    width: 100px;
    height: 128px;
  }

  .signup-hero__description {
    width: 70%;
  }

  .form {
    margin-inline: auto;
    width: 60%;
    left: 20%;
  }
}

@media only screen and (min-width: 1025px) {
  .header {
    justify-content: flex-start;
    padding-inline: 100px;
  }

  .pattern-header {
    top: -500px;
    right: -400px;
  }

  .hero {
    padding-inline: 100px;
  }

  .hero__image {
    width: 475px;
    height: 531px;
  }

  .hero__title {
    font-size: 56px;
    line-height: 64px;
  }

  .hero__description {
    font-size: 18px;
    line-height: 28px;
  }

  .card__price {
    margin-top: 20px;
  }

  .card__users {
    margin-block: 30px;
  }

  .card__list {
    width: 100%;
    margin-top: -30px;
    text-align: center;
    align-items: center;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 330px 70px 50px;
    height: 603px;
    width: 100%;
    margin-top: 260px;
  }

  .footer::after {
    top: 50px;
    left: -500px;
  }

  .footer__title {
    text-align: left;
  }

  .footer__btn {
    margin-inline: 0;
  }

  .cards__container {
    margin-top: -80px;
    flex-direction: row;
  }

  .card {
    flex-direction: column;
    height: 508px;
  }

  .amount {
    font-weight: 700;
    font-size: 56px;
    line-height: 48px;
  }

  .amount__subtitle {
    font-size: 16px;
    line-height: 28px;
  }

  .signup-content {
    margin-top: 0;
  }

  .signup-hero__content {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .signup-hero__header {
    display: flex;
    justify-content: flex-start;
  }

  .signup-hero__title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 56px;
    line-height: 64px;
    width: 40%;
  }

  .signup-hero__description {
    display: block;
    font-size: 18px;
    line-height: 28px;
    width: 37%;
  }

  .signup-date__limit-title {
    text-align: left;
  }

  .signup-hero__title,
  .signup-hero__description,
  .signup-date__limit {
    margin-left: 100px;
    text-align: left;
  }

  .signup-date__limit-item {
    padding: 10px;
    width: 100px;
    height: 128px;
    justify-content: space-around;
  }

  .signup-date__limit-amount {
    font-size: 56px;
    line-height: 48px;
  }

  .signup-date__limit-duration {
    font-size: 16px;
    line-height: 28px;
  }

  .signup-header {
    margin-left: 100px;
    display: flex;
    justify-content: flex-start;
  }

  .container__side {
    margin-block: 0;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #25293a;
    min-height: 100vh;
    width: 420px;
  }

  .form {
    left: 50%;
    top: 10px;
    width: 30%;
  }
}
