:root {
  --accent-color: #023047;
  --off-black: #38312d;
  --off-white: #fbf9f5;
  --dark-brown: #38312d;
  --transition: all 0.3s ease-out;
  --spacing: 1.5rem;
  --spacing-md: 2.8125rem;
  --spacing-lg: 7.5rem;

  @media (max-width: 640px) {
    --spacing-lg: 2.8125rem;
  }
}

/* Simple reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  font-family: 'Lora', serif;
}

img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
  outline: none;
  border: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

.center-content {
  width: 100%;
  padding: 0 var(--spacing-md);
  max-width: 112.5rem;
  margin: auto;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0 var(--spacing-md);
  max-width: 112.5rem;
  margin: auto;
  background-image: url(https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-repeat: no-repeat;

  @media (max-width: 640px) {
    height: auto;
    padding-bottom: var(--spacing-lg);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 9;
  padding-bottom: 3.5rem;
  @media (max-width: 640px) {
    padding-bottom: 0;
  }
}
.hero-content__text {
  height: 100%;
  max-width: 45rem;
  .hero-title {
    font-size: clamp(1.5rem, 7vw + 1rem, 4.5rem); /* min, preferred, max */
    color: var(--off-white);
    line-height: 1.1;
    font-weight: 600;
  }
  .hero-description {
    font-size: 1.375rem;
    color: var(--off-white);
  }
  .hero-actions {
  }

  @media (max-width: 640px) {
    text-align: center;
    padding-top: 2.5rem;
  }
}

.header {
  width: 100%;
  max-width: 112.5rem;
  margin: auto;
  padding: var(--spacing-md) 0;
  position: relative;
  z-index: 20;

  @media (max-width: 640px) {
    padding: 1.2rem 0;
    max-width: 100%;
  }
  .logo {
    display: block;
    width: 102px;
    height: auto;
    /* border: solid 1px red; */
    img {
      width: 100%;
    }
  }
}

/* Navigation submenu */

.main-nav ul {
  list-style: none;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;

  @media (max-width: 640px) {
    flex-direction: column;
  }
}

.main-nav .nav-list > li {
  position: relative;
}

.main-nav .nav-list > li > a {
  color: var(--off-black);
  text-decoration: none;
}

/* header */
.header {
  &.light {
    .main-nav .nav-list > li > a {
      color: var(--off-white);
    }
  }
  &.dark {
    .main-nav .nav-list > li > a {
      color: var(--off-black);
    }
  }
  a {
    transition: var(--transition);
  }
  a.active {
    background-color: var(--accent-color);
    padding: 0.875rem 2rem;
    border-radius: 200px;
    &:hover {
      opacity: 0.85;
    }
  }
}

/* submenu */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 300px;
  padding: var(--spacing) 2rem;
  color: var(--off-black);
  background: var(--off-white);
  border-radius: var(--spacing);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  a {
    color: var(--off-black);
    font-size: 1rem;
    text-decoration: none;
    &:hover {
      color: var(--accent-color);
      padding-left: 1rem;

      @media (max-width: 640px) {
        padding-left: 0;
      }
    }
  }
  .has-submenu {
    position: relative;
    z-index: 10;
  }
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: flex;
}

@media (max-width: 768px) {
  .header {
    &.light {
      .main-nav .nav-list > li > a:not(.active) {
        color: var(--off-black);
      }
    }
  }

  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--off-white);
    z-index: 100;
    overflow-y: scroll;

    transform: translateX(-100%);
    transition: var(--transition);
    &.visible {
      transform: translate(0);
    }

    .close-menu,
    .close-submenu {
      position: absolute;
      top: var(--spacing);
      right: var(--spacing);
    }

    .nav-list {
      flex-direction: column;
      height: 100%;
      align-items: center;
      justify-content: center;
      li a {
        font-size: 1.3rem;
      }
    }
  }
  .has-submenu a {
    text-align: center;
    display: block;
  }
  .submenu {
    top: auto;
    box-shadow: none;
    border-radius: 0;
    background: var(--off-white);
    max-width: 100%;

    gap: 1rem;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;

    transform: translateX(-100%);

    &.visible {
      transform: translateX(0);
    }
  }
}

/* About */
.about-section {
  margin-top: var(--spacing-lg);
  .about__left {
    min-width: 27.125rem;
    flex: 0 0 27.125rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--spacing);

    @media (max-width: 640px) {
      flex: 1;
      min-width: 100%;
      width: 100%;
    }

    .professional-tag {
      position: absolute;
      bottom: var(--spacing);
      left: var(--spacing);
      z-index: 1;
      transition: var(--transition);
    }
    img {
      position: relative;
      object-fit: cover;
      display: block;
      width: 100%;
      transition: var(--transition);
    }
    &:hover {
      .professional-tag {
        transform: translateY(-3px);
      }
      img {
        transform: scale(1.05);
      }
    }
  }
}

/* Work */
.our-work-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--off-white);

  @media (max-width: 640px) {
    padding: var(--spacing-md) 0;
  }
  .center-content {
    padding-right: 0;
    overflow-x: hidden;
  }
  /* left */
  .our-work__left {
    position: relative;
    flex: 0 0 25rem;

    .work-arrows {
      position: absolute;
      bottom: 2rem;
      right: 0;

      @media (max-width: 640px) {
        display: none;
      }
      .work-arrow {
        background: none;
        border: 0;
        padding: 0;
      }
      img {
        cursor: pointer;
        opacity: 0.7;
        &.active {
          opacity: 1;
        }
      }
    }
  }

  /* right */
  .our-work__right {
    --slide-spacing: var(--spacing);
    --slide-size: 20rem;
    position: relative;
    /* width: 50%; */
    overflow: hidden;

    .embla {
      position: relative;
    }
    .embla__viewport {
      cursor: grab;
      width: 100%;
    }
    .embla__container {
      display: flex;
      touch-action: pan-y pinch-zoom;
    }
    .embla__slide {
      flex: 0 0 var(--slide-size);
      min-width: 0;
      margin-left: var(--slide-spacing);
    }
    .our-work__slide-container {
      display: flex;
    }
    &::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 180px;
      pointer-events: none;

      background: linear-gradient(
        to right,
        rgba(251, 249, 245, 0) 0%,
        rgba(251, 249, 245, 0.9) 70%,
        rgba(251, 249, 245, 1) 100%
      );
    }
  }
}

.work-card {
  position: relative;
  display: flex;
  /* align-items: flex-end; */
  justify-content: flex-end;
  min-height: 22rem;
  padding: 2rem;
  color: var(--off-white);
  border-radius: var(--spacing);
  overflow: hidden;
  background: #1a1a1a;
  flex-direction: column;
}

.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.work-title,
.work-text {
  position: relative;
  z-index: 1;
  color: var(--off-white);
}

.work-title {
  font-family: 'Lora', serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.work-text {
  margin-top: 0.5rem;
  max-width: 22rem;

  font-size: 1rem;
}

/* testimonials */
.testimonials-section {
  margin-top: var(--spacing-lg);

  .testimonials-embla {
    position: relative;
    .embla__viewport {
      overflow: hidden;
      cursor: grab;
    }
    .testimonials-cards-container {
      display: flex;
      gap: var(--spacing);
      touch-action: pan-y;
      justify-content: center;
    }
    .embla__slide {
      flex: 0 0 30rem;
    }
    &::before,
    &::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      pointer-events: none;
      z-index: 2;
    }
    &::before {
      left: 0;
      background: linear-gradient(
        to right,
        rgba(251, 249, 245, 1) 0%,
        rgba(251, 249, 245, 0.85) 35%,
        rgba(251, 249, 245, 0) 100%
      );
    }
    &::after {
      right: 0;
      background: linear-gradient(
        to left,
        rgba(251, 249, 245, 1) 0%,
        rgba(251, 249, 245, 0.85) 35%,
        rgba(251, 249, 245, 0) 100%
      );
    }
  }
  .testimonials-cards-container {
    display: flex;
    gap: var(--spacing);
  }
  .testimonial-card__item {
    position: relative;
    padding: 1.2rem;
    border-radius: var(--spacing);
    background-color: var(--off-white);
    .quotes-icon {
      position: absolute;
      top: 1rem;
      right: 1rem;
    }
    .testimonial-card__item-content {
      display: flex;
      flex-direction: column;
      gap: var(--spacing);
    }
    .testimonial-text {
      display: inline-block;
      /* max-width: 80%; */
      font-size: 1.2rem;
      padding: 1rem;
      padding-right: 5rem;
      font-style: oblique;
    }
    .testimonial-author {
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1rem;
    }
  }
  .testimonials-arrows {
    display: flex;
    gap: var(--spacing);
    justify-content: flex-end;
    padding: var(--spacing) 0;
    opacity: 0.7;
    margin: auto;
    width: 100%;
    padding: 2rem var(--spacing-lg);
    /* padding-top: 2rem; */
    max-width: 112.5rem;
    .testimonial-arrow {
      border: 0;
      background: none;
      padding: 0;
      cursor: pointer;
    }

    @media (max-width: 640px) {
      display: none;
    }
  }
}

/* lectures section */
.lectures-section {
  margin-top: var(--spacing-lg);
  background-color: var(--off-white);
  padding: var(--spacing-md) 0;
  .lectures-section__cards {
    gap: var(--spacing);
    height: 32rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    @media (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      height: auto;
    }
    @media (max-width: 640px) {
      grid-template-columns: repeat(1, 1fr);
    }

    .lectures-section__card {
      text-decoration: none;
      border-radius: var(--spacing);
      overflow: hidden;
      padding: var(--spacing);

      color: var(--off-white);
      position: relative;

      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 1rem;

      @media (max-width: 640px) {
        height: 25rem;
      }

      .lectures-section__card-title,
      .lectures-section__card-subtitle {
        color: var(--off-white);
        position: relative;
      }

      .lectures-section__card-title {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;

        @media (max-width: 640px) {
          font-size: 1.5rem;
        }
      }
      .lectures-section__card-subtitle {
        font-size: 1.125rem;
      }

      img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: var(--transition);
      }

      &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.75) 0%,
          rgba(0, 0, 0, 0.3) 45%,
          rgba(0, 0, 0, 0) 100%
        );
        pointer-events: none;
        z-index: 1;
      }

      > * {
        position: relative;
        z-index: 2;
      }

      &:hover {
        img {
          transform: scale(1.05);
        }
      }
    }
  }
}

/* insights */
.insights-section {
  margin-top: var(--spacing-lg);
  .blog-cards {
    display: grid;
    gap: var(--spacing);

    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));

    @media (max-width: 640px) {
      grid-template-columns: 1fr;
    }

    .blog-card__item {
      border-radius: var(--spacing);
      overflow: hidden;
      position: relative;
      height: 25rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-decoration: none;
      padding: var(--spacing) 0 0 var(--spacing);

      transition: var(--transition);

      .blog-card__title,
      .blog-card__description {
        display: block;
        color: var(--off-white);
        transition: var(--transition);
      }

      &:hover {
        opacity: 0.95;
        .blog-card__title,
        .blog-card__description {
          transform: translateY(5px);
        }
      }

      .blog-card__title {
        font-size: 2.25rem;
        font-weight: 700;

        @media (max-width: 640px) {
          font-size: 1.5rem;
        }
      }
      .blog-card__description {
        font-size: 1.125rem;
      }

      img {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        z-index: -1;
      }
    }

    .blog-card__item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.3) 45%,
        rgba(0, 0, 0, 0) 100%
      );
      pointer-events: none;
    }

    .blog-card__item > * {
      position: relative;
      z-index: 1;
    }
  }
}

.location-section {
  margin-top: var(--spacing-lg);
}

.location-grid {
  display: grid;
  gap: var(--spacing);
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: stretch;
}

.location-video-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #1a1a1a;
}

.location-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.location-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.location-play-icon {
  width: 72px;
  height: 72px;
  /* border-radius: 999px; */
  /* background: rgba(251, 249, 245, 0.9); */
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); */
  img {
    width: 100%;
    height: 100%;
  }
}

.location-map {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 28rem;
  @media (max-width: 640px) {
    height: auto;
  }
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;

  @media (max-width: 640px) {
    height: 18rem;
  }
}

.location-card {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  max-width: 32rem;
  width: min(90%, 32rem);
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(251, 249, 245, 0.9);
  color: var(--off-black);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  @media (max-width: 640px) {
    /* max-width: 95%; */
    margin: auto;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    height: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: none;
    width: min(100%, 32rem);
  }
}

.location-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;

  @media (max-width: 640px) {
    font-size: 1.8rem;
    text-align: center;
  }
}

.location-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.location-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;

  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.location-text {
  font-size: 18px;
  line-height: 1.4;
}

.location-card .btn {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .location-grid {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }

  .location-card {
    /* position: static;
    margin: 1.5rem; */
  }
}

.footer {
  margin-top: var(--spacing-lg);
  padding: 3.5rem 0 2rem;
  background: var(--dark-brown);
  color: var(--off-white);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.7fr) minmax(
      240px,
      1fr
    );
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(251, 249, 245, 0.85);
}

.footer-menu,
.footer-hours,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  text-decoration: none;
  color: rgba(251, 249, 245, 0.9);
  font-size: 0.95rem;
  &:hover {
    text-decoration: underline;
  }
}

.footer-hours .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.footer-divider {
  height: 1px;
  background: rgba(251, 249, 245, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social {
  /* width: 28px;
  height: 28px; */
  display: inline-block;
  transition: var(--transition);
  &:hover {
    transform: translateY(-5px);
  }
}

.footer-copy {
  color: rgba(251, 249, 245, 0.7);
}

@media (max-width: 900px) {
  .footer {
    border-radius: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Flex utilities (basic essentials) */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.gap-10 {
  gap: 2.5rem;
}

/* Margin utilities */
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: var(--spacing);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: var(--spacing);
}

.tac {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 300px;
  transition: var(--transition);
  background-color: #000;
  color: var(--off-white);
  text-decoration: none;
  text-align: center;

  @media (max-width: 640px) {
    padding: 1rem;
  }

  &:hover {
    opacity: 0.85;
  }

  &.btn-accent {
    background-color: var(--accent-color);
  }
  &.btn-white {
    background-color: transparent;
    border: solid 2px var(--off-white);
  }
  &.btn-black {
    background-color: transparent;
    border: solid 2px var(--off-black);
    color: var(--off-black);
    &:hover {
      background-color: var(--off-black);
      color: var(--off-white);
    }
  }
}

.base-title {
  color: var(--off-black);
  font-size: 3rem;
  font-weight: 700;
}

.base-text {
  font-size: clamp(1.2rem, 3vw + 1rem, 1.2rem);
  line-height: 1.5;
  color: var(--off-black);
  &.lg {
    font-size: clamp(1.2rem, 7vw + 1rem, 1.5rem);
  }
}

/* Responsive variants (mobile-first) */
@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }

  .sm\:inline-flex {
    display: inline-flex;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:items-end {
    align-items: flex-end;
  }

  .sm\:items-stretch {
    align-items: stretch;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:justify-around {
    justify-content: space-around;
  }

  .sm\:justify-evenly {
    justify-content: space-evenly;
  }

  .sm\:content-start {
    align-content: flex-start;
  }

  .sm\:content-center {
    align-content: center;
  }

  .sm\:content-end {
    align-content: flex-end;
  }

  .sm\:self-start {
    align-self: flex-start;
  }

  .sm\:self-center {
    align-self: center;
  }

  .sm\:self-end {
    align-self: flex-end;
  }

  .sm\:self-stretch {
    align-self: stretch;
  }

  .sm\:flex-1 {
    flex: 1 1 0%;
  }

  .sm\:flex-none {
    flex: none;
  }

  .sm\:grow {
    flex-grow: 1;
  }

  .sm\:shrink {
    flex-shrink: 1;
  }

  .sm\:shrink-0 {
    flex-shrink: 0;
  }

  .sm\:gap-1 {
    gap: 0.25rem;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-6 {
    gap: var(--spacing);
  }

  .sm\:mt-0 {
    margin-top: 0;
  }

  .sm\:mt-1 {
    margin-top: 0.25rem;
  }

  .sm\:mt-2 {
    margin-top: 0.5rem;
  }

  .sm\:mt-3 {
    margin-top: 0.75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:mt-6 {
    margin-top: var(--spacing);
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .sm\:mb-6 {
    margin-bottom: var(--spacing);
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-stretch {
    align-items: stretch;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:justify-around {
    justify-content: space-around;
  }

  .md\:justify-evenly {
    justify-content: space-evenly;
  }

  .md\:content-start {
    align-content: flex-start;
  }

  .md\:content-center {
    align-content: center;
  }

  .md\:content-end {
    align-content: flex-end;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:self-center {
    align-self: center;
  }

  .md\:self-end {
    align-self: flex-end;
  }

  .md\:self-stretch {
    align-self: stretch;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:flex-none {
    flex: none;
  }

  .md\:grow {
    flex-grow: 1;
  }

  .md\:shrink {
    flex-shrink: 1;
  }

  .md\:shrink-0 {
    flex-shrink: 0;
  }

  .md\:gap-1 {
    gap: 0.25rem;
  }

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: var(--spacing);
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mt-1 {
    margin-top: 0.25rem;
  }

  .md\:mt-2 {
    margin-top: 0.5rem;
  }

  .md\:mt-3 {
    margin-top: 0.75rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:mt-6 {
    margin-top: var(--spacing);
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .md\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .md\:mb-6 {
    margin-bottom: var(--spacing);
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:items-stretch {
    align-items: stretch;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:justify-around {
    justify-content: space-around;
  }

  .lg\:justify-evenly {
    justify-content: space-evenly;
  }

  .lg\:content-start {
    align-content: flex-start;
  }

  .lg\:content-center {
    align-content: center;
  }

  .lg\:content-end {
    align-content: flex-end;
  }

  .lg\:self-start {
    align-self: flex-start;
  }

  .lg\:self-center {
    align-self: center;
  }

  .lg\:self-end {
    align-self: flex-end;
  }

  .lg\:self-stretch {
    align-self: stretch;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:flex-none {
    flex: none;
  }

  .lg\:grow {
    flex-grow: 1;
  }

  .lg\:shrink {
    flex-shrink: 1;
  }

  .lg\:shrink-0 {
    flex-shrink: 0;
  }

  .lg\:gap-1 {
    gap: 0.25rem;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-6 {
    gap: var(--spacing);
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mt-1 {
    margin-top: 0.25rem;
  }

  .lg\:mt-2 {
    margin-top: 0.5rem;
  }

  .lg\:mt-3 {
    margin-top: 0.75rem;
  }

  .lg\:mt-4 {
    margin-top: 1rem;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem;
  }

  .lg\:mt-6 {
    margin-top: var(--spacing);
  }

  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .lg\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .lg\:mb-6 {
    margin-bottom: var(--spacing);
  }
}
