@import "normalize.css";
.cta {
  background-color: var(--color-accent);
  color: white;
  padding: 1rem 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: 0.3s;
  font-size: 18px;
  border-radius: 3rem;
}
.cta :hover {
  background-color: #3e3736;
}
.cta svg {
  width: 32px;
  height: 32px;
  margin-bottom: -3px;
  display: inline-block;
}
@media screen and (min-width: 620px) {
  .cta {
    padding: 1.2rem 3rem;
  }
}

.summary__item {
  border: 1px solid var(--color-accent);
  border-radius: 2.5rem;
}
.summary__item[open] {
  background-color: rgba(245, 235, 226, 0.3);
}
.summary__item summary {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  list-style-type: none;
  gap: 1rem;
  font-size: 18px;
}
.summary__item summary span {
  flex: 1;
}
@media screen and (min-width: 620px) {
  .summary__item summary {
    font-size: 24px;
  }
}
.summary__item--content {
  padding: 1.5rem;
  padding-top: 0;
  margin-top: -1rem;
}
.summary__item[open] > summary {
  list-style-type: none;
}
.summary__item summary::after {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 2rem;
  display: block;
  content: " ";
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACDSURBVHgB7ZSxDYAgEEUPwiA4glsAFZu6ApuoG1BSEPDOxMRGvKiFBS+53BUvn+YHAAbWWk/DcRVHEkJMx3nnSviYHvjDwL0GxhjdkqSUM+1SynDlpJRiCCEKKuypZ2/xqtYa8VhaFj6oaaPb9HLOK3BwzlUajtt72AMfwPqxkZHpwQZKPSHsY96n5gAAAABJRU5ErkJggg==");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  transform: 0.3s;
}
.summary__item[open] > summary::after {
  display: block;
  content: " ";
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLW1pbnVzIj48cGF0aCBkPSJNNSAxMmgxNCIvPjwvc3ZnPg==");
}

.navbar {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 2px solid rgba(55, 55, 55, 0.1);
  align-items: center;
  padding: 1.5rem 2rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .navbar {
    width: 100%;
    padding: 1.5rem 0;
  }
}

.navbar__logo {
  font-weight: bold;
  font-size: 32px;
  color: var(--color-accent);
}

.navbar__menu {
  display: flex;
  gap: 1rem;
  font-size: 20px;
  position: absolute;
  inset: 0;
  background-color: white;
  z-index: 999;
  flex-direction: column;
}
.navbar__menu[data-open=false] {
  display: none;
}
@media screen and (min-width: 1280px) {
  .navbar__menu[data-open=false] {
    display: flex;
    align-items: center;
    position: unset;
    background-color: unset;
  }
  .navbar__menu[data-open=false] .navbar__list {
    flex-direction: row;
  }
}
.navbar__menu[data-open=true] {
  display: flex;
  padding: 1.5rem 2rem;
}
.navbar__menu[data-open=true] .navbar__list {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.navbar__menu[data-open=true] .navbar__list li {
  margin: 0;
  font-size: 28px;
}
.navbar__menu .navbar__list {
  flex-direction: column;
}

.navbar__closer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 1280px) {
  .navbar__logo {
    font-size: 42px;
  }
  .navbar__menu {
    display: flex;
  }
}
.navbar__list {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 20px;
}

.navbar__list li {
  list-style: none;
  position: relative;
}

.navbar__list li::after {
  background-color: transparent;
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  content: " ";
  border-radius: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  transition: 0.3s;
}

.navbar__list li:hover:after {
  background-color: var(--color-accent);
}

.navbar__social {
  margin: 0 3rem;
}

.navbar__handler {
  background-color: white;
  border: 1px solid var(--color-accent);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .navbar__handler {
    display: none;
  }
}

.navbar > .cta {
  display: none;
}
@media screen and (min-width: 1280px) {
  .navbar > .cta {
    display: inline-flex;
  }
}

/* SECTION SERVICE */
.service__content {
  font-size: 18px;
}

.service__content p {
  margin-bottom: 5rem;
}

.service__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service__content .cta {
  display: none;
}
@media screen and (min-width: 620px) {
  .service__content .cta {
    display: inline-flex;
  }
}

.service__cta {
  margin-top: 0.6rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 620px) {
  .service__cta {
    display: none;
  }
}

/* FAQ SECTIOn */
.faq {
  text-align: center;
  max-width: 868px !important;
}

.faq__content {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.faq__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--color-accent);
}

.faq__item summary {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.faq__item--content {
  padding: 1rem 1.5rem;
  padding-top: 0;
}

.faq__item > summary {
  list-style-type: none;
  color: var(--color-accent);
  font-size: 20px;
}

.faq__item[open] > summary {
  list-style-type: none;
}

.faq__item > summary::after {
  font-size: 2rem;
  display: block;
  content: " ";
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tcmlnaHQiPjxwYXRoIGQ9Im05IDE4IDYtNi02LTYiLz48L3N2Zz4=");
  background-position: center center;
  background-repeat: no-repeat;
  transform: 0.3s;
}

.faq__item[open] > summary::after {
  display: block;
  content: " ";
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tZG93biI+PHBhdGggZD0ibTYgOSA2IDYgNi02Ii8+PC9zdmc+");
  background-position: center center;
  background-repeat: no-repeat;
  transform: 0.3s;
}

.faq__footer {
  margin-top: 5rem;
}

.faq__footer p {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* SECTION ABOUT */
.about {
  background-color: #111;
  position: relative;
  overflow: hidden;
  color: var(--color-background);
  min-height: 800px;
}

.about {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1280px) {
  .about {
    flex-direction: row;
  }
}

.about__content {
  font-size: 18px;
  margin-top: -2rem;
}
.about__content h2 {
  color: white;
}
@media screen and (min-width: 800px) {
  .about__content {
    margin-right: 4rem;
    margin-top: 0;
  }
}

.about__image {
  right: 0;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .about__image {
    width: 50%;
    position: absolute;
  }
  .about__image::before {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 70px;
    background: linear-gradient(to right, #111, transparent);
  }
}

.about__image img {
  width: 100%;
}

.works__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.works__header a {
  display: none;
  align-items: center;
  gap: 1rem;
  color: var(--color-accent);
  font-size: 1.3rem;
}
@media screen and (min-width: 1280px) {
  .works__header a {
    display: flex;
  }
}

.works__mask {
  position: relative;
}
.works__mask::before {
  width: 100%;
  height: 100px;
  content: " ";
  display: block;
  position: absolute;
  background-color: var(--color-background);
  clip-path: ellipse(50% 27% at 50% 50%);
  top: -3rem;
}

.works__content {
  position: relative;
}

.works__item {
  position: absolute;
  aspect-ratio: 2/3;
  padding-bottom: 0;
}
.works__item.width2 {
  aspect-ratio: 4/3;
}
.works__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* SECTION HERO HEADER */
.hero {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .hero {
    height: 100vh;
  }
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  flex: 1;
  padding: 2rem 2rem;
  box-sizing: content-box;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .hero__content {
    flex-direction: row;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .hero__content {
    flex-direction: row;
    padding: 2rem 0rem;
  }
}

.hero__image {
  mask-image: url("/assets/Subtract.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  width: 100%;
  object-fit: cover;
  object-position: 0% 0%;
  aspect-ratio: 1/1.1;
  isolation: isolate;
}

.hero__text {
  flex: 1;
}
@media screen and (min-width: 1280px) {
  .hero__text {
    margin-top: 8rem;
  }
}

.hero__text--headline {
  margin: 0;
  padding: 0;
  color: var(--color-accent);
  font-size: 38px;
  text-wrap: pretty;
  box-sizing: border-box;
  line-height: 3rem;
  z-index: 10;
  position: relative;
  filter: invert(1);
  mix-blend-mode: difference;
  text-align: center;
  margin-top: -8.5rem;
  /**
    -webkit-filter: invert(1) grayscale(1);
    isolation: isolate;
    mix-blend-mode: difference;
    */
}
@media screen and (min-width: 620px) {
  .hero__text--headline {
    width: 100%;
    font-size: 64px;
    margin-top: -14.5rem;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__text--headline {
    line-height: 3.5rem;
    text-align: unset;
    margin-bottom: 0rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .hero__text--headline {
    line-height: 6rem;
    font-size: 95px;
    width: 170%;
    margin-top: -8.5rem;
  }
}

.hero__text--paragraph {
  font-size: 16px;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hero__text--paragraph {
    font-size: 18px;
    text-align: unset;
  }
}
@media screen and (min-width: 1280px) {
  .hero__text--paragraph {
    font-size: 22px;
  }
}

.hero__detail {
  isolation: isolate;
  flex: 1.2;
  position: relative;
}
.hero__content .cta {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  .hero__content .cta {
    display: inline-flex;
    font-size: 22px;
  }
}
.hero__content .cta svg {
  width: 24px;
}

.hero__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 18px;
}
.hero .cta {
  flex: 1;
}
@media screen and (min-width: 1280px) {
  .hero .cta {
    flex: unset;
  }
}
.hero__social a {
  background-color: white;
  width: calc(2.5rem + 1em);
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: var(--color-accent);
  font-size: 24px;
}
@media screen and (min-width: 1280px) {
  .hero__social a {
    width: calc(3rem + 1em);
  }
}
.hero__social a svg path {
  stroke: currentColor;
}
.hero__social a:hover {
  background-color: var(--color-accent);
  color: white;
}

.footer {
  border-top: 2px solid rgba(55, 55, 55, 0.1);
  font-size: 18px;
  position: relative;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  text-align: center;
  padding: 3rem 2rem !important;
  gap: 1rem;
}
@media screen and (min-width: 1280px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem 0rem !important;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1280px) {
  .footer__menu {
    flex-direction: row;
    gap: 20px;
  }
}
.footer__social {
  display: flex;
  gap: 0.5rem;
}
.footer__social span {
  background-color: white;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}
.footer__social span:hover {
  background-color: var(--color-accent);
  color: white;
  transition-duration: 300ms;
}
.footer__social span svg {
  width: 24px;
  height: 24px;
  margin: 0;
}
.footer__social span svg path {
  stroke: currentColor;
}

/* SECTION TESTIMONIALS */
.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 10;
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  .testimonial {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  order: 2;
}
@media screen and (min-width: 1280px) {
  .testimonial img {
    order: 1;
  }
}

.testimonial p {
  width: 100%;
  font-size: 22px;
  order: 1;
}

.testimonial__footer {
  flex: 1;
  order: 3;
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}
@media screen and (min-width: 1280px) {
  .testimonial__footer {
    flex: unset;
    margin-left: 0;
  }
}

.testimonial__footer span {
  color: rgba(55, 55, 55, 0.7);
}

.testimonial__cover {
  width: 100%;
  aspect-ratio: 1/1;
}

/**GLIDE*/
.glide__arrow {
  border: 1px solid var(--color-accent);
  background: transparent;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.glide__arrow--right {
  transform: scale(-1);
}

.glide__controls {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.glide__bullets {
  display: flex;
  gap: 8px;
}

.glide__bullet {
  width: 12px !important;
  height: 12px !important;
  padding: 0;
  border: none;
  border-radius: 100%;
  background: var(--color-accent);
  opacity: 0.6;
  transition: 0.2s;
}

.glide__bullet--active {
  opacity: 1;
}

:root {
  --color-background: #E6E7E9;
  --color-accent: #1E1716;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

/* el-messiri-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "El Messiri";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/el-messiri-v22-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* el-messiri-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "El Messiri";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/el-messiri-v22-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans-v40-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/open-sans-v40-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v40-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v40-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v40-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-background: #E6E7E9;
  --color-accent: #1E1716;
}

/** GLOBAL **/
body {
  background: var(--color-background);
  padding: 0;
  margin: 0;
  line-height: 2rem;
  color: #444;
  font-family: "Open Sans", serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "El Messiri", sans-serif;
}

a {
  text-decoration: none;
  color: var(--color-accent);
}

#magicMouseCursor {
  background-color: transparent;
  border: none !important;
}

#magicPointer {
  background-color: var(--color-accent) !important;
  width: 1rem !important;
  height: 1rem !important;
  filter: invert(1);
  mix-blend-mode: difference;
}

#magicPointer.is-hover {
  width: 2rem !important;
  height: 2rem !important;
}

.glow {
  position: absolute;
  background-color: #F5EBE2;
  top: -100px;
  left: -50%;
  width: 100%;
  aspect-ratio: 2/1;
  filter: blur(10rem);
  z-index: -10;
}

@media screen and (min-width: 620px) {
  .grid2 {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
@media screen and (min-width: 1280px) {
  .container {
    padding: 120px 0;
  }
}

h2 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  color: var(--color-accent);
}
@media screen and (min-width: 620px) {
  h2 {
    font-size: 48px;
  }
}

h3 {
  font-size: 24px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 620px) {
  h3 {
    font-size: 34px;
  }
}

/*# sourceMappingURL=styles.css.map */
