.header {
  background-color: #fbf8f3;
  margin-bottom: 3rem;
  width: 100vw;
  background: 100% 100%;
  padding-bottom: 8rem;
}
@media screen and (max-width: 37.5em) {
  .header {
    padding-bottom: 0;
    margin-bottom: 5rem;
  }
}
.header-inner {
  padding: 0 3rem;
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
}
.header .main-nav__menu-item {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .header .main-nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__btn-container {
    display: none;
  }
}
.sidebar {
  position: fixed;
  inset: 0;
  z-index: 10;
  padding: 3rem;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  transform-origin: 50% 0%;
  transform: scale(0);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar__menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 6rem;
}
.sidebar__menu-item {
  width: 90%;
  margin: 1rem 0;
  background-color: #7447dd;
  border-radius: 5px;
}
.sidebar__menu-item:hover {
  background-color: #4d13d1;
}
.sidebar__menu-link {
  font-size: 2rem;
  padding: 2rem;
  display: block;
  color: #fbf8f3;
}
.sidebar .btn-container {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 3rem;
}
.sidebar .close {
  position: absolute;
  top: 3rem;
  right: 7rem;
  font-size: 2rem;
  color: #4d13d1;
  cursor: pointer;
}
.show {
  opacity: 100%;
  border-radius: 0%;
  transform: scale(1);
}
.section-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  grid-gap: 2rem;
  grid-auto-flow: dense;
}
.section-1__text-content {
  margin-top: 12rem;
  order: 2;
}
@media screen and (max-width: 75em) {
  .section-1__text-content {
    margin-top: 4rem;
  }
}
.section-1__img-content {
  order: 1;
  border-radius: 50%;
}
.section-2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.section-2__text-content .heading-secondary {
  width: 50%;
}
@media screen and (max-width: 56.25em) {
  .section-2__text-content .heading-secondary {
    width: 100%;
  }
}
.section-2 .highlight--blue {
  display: inline-block;
  margin-bottom: 1rem;
}
.section-2__img-content {
  background-color: #4d13d1;
  border-radius: 7px;
  padding: 4rem;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem;
  margin-bottom: 5rem;
  overflow: hidden;
}
.section-2__img-content .text-box {
  margin-top: 1rem;
  max-width: 85%;
  color: #fff;
}
@media screen and (max-width: 37.5em) {
  .section-2__img-content .text-box {
    justify-self: center;
  }
}
.section-2__img-content .text-box button {
  margin: 1.5rem 0;
}
@media screen and (max-width: 25em) {
  .section-2__img-content .text-box button {
    width: 100%;
  }
}
@media screen and (max-width: 25em) {
  .section-2__img-content img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.section__signup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .section__signup {
    grid-template-columns: 1fr;
    background-color: #dadada;
    height: 100vh;
  }
}
.section__signup header {
  display: flex;
  margin-top: 6rem;
  justify-content: space-between;
}
.section__signup .logo-box .logo {
  font-size: 2.5rem;
  font-weight: 600;
  margin-left: 1rem;
  display: block;
}
.section__signup__text-content {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .section__signup__text-content {
    margin-top: 6rem;
  }
}
.section__signup__text-content .form {
  padding: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section__signup__text-content .form {
    border: 1px solid #999;
    margin-top: 3rem;
    border-radius: 3px;
  }
}
.section__signup__text-content .form .form-group {
  display: flex;
  justify-content: start;
  flex-direction: column;
  margin: 2.5rem 0;
}
.section__signup__text-content .form .form-group label {
  margin-bottom: 0.75rem;
}
.section__signup__text-content .form .form-group input {
  padding: 1.25rem;
  border: 1px solid #dadada;
  border-radius: 5px;
}
.section__signup__text-content .form .form-group--password {
  position: relative;
}
.section__signup__text-content .form .form-group--password img {
  position: absolute;
  right: 0;
  top: 50%;
  right: 1rem;
  cursor: pointer;
}
.section__signup__text-content .form .form-group--checkbox {
  font-weight: 400;
  flex-direction: row;
}
.section__signup__text-content .form .form-group--checkbox label span {
  color: #4d13d1;
  text-decoration: underline;
  font-weight: 600;
  display: block;
}
.section__signup__text-content .form .form-group--checkbox input {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.section__signup__text-content .form .form-group--btn button {
  color: #fff;
  margin-left: 1.5rem;
}
.section__signup__text-content .form .form-group--btn p {
  text-align: center;
  font-weight: 400;
  margin-top: 1rem;
}
.section__signup__text-content .form .form-group--btn p span {
  color: #4d13d1;
}
.section__signup__img-content {
  background-color: #4d13d1;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .section__signup__img-content {
    display: none;
  }
}
.section__signup__img-content .container .img {
  max-width: 75%;
  margin: 13rem auto;
}
@media screen and (max-width: 1024px) {
  .section__signup__img-content .container .img {
    max-width: 100%;
  }
}
.section__signup__img-content .container .text-box {
  color: #fff;
  margin: 0 auto;
  padding: 0 10rem;
  margin-top: -10rem;
}
.section__signup__img-content .container .text-box .lead {
  font-size: 1.8rem;
  line-height: 1.7;
}
.footer {
  background-color: #fbf8f3;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #4f4f4f;
  padding: 0 3rem;
}
.footer-inner {
  max-width: 128rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(50%, 45%) repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 2rem;
  padding: 4rem 0;
}
.footer-inner li {
  margin-bottom: 0.5rem;
}
.footer-inner li a {
  color: inherit;
}
.footer .fiber li span {
  display: block;
  margin-top: 4rem;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 75em) {
  html {
    font-size: 60%;
  }
}
@media screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media screen and (min-width: 112.5em) {
  html {
    font-size: 70%;
  }
}
body {
  font-family: "Inter", sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #000;
}
li {
  list-style: none;
}
button {
  border: none;
  background-color: transparent;
}
.container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 3rem;
}
.flex,
.header .main-nav__menu,
.reviews-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-box {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger-box {
    display: block;
  }
}
.lead-1,
.lead-2,
.lead-3 {
  font-size: 1.8rem;
  color: #4f4f4f;
  margin: 1rem 0;
}
.lead-2 {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.4;
}
.lead-3 {
  color: inherit;
}
.heading-primary {
  font-size: 5rem;
}
.heading-secondary {
  font-size: 4rem;
}
.heading-tertiary {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.highlight--blue {
  text-decoration: underline;
  color: #4d13d1;
  font-weight: 700;
  font-size: 1.8rem;
}
.reviews-container {
  justify-content: start;
  margin-bottom: 1rem;
}
.reviews-container img {
  padding: 0 0.25rem;
}
.reviews-container span {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0.75rem;
}
.checkbox-container {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.checkbox-container .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.checkbox-container .checkbox img {
  padding-right: 0.75rem;
}
.btn-container {
  color: #fff;
  font-size: 1.5rem;
  margin: 1.5rem 0;
}
.btn--blue,
.btn--transparent,
.btn--white {
  color: inherit;
  background-color: #4d13d1;
  padding: 1.5rem 1.75rem;
  margin-right: 2rem;
  font-weight: 600;
  font-size: inherit;
  border-radius: 5px;
  cursor: pointer;
}
.btn--transparent {
  background: transparent;
  color: #000;
}
.btn--white {
  font-size: 1.4rem;
  background-color: #fff;
  color: #4d13d1;
}
.description {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  grid-gap: 4rem;
  margin: 3.5rem 0;
}
.description h4 {
  margin: 1.5rem 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 37.5em) {
  .description {
    grid-gap: 2rem;
  }
}
.card-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 3rem;
  justify-items: center;
}
.card-box .card {
  padding: 3em;
  border-radius: 7px;
  border: 1px solid #dadada;
}
.card-box .avatar {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.card-box .avatar-img {
  margin-right: 1.5rem;
}
.card-box .avatar p {
  font-size: 1.3rem;
  font-weight: 500;
}
.card-box .highlight--blue {
  margin-bottom: 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
}
.card-box .card-btn {
  max-width: 100%;
  color: #4d13d1;
  font-weight: 600;
  margin: 1rem 0;
  border: 1px solid #dadada;
  padding: 1.25rem;
  font-size: 1.5rem;
  border-radius: 7px;
  width: 100%;
}
