* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

/* NAVBAR */

.navbar {
  background: linear-gradient(90deg, #e0f7f6 0%, #eaf2ff 50%, #f3e8ff 100%);
  border-bottom: 1px solid rgba(44, 166, 164, 0.25);
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  width: 100%;
  max-width: none;
  height: 80px;
  margin: 0;
  padding: 0 40px;

  display: flex;
  align-items: center;
}

#navbar__logo {
  background-color: #2ca6a4;
  background-image: linear-gradient(to top, #15e4e0 0%, #9817ee 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  letter-spacing: -0.06em;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 3rem;
  white-space: nowrap;
  font-weight: 800;
  z-index: 2;
  flex-shrink: 0;
  min-width: max-content;
  padding-right: 6px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  text-align: center;
  flex-wrap: nowrap;
  gap: 2rem;

  margin-left: auto;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 0.55rem;
  height: 100%;
  transition: color 0.3s ease;
}

.navbar__links:hover {
  color: #2ca6a4;
  transition: all 0.3s ease;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0 20px;
  height: 42px;
  min-width: 120px;
  border: none;
  outline: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #2ca6a4, #3b82f6);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button:hover {
  background: linear-gradient(90deg, #3b82f6, #2ca6a4);
  transform: translateY(-2px);
}

.navbar__toggle {
  display: none;
}

/* HERO SECTION */

.main {
  width: 100%;
  min-height: calc(100vh - 80px);
  background-image: url("images/HomeBackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main__container {
  min-height: calc(100vh - 80px);
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 3rem;
}

.main__content {
  max-width: 1050px;
  padding: 2rem;
  text-align: left;
}

.main__content h1 {
  font-size: clamp(4rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  background-image: linear-gradient(to top, #15e4e0 0%, #9817ee 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main__content h2 {
  margin-top: 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #10234a;
}

.main__content p {
  margin-top: 1.5rem;
  max-width: 760px;

  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.7;
  font-weight: 500;
  color: #42526b;
}

.main__btn {
  margin-top: 2.5rem;
  font-size: 1rem;
  background-image: linear-gradient(
    135deg,
    #2ca6a4 0%,
    #4f8cff 50%,
    #7c3aed 100%
  );
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  color: black;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
  overflow: hidden;
  width: fit-content;
}

.main__btn a {
  position: relative;
  z-index: 2;
  color: white;
  text-decoration: none;
}

.main__btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 100%, #4f8cff 50%, #2ca6a4 0%);
  transition: all 0.35s;
  border-radius: 999px;
}

.main__btn:hover {
  color: #fff;
}

.main__btn:hover:after {
  width: 100%;
}
.main__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding-right: 0;
}

.main__image img {
  width: min(40vw, 510px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(44, 166, 164, 0.22);
}
/* MOBILE */

@media screen and (max-width: 960px) {
  .navbar__container {
    width: 100%;
    max-width: none;
    height: 80px;
    margin: 0;
    padding: 0 24px;

    display: flex;
    align-items: center;
  }

  #navbar__logo {
    padding-left: 0;
    font-size: 2.5rem;
  }

  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: absolute;
    top: -1000px;
    left: 0;

    width: 100%;
    height: auto;
    min-height: 0;

    opacity: 0;
    z-index: -1;

    background: linear-gradient(180deg, #e0f7f6 0%, #eaf2ff 50%, #f3e8ff 100%);
    transition: all 0.5s ease;
    padding: 1rem 0 2rem;

    margin-left: 0;
    gap: 1rem;
  }

  .navbar__menu.active {
    top: 80px;
    left: 0;
    opacity: 1;
    z-index: 99;
    font-size: 1.4rem;
  }

  .navbar__item {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
  }

  .navbar__links {
    text-align: center;
    padding: 0.1rem 1.2rem;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .navbar__btn {
    width: 100%;
    height: auto;
    padding: 1rem 0 0;
    display: flex;
    justify-content: center;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: none;
    margin: 0;
    height: 48px;
    border-radius: 14px;
  }

  #mobile-menu {
    position: absolute;
    top: 22px;
    right: 25px;
    cursor: pointer;
  }

  .navbar__toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #1f2937;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main {
    background-size: cover;
    background-position: center top;
  }

  .main__container {
    min-height: calc(100vh - 80px);
    padding: 36px 20px 36px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .main__content {
    max-width: 100%;
    padding: 0;
    margin-top: 0;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main__content h1 {
    font-size: clamp(3.2, 10vw, 3rem);
    letter-spacing: -0.04em;
  }

  .main__content h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.1rem, 4.8vw, 1.25rem);
  }

  .main__content p {
    margin-top: 0.8rem;
    font-size: 1rem;
    max-width: 95%;
    line-height: 1.55;
  }

  .main__btn {
    margin-top: 0.7rem;
  }
  .main__image {
    width: 100%;
    margin-left: 0;
    margin-top: 0;

    display: flex;
    justify-content: center;

    transform: translateY(-15px);
  }

  .main__image img {
    width: min(90vw, 380px);
    max-height: 55vh;
    border-radius: 20px;
  }
}
/* =========================
   FOOTER
========================= */

.footer {
  width: 100%;
  background: linear-gradient(90deg, #e0f7f6 0%, #eaf2ff 50%, #f3e8ff 100%);
  padding: 4rem 50px 1.5rem;
}

.footer__container {
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footer__brand {
  max-width: 520px;
}

.footer__brand h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;

  background-image: linear-gradient(to top, #15e4e0 0%, #9817ee 100%);
  background-size: 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__brand p {
  margin-top: 1rem;
  color: #42526b;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.footer__contact {
  max-width: 420px;
}

.footer__contact h3 {
  font-size: 1.4rem;
  color: #10234a;
  font-weight: 800;
}

.footer__contact p {
  margin-top: 1rem;
  color: #42526b;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer__contact a {
  display: inline-block;
  margin-top: 1rem;

  color: #2ca6a4;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: #7c3aed;
}

.footer__bottom {
  max-width: 1300px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;

  text-align: center;
}

.footer__bottom p {
  color: #42526b;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Footer mobile */
@media screen and (max-width: 960px) {
  .footer {
    padding: 3rem 24px 1.5rem;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .footer__brand,
  .footer__contact {
    max-width: 100%;
  }

  .footer__brand h2 {
    font-size: 3rem;
  }

  .footer__bottom {
    margin-top: 2.5rem;
  }
}
.features-hero {
  min-height: 45vh;
  padding: 7rem 50px 4rem;
  text-align: center;
  background: linear-gradient(90deg, #e0f7f6 0%, #eaf2ff 50%, #f3e8ff 100%);
  overflow: visible;
}

.features-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;

  background-image: linear-gradient(to top, #15e4e0 0%, #9817ee 100%);
  background-size: 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  padding: 0.15em 0.08em;
  overflow: visible;
}

.features-hero p {
  max-width: 720px;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #42526b;
  font-weight: 500;
}
.features-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 50px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 28px;
  background-image: linear-gradient(to top, #9df1f0 0%, #cf9cf1 100%);
  border: 1px solid rgba(44, 166, 164, 0.18);
  box-shadow: 0 20px 60px rgba(44, 166, 164, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(44, 166, 164, 0.18);
}

.feature-card h3 {
  font-size: 1.45rem;
  color: #10234a;
  font-weight: 800;
}

.feature-card p {
  margin-top: 1rem;
  color: #42526b;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}

.feature-preview {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 50px 6rem;

  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.feature-preview__text h2,
.score-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #10234a;
  font-weight: 800;
}

.feature-preview__text p,
.score-section p {
  margin-top: 1.25rem;
  max-width: 750px;
  color: #42526b;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}

.feature-preview__image {
  display: flex;
  justify-content: center;
}

.feature-preview__image img {
  width: min(100%, 560px);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(44, 166, 164, 0.22);
}

.score-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 50px;
  text-align: center;
}

.score-section p {
  margin-left: auto;
  margin-right: auto;
}
.analytics-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #10234a;
  font-weight: 800;
}
.analytics-section p {
  margin-top: 1.25rem;
  max-width: 750px;
  color: #42526b;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}
.analytics-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 50px;
  text-align: center;
}

.analytics-section p {
  margin-left: auto;
  margin-right: auto;
}
.feature-preview--reverse {
  grid-template-columns: 0.8fr 1.35fr;
}

.feature-preview--reverse .feature-preview__image {
  order: 1;
}

.feature-preview--reverse .feature-preview__text {
  order: 2;
}
.feature-card {
  cursor: pointer;
  overflow: hidden;
}

.feature-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);
  color: #10234a;

  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card__extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.feature-card__extra p {
  margin-top: 1rem;
}

.feature-card.active {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(44, 166, 164, 0.22);
}

.feature-card.active .feature-card__extra {
  max-height: 260px;
  opacity: 1;
}

.feature-card.active .feature-card__icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 960px) {
  .features-hero {
    min-height: auto;
    padding: 4.5rem 24px 3rem;
    text-align: center;
    overflow: visible;
  }

  .features-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    padding: 0.15em 0.08em;
    overflow: visible;
  }

  .features-hero p {
    max-width: 95%;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 3rem 24px;
    gap: 1.4rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 22px;
    text-align: left;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .feature-preview {
    grid-template-columns: 1fr;
    padding: 3rem 24px 4rem;
    gap: 2rem;
    text-align: center;
  }

  .feature-preview__text h2,
  .score-section h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .feature-preview__text p,
  .score-section p {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
  }

  .feature-preview__image img {
    width: min(82vw, 320px);
    border-radius: 28px;
  }

  .score-section {
    padding: 3.5rem 24px;
    text-align: center;
  }

  .analytics-section {
    padding: 3.5rem 24px;
    text-align: center;
  }
  .feature-preview--reverse .feature-preview__image,
  .feature-preview--reverse .feature-preview__text {
    order: initial;
  }
}
@media screen and (max-width: 480px) {
  .features-hero {
    padding: 3.5rem 20px 2.5rem;
  }

  .features-hero h1 {
    font-size: 2.35rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .features-grid {
    padding: 2.5rem 20px;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-preview {
    padding: 2.5rem 20px 3.5rem;
  }

  .feature-preview__text h2,
  .score-section h2 {
    font-size: 2rem;
  }

  .feature-preview__image img {
    width: min(86vw, 280px);
  }

  .score-section {
    padding: 3rem 20px;
  }
  .analytics-section {
    padding: 3rem 20px;
  }
  .feature-preview--reverse .feature-preview__image,
  .feature-preview--reverse .feature-preview__text {
    order: initial;
  }
}
/* =========================
   PRIVACY PAGE
========================= */

.privacy-section {
  min-height: calc(100vh - 80px);
  padding: 6rem 50px;
  background: linear-gradient(90deg, #e0f7f6 0%, #eaf2ff 50%, #f3e8ff 100%);
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-container h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;

  background-image: linear-gradient(to top, #15e4e0 0%, #9817ee 100%);
  background-size: 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-updated {
  margin-top: 1rem;
  color: #42526b;
  font-size: 1rem;
  font-weight: 600;
}

.privacy-card {
  margin-top: 3rem;
  padding: 3rem;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 166, 164, 0.18);
  box-shadow: 0 24px 70px rgba(44, 166, 164, 0.14);

  color: #42526b;
}

.privacy-card h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #10234a;
  font-weight: 800;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  margin-top: 0.75rem;
  color: #42526b;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
}

.privacy-card a {
  color: #2ca6a4;
  font-weight: 700;
  text-decoration: none;
}

.privacy-card a:hover {
  color: #7c3aed;
}
.privacy-list {
  margin-top: 1rem;
  padding-left: 2rem;
  color: #42526b;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
}
.privacy-list li {
  margin-bottom: 0.6rem;
  color: #42526b;
}
.privacy-list li p {
  color: #42526b;
}

@media screen and (max-width: 960px) {
  .privacy-section {
    padding: 4rem 24px;
  }

  .privacy-container h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
    line-height: 1.08;
  }

  .privacy-card {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 24px;
  }

  .privacy-card h2 {
    font-size: 1.35rem;
  }

  .privacy-card p {
    color: #42526b;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
  }
  .privacy-list {
    margin-top: 1rem;
    padding-left: 2rem;
    color: #42526b;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 500;
  }

  .privacy-list li {
    margin-bottom: 0.6rem;
  }
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  min-height: 50vh;
  padding: 7rem 50px 4rem;
  text-align: center;
  background: linear-gradient(90deg, #e0f7f6 0%, #eaf2ff 50%, #f3e8ff 100%);
}

.about-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;

  background-image: linear-gradient(to top, #15e4e0 0%, #9817ee 100%);
  background-size: 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  padding: 0.12em 0.08em;
}

.about-hero p {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: #42526b;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  font-weight: 500;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 50px;

  display: flex;
  justify-content: center;
}

.about-text {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-text h2,
.about-card h2,
.about-values h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #10234a;
  font-weight: 800;
}

.about-text p,
.about-card p,
.about-value p {
  margin-top: 1.25rem;
  color: #42526b;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
}

.about-card-section {
  padding-top: 2rem;
}

.about-card {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 166, 164, 0.18);
  box-shadow: 0 24px 70px rgba(44, 166, 164, 0.14);
  text-align: center;
}

.about-card p {
  margin-left: auto;
  margin-right: auto;
}

.about-values {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 50px 6rem;
  text-align: center;
}

.about-values__grid {
  margin-top: 2.5rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-value {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 166, 164, 0.18);
  box-shadow: 0 20px 60px rgba(44, 166, 164, 0.12);
}

.about-value h3 {
  font-size: 1.4rem;
  color: #10234a;
  font-weight: 800;
}

@media screen and (max-width: 960px) {
  .about-hero {
    min-height: auto;
    padding: 4.5rem 24px 3rem;
  }

  .about-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: 1.08;
  }

  .about-section {
    padding: 3.5rem 24px;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .about-card {
    padding: 2rem;
    border-radius: 24px;
  }

  .about-values {
    padding: 3.5rem 24px 4rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-value {
    padding: 1.5rem;
  }
}
