html,
body {
  height: 100%;
  background-color: #f3efec;
  font-family: 'Inter', sans-serif;
  color: #1b1c1e;
}

p {
  margin: 0;
}

.main {
  height: 100%;
  transition: all 0.5s;
}

.header {
  margin-left: 135px;
  margin-top: 50px;
}

.content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  margin-top: 60px;
  margin-left: 24px;
  margin-right: 24px;
}

.content-section.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin-left: 24px;
  margin-right: 24px;
}

.content {
  width: 630px;
}

.content-section.welcome .content {
  width: 490px;
}

.content .title {
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}
.content .title__gradient {
  background: -webkit-linear-gradient(#7a85ff, #75c2ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content .description {
  margin: 0;
  font-size: 18px;
  text-align: center;
  color: #303030;
  letter-spacing: -0.408px;
}

.card-reward {
  padding: 24px 17px;
  border: 2px dashed #d3d7ff;
  border-radius: 10px;
  margin-top: 32px;
  width: 340px;
}

.tab-container {
  transition: all 0.5s;
  display: flex;
  margin-top: 32px;
  width: 382px;
  height: 73px;
  background: #d1ebe4;
  border-radius: 30px;
  padding: 7px;
}

.tab-container .tabs {
  flex-grow: 1;
}

.tab-container .tabs span {
  border-radius: 30px;
  font-weight: 600;
  font-size: 30px;
  color: #1b1c1e;
  text-align: center;
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-container .tabs span.active {
  background-color: white;
}

.payment-container {
  margin-top: 32px;
}

.payment-container .card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  width: 100%;
}

.payment-container .card__title {
  font-weight: 600;
  font-size: 30px;
}
.payment-container .card__price {
  font-weight: 700;
  font-size: 40px;
  color: #7a86ff;
}
.payment-container .card__frequency {
  font-size: 16px;
  color: #707070;
  margin-left: 8px;
}
.payment-container .card__frequency {
  font-size: 16px;
  color: #707070;
  margin-left: 8px;
}
.payment-container .card__iva {
  font-size: 10px;
  color: #707070;
  margin-left: 4px;
}
.payment-container .card__offer {
  font-size: 14px;
  color: #707070;
}

.payment-container .card__benefit {
  display: flex;
  align-items: center;
}
.payment-container .benefit__description {
  margin-left: 12px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #71727a;
}
.payment-container .card__current-plan {
  background: #d3d7ff;
  border-radius: 10px;
  padding: 1px 10px;
  font-weight: 600;
  font-size: 8px;
  line-height: 16px;
  color: #7a86ff;
}

.payment-card-divider {
  width: 32px;
}

.button-primary {
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: #75c3ae;
  border-radius: 12px;
  color: #1b1c1e;
  font-weight: 600;
  font-size: 14px;
  padding: 0 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.button-primary:hover {
  background: #75c3aec2;
}

.footer {
  margin-top: 100px;
  padding-bottom: 50px;
  margin-left: 65px;
  margin-right: 65px;
}

.footer .social-media a {
  margin-right: 14px;
}

.email-contact {
  display: block;
  color: #303030;
  text-decoration: none;
  transition: all 0.3s;
}

.email-contact:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .header {
    margin-left: 24px;
    margin-top: 50px;
  }

  .header img {
    height: 16px;
  }

  .content {
    width: 100%;
    margin-top: 45px;
  }

  .content-section.welcome .content {
    width: 100%;
    margin-top: 45px;
  }

  .content .title {
    font-size: 30px;
    text-align: left;
  }

  .content .description {
    font-size: 14px;
    text-align: left;
  }

  .card-reward {
    width: 100%;
  }

  .tab-container {
    width: 100%;
    height: 47px;
  }

  .tab-container .tabs span {
    font-size: 20px;
  }

  .payment-container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .payment-card-divider {
    height: 32px;
  }

  .footer {
    text-align: center;
  }

  .footer .support-content {
    margin-bottom: 30px;
  }
}
