@font-face {
  font-family: 'Sofia';
  src:
    url('/assets/fonts/SofiaSans-VariableFont_wght.woff2') format('woff2 supports variations'),
    url('/assets/fonts/SofiaSans-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 1000;
}

@font-face {
  font-family: 'SofiaCond';
  src:
    url('/assets/fonts/SofiaSansSemiCondensed-VariableFont_wght.woff2') format('woff2 supports variations'),
    url('/assets/fonts/SofiaSansSemiCondensed-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 1000;
}

@font-face {
  font-family: 'Aleo';
  src:
    url('/assets/fonts/Aleo-VariableFont_wght.woff2') format('woff2 supports variations'),
    url('/assets/fonts/Aleo-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 1000;
}

@font-face {
  font-family: 'AleoItalic';
  src:
    url('/assets/fonts/Aleo-Italic-VariableFont_wght.woff2') format('woff2 supports variations'),
    url('/assets/fonts/Aleo-Italic-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 1000;
}

:root {
  --clr-prim: #274050;
  --clr-sec: #6D8270;
  --clr-ter: #F9C3B1;
  --clr-bg: #E7E9E3;
  --clr-light: #FFFFFF;

  --clr-alert: #F9C3B1;
  --clr-green: #CFD7A9;
  --clr-blue: #9ACEE5;

  --fs-h1: clamp(2.5rem, 2.2697rem + 1.2281vw, 3.375rem);
  --fs-h3: clamp(1.5rem, 1.4178rem + 0.4386vw, 1.8125rem);
  --fs-h4: clamp(1.3rem, 1.4178rem + 0.4386vw, 1.7125rem);
  --fs-p: clamp(1.0625rem, 1.0296rem + 0.1754vw, 1.1875rem);
  --fs-sub: clamp(1.125rem, 1.0921rem + 0.1754vw, 1.25rem);

  --font-fallback: BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-sans;
}

body {
  font-size: 16px;
  font-family: 'Sofia', var(--font-fallback);
}

/* TYPOGRAPHY */

h1 {
  font-family: 'SofiaCond';
  font-size: var(--fs-sub);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-prim);
}

h2 {
  font-family: 'Aleo';
  font-weight: 400;
  font-size: var(--fs-h1);
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--clr-prim);

  & em,
  strong {
    font-family: 'AleoItalic';
    font-weight: 700;
    font-style: normal;
  }
}

h3 {
  font-family: 'Aleo';
  font-weight: 400;
  font-size: var(--fs-h3);
  letter-spacing: 0px;
  line-height: 1.1;
  color: var(--clr-prim);

  & em {
    font-family: 'AleoItalic';
    font-weight: 700;
    font-style: normal;
  }
}

p,
li {
  font-family: 'Sofia';
  font-weight: 400;
  font-size: var(--fs-p);
  letter-spacing: -0.3px;
  line-height: 1.4;
  color: var(--clr-prim);
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  margin-top: 1rem;
}

a {
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--clr-green);
  transition: all 200ms ease;

  &:hover {
    text-decoration-color: var(--clr-sec);
  }
}

ul,
ol {
  margin-bottom: 1rem;
}

.lrg {
  font-size: 1.25rem;
  font-weight: 700;
}

.pink {
  color: var(--clr-ter);
}

.green {
  color: var(--clr-sec);
}

/* LAYOUT */

.section {
  padding-block: 2rem;
}

hr {
  border: none;
  border-top: 1.5px solid var(--clr-bg);
  color: var(--clr-bg);
  overflow: visible;
  text-align: center;
  height: 2px;
}

/* NAVIGATION */

#navigation {
  width: 100%;
  background-color: var(--clr-bg);
}

.nav-container {
  max-width: 1400px;
  padding: 0 1rem;
  height: 10rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.nav-logo {
  max-width: 240px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3rem;

  & a,
  li {
    font-family: 'SofiaCond';
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    font-size: var(--fs-sub);
    color: var(--clr-prim);
    text-align: center;
    text-decoration: none;
    cursor: pointer;

    &:hover {
      color: var(--clr-sec);
      text-decoration: none;
    }

    & .active {
      color: var(--clr-sec);
    }
  }
}

/* HEADING */

.heading {
  position: relative;
  background-color: #fff;
  z-index: 1;
}

.heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-bg);
  clip-path: ellipse(80% 50% at 40% 0%);
  z-index: -1;
}

.heading-container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
  gap: 2rem;
}

.heading-text {
  background-color: var(--clr-light);
  border-radius: 20px;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 1rem;

  & h1 {
    color: var(--clr-sec);
  }

  & h2 {
    margin-bottom: 1rem;
  }
}

.heading-img {
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--clr-light);
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
}

.heading-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.floating-button {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--clr-prim);
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: -20px;
  right: calc(50px);
  transition: all 300ms ease;
  cursor: pointer;

  & a {
    text-decoration: none;
  }

  & svg {
    max-width: 26px;
  }

  & p {
    font-family: 'SofiaCond';
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: var(--clr-light);
  }

  &:hover {
    transform: scale(105%);
    box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.20);
  }
}

/* MEDIA */

figcaption {
  margin-top: 1.4rem;
  font-size: 1em;
  color: var(--clr-sec);
}

/* USPS */

.usps {
  position: relative;
  padding-top: 4rem;
}

.usps-container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 2rem;
}

.usp-block {
  text-align: center;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
  border-radius: 20px;

  &.green {
    background-color: var(--clr-green);
  }

  &.pink {
    background-color: var(--clr-ter);
  }

  &.blue {
    background-color: var(--clr-blue);
  }

  &.grey {
    background-color: var(--clr-bg);
  }

  & svg {
    max-width: 50%;
  }
}

.location {
  height: auto;
  width: 170px;
  max-width: 60%;
  background-color: var(--clr-ter);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 100vw;

  & svg {
    height: 40px;
  }

  & p {
    line-height: 1.1;
  }
}

/* LAYOUT GRID */

.layout-section {
  max-width: 1080px;
  margin-inline: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.column {
  grid-column: span var(--span, 12);
}

.blocks {
  background: var(--block-bg, transparent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.blocks h1,
.blocks h2,
.blocks h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

.blocks h4,
.blocks h5,
.blocks h6 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-sec);
}

.blocks img {
  border-radius: 20px;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
}

/* BUTTONS */

.button {
  font-family: 'SofiaCond';
  font-weight: 700;
  letter-spacing: 0;
  lin-height: 1;
  text-transform: uppercase;
  font-size: var(--fs-p);
  color: var(--clr-prim);
  background-color: var(--clr-light);
  border: 3px solid var(--clr-light);
  width: fit-content;
  padding: 8px 20px 6px;
  border-radius: 100vw;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
  transition: all 300ms ease;

  &:hover {
    color: var(--clr-prim);
    background-color: var(--clr-light);
    border: 3px solid var(--clr-light);
    transform: scale(105%);
    box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.20);
  }

  &.sec {
    background-color: var(--clr-sec);
    border: 3px solid var(--clr-sec);
    color: var(--clr-light);

    &:hover {
      background-color: var(--clr-prim);
      border: 3px solid var(--clr-prim);
      color: var(--clr-light);
    }
  }
}

/* FORM */

.form {
  position: relative;
  background-color: var(--clr-light);
  z-index: 1;
}

.homepage .form {
  background-color: var(--clr-bg);
}

.form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-sec);
  z-index: -1;
  clip-path: ellipse(80% 50% at 40% 100%);
}

.form-container {
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 0rem;
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 2rem;
  background-color: var(--clr-prim);
  border-radius: 20px;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
}

.form-text {
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 1rem;

  & h1 {
    color: var(--clr-ter);
  }

  & h2,
  p {
    color: var(--clr-light);
  }

  & a {
    text-decoration-color: var(--clr-ter);

    &:hover {
      text-decoration-color: var(--clr-light);
    }
  }
}

/* FORMS */

form,
.form-col {
  display: grid;
  gap: 24px;
  width: 100%;
  align-items: start;
}

.form-wrapper {
  display: grid;
  gap: 32px;
  width: 100%;
  align-items: start;
}


fieldset {
  border: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.field {}

label {
  font-family: 'Sofia';
  font-size: var(--fs-p);
  color: var(--clr-light);
  line-height: 1.0;
  letter-spacing: -0.3px;
}

input:not([type="submit"]) {
  font-family: 'Sofia';
  color: var(--clr-prim);
  font-weight: 600;
  letter-spacing: 0;
  font-size: var(--fs-p);
  background-color: var(--clr-light);
  border: 3px solid var(--clr-light);
  outline: none;
  border-radius: 100px;
  padding: 10px 16px;
  width: 100%;
  transition: border 300ms ease;
}

input[type="submit"] {
  font-family: 'SofiaCond';
  color: var(--clr-prim);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  font-size: var(--fs-p);
  color: var(--clr-prim);
  background-color: var(--clr-ter);
  border: 3px solid var(--clr-ter);
  width: fit-content;
  padding: 10px 40px;
  border-radius: 100vw;
  cursor: pointer;
  transition: all 300ms ease;

  &:hover {
    transform: scale(105%);
    color: var(--clr-prim);
    background-color: var(--clr-green);
    border-color: var(--clr-green);
  }
}

input:focus-within {
  border: 3px solid var(--clr-ter);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--clr-prim) !important;
  font-weight: 600;
  background-color: var(--clr-light);
  border: 3px solid var(--clr-light);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: var(--fs-p);
  cursor: pointer;
  transition: border 300ms ease;
  width: 100%;
  outline: none;
}

select:hover {
  border: 3px solid var(--clr-ter);
}

select:focus {
  outline: none;
  border: 3px solid var(--clr-ter);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

input.invalid {}

input.disabled {
  display: none;
  background-color: var(--clr-green);
  border-color: var(--clr-green);
  opacity: 0.5;
  cursor: initial;

  &:hover {
    transform: none;
  }
}

.locked {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.error-message {
  color: var(--clr-alert);
  font-weight: 600;
}

.form-message.error {
  font-size: var(--fs-p);
  font-weight: 600;
  color: var(--clr-alert);
}

.form-message.success {
  padding: 1rem;
  font-size: var(--fs-p);
  font-weight: 600;
  color: var(--clr-prim);
  padding: 1rem;
  background-color: var(--clr-green);
  border-radius: 12px;
}

/* FAQS */

.faqs-section {
  max-width: 920px;
  margin-inline: auto;
  padding-inline: 1rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.faq-item {
  border-bottom: 1.5px solid var(--clr-bg);
  padding: 2rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-question h2 {
  font-size: var(--fs-h3);
  margin: 0;
  text-wrap: initial;
  font-weight: 600;
  cursor: pointer;
  transition: 200ms color ease;

  &:hover {
    color: var(--clr-sec);
  }
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;

  & p {
    margin-top: 1.2rem;
  }
}

.faq-answer.show {
  opacity: 1;
}

/* REVIEWS */

.reviews {
  position: relative;
  background-color: var(--clr-bg);
  z-index: 1;
  text-align: center;
}

.reviews::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  top: -8rem;
  background: var(--clr-bg);
  z-index: -1;
  clip-path: ellipse(190% 100% at 60% 100%)
}

.reviews-container {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 12rem;
  padding-bottom: 6rem;
  padding-inline: 2rem;
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.reviews-wrapper {
  position: relative;
}

.review {
  position: absolute;
  top: 0rem;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.review.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.stars {
  position: relative;
  width: 150px;
  height: 30px;
  margin: 0 auto 1.5rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23F9C3B1" stroke-width="2" viewBox="0 0 40 48"><path d="M20 1C20.0727 1 20.1406 1.03192 20.1875 1.08496L20.2266 1.14453L25.7363 12.8809L25.9629 13.3643L26.4902 13.4453L38.7871 15.3232C38.8807 15.3379 38.9577 15.4039 38.9873 15.4922C39.0164 15.5789 38.9949 15.6771 38.9277 15.7461V15.7471L29.9932 24.9082L29.6416 25.2695L29.7227 25.7676L31.834 38.709V38.71C31.8495 38.8047 31.8091 38.8993 31.7324 38.9531L31.7285 38.9551C31.6872 38.9843 31.638 38.9999 31.5879 39C31.5496 39 31.5077 38.99 31.4678 38.9688L20.4834 32.8936L19.999 32.626L19.5156 32.8936L8.53027 38.9688C8.49054 38.9897 8.44918 39 8.41113 39C8.36165 38.9999 8.31171 38.9846 8.26855 38.9541L8.2666 38.9531L8.21582 38.9053C8.17299 38.8517 8.15344 38.7809 8.16504 38.71V38.709L10.2764 25.7676L10.3574 25.2695L10.0059 24.9082L1.07129 15.7471V15.7461C1.00592 15.679 0.983595 15.5821 1.0127 15.4941C1.04338 15.4028 1.12184 15.3381 1.21289 15.3242L13.5098 13.4453L14.0371 13.3643L14.2637 12.8809L19.7725 1.14551C19.8148 1.05576 19.9039 1.00003 20 1Z"/></svg>') repeat-x;
  background-size: 30px 30px;
  overflow: hidden;
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 0%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23F9C3B1" viewBox="0 0 40 48"><path d="M39.9354 15.1748C39.7866 14.7304 39.4016 14.4066 38.9385 14.3353L26.6416 12.4564L21.132 0.718829C20.9257 0.280031 20.4845 0 20.0001 0C19.5157 0 19.075 0.280031 18.8681 0.718829L13.3585 12.4564L1.06168 14.3359C0.598538 14.4066 0.214145 14.731 0.0647631 15.1754C-0.0839939 15.6192 0.0278863 16.1093 0.355402 16.4449L9.28957 25.6066L7.17822 38.548C7.10072 39.0205 7.3001 39.4962 7.692 39.7712C7.90701 39.9231 8.15889 40 8.4114 40C8.61891 40 8.82767 39.9475 9.01643 39.8437L19.9994 33.7687L30.9825 39.8437C31.1712 39.9475 31.38 40 31.5875 40C31.84 40 32.0925 39.9231 32.3069 39.7712C32.6988 39.4962 32.8982 39.0205 32.8207 38.548L30.7093 25.6066L39.6435 16.4449C39.9716 16.1086 40.0841 15.6186 39.9354 15.1748Z"/></svg>') repeat-x;
  background-size: 30px 30px;
  transition: width 0.4s ease;
}

.review-text {}

.review-author {
  font-family: 'AleoItalic';
  font-weight: 600;
  margin-top: 1rem;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.controls button {
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.controls button:hover {
  background: var(--clr-ter);
  color: white;
}

/* FOOTER */

footer {
  background-color: var(--clr-sec);
  padding-block: 2rem;
  color: var(--clr-light);
}

footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;

  & li {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--fs-sub);
    color: var(--clr-light);
    text-align: left;
    cursor: pointer;

    & a:hover {
      color: var(--clr-ter);
      text-decoration: none;
    }
  }
}

footer dl {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: start;
  row-gap: 1rem;
  line-height: 1.6;
  font-size: 1.1rem;

  & svg {
    max-width: 18px;
  }
}

footer a.footer-link {
  color: var(--clr-light);
  text-decoration: none;

  &:hover {
    color: var(--clr-green);
  }
}

footer p {
  font-size: 1.1rem;
  color: var(--clr-light);
}

.footer-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-block: 2rem;
  padding-inline: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: end;
}

.footer-links img {
  max-width: 220px;
  margin-bottom: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logos {
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: end;

  & img {
    max-width: 140px;
    max-height: 80px;
  }
}

/* STATIC PAGE */

.static-container {
  max-width: 960px;
  margin-inline: auto;
  padding-block: 4rem;
  padding-inline: 1rem;
}

.static-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* MEDIA QUERIES */

@media screen and (max-width: 870px) {

  .heading-container {
    grid-template-columns: 1fr;
    gap: 0rem;
    padding-inline: 0px;
  }

  .heading-text {
    padding: 3rem 2rem;
    border-radius: 0;
  }

  .heading-img {
    border-radius: 0;
    padding-inline: 0rem;
  }

  .heading-img img {
    border-radius: 0;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    border-radius: 0;
  }

  .form-text {
    padding: 0;
  }

  .floating-button {
    transform: scale(80%);
    bottom: -40px;
    left: 1rem;

    &:hover {
      transform: scale(84%);
    }
  }

  .static-container {
    padding-block: 2rem;
  }

  .usps-container {
    grid-template-columns: 1fr 1fr;
  }

  .usp-block {
    padding: 3rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-logos {
    justify-self: start;
    grid-template-columns: auto;
    align-items: end;
    text-align: center;

    & img {
      justify-self: start;
    }
  }

  #navigation nav {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .heading-img {
    aspect-ratio: 10 / 8;
  }

  .nav-container {
    height: 8rem;
  }

  .nav-logo {
    max-width: 200px;
  }

  .heading-text {
    padding: 3rem 1rem;
    border-radius: 0;
  }

  .usps-container {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1rem;
  }

  .column {
    order: 2;
  }

  .column:has(figure) {
    order: 1;

  }

  .blocks figure {
    width: calc(100vw - 2rem);
  }

  .form-container {
    padding: 3rem 1rem;
  }
}

@media screen and (max-width: 1424px) {
  .form-container {
    border-radius: 0;
  }
}

/* MOBILE MENU */

#menu-button {
  display: block;
  height: 70px;
  width: 70px;
  display: flex;
  overflow: auto;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-prim);
  color: var(--clr-light);
  border-radius: 50%;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.10);
  font-family: 'SofiaCond';
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  padding-top: 2px;
  cusror: pointer;
  z-index: 1000;
  position: absolute;
  right: 1rem;
}

#mobile-menu {
  position: absolute;
  padding: 5rem 0 3rem;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: var(--clr-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.20);

  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s ease, opacity 0.4s ease;
  border-radius: 0%;
}

#mobile-menu.active {
  opacity: 1;
  transform: scaleY(1);
  border-radius: 0;
}

/* menu links */
#mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

#mobile-menu ul li {
  margin: 1rem 0;
}

#mobile-menu a {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--clr-prim);
  font-family: 'SofiaCond';
  font-weight: 700;
  text-transform: uppercase;
}

#close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
}

#mobile-menu.active {
  display: flex;
}

@media (min-width: 870px) {
  #mobile-menu {
    display: none !important;
  }

  #menu-button {
    display: none;
  }

  #main-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  #main-menu {
    display: none;
  }
}