.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 54, 24, 0.8),
    rgba(40, 54, 24, 0.7),
    rgba(40, 54, 24, 0.9)
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  min-height: 100vh;
  margin: 0 auto;
  padding: 7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #bc6c25;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.hero__title-accent {
  display: block;
  color: #bc6c25;
}

.hero__description {
  max-width: 48rem;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hero__accent {
  color: #bc6c25;
  font-weight: 600;
}

.hero__search {
  width: 100%;
  max-width: 36rem;
  position: relative;
}

.hero__search-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero__input {
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: 0.875rem;
  outline: none;
}

.hero__input::-moz-placeholder {
  color: #64748b;
}

.hero__input::placeholder {
  color: #64748b;
}

.hero__button {
  height: 3rem;
  padding: 0 1.5rem;
  border: none;
  border-radius: 0.75rem;
  background: #bc6c25;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero__button:hover {
  background: #8b4513;
}

.hero__autocomplete {
  margin-top: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.hero__autocomplete-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hero__autocomplete-item:hover,
.hero__autocomplete-item:focus {
  background: rgba(148, 163, 184, 0.18);
}

.hero__autocomplete-item.is-muted {
  color: rgba(248, 250, 252, 0.7);
  cursor: default;
}

.hero__stats {
  width: 100%;
  max-width: 48rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero__stat {
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.hero__stat-label {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .hero__search-row {
    flex-direction: row;
    align-items: center;
  }

  .hero__input {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.explore {
  padding: 5rem 0;
  background: #fefae0;
  background-image: radial-gradient(
    circle at top,
    rgba(96, 108, 56, 0.08),
    transparent 60%
  );
}

.explore__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.explore__header {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.75rem;
}

.explore__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #283618;
  margin: 0;
}

.explore__subtitle {
  font-size: 1.125rem;
  color: rgba(40, 54, 24, 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

.explore__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.explore__link {
  text-decoration: none;
  color: inherit;
}

.explore__card {
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(32, 32, 32, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.explore__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(40, 54, 24, 0.12);
}

.explore__card-top {
  padding: 1.75rem 1.75rem 1.5rem;
  color: #ffffff;
  display: grid;
  gap: 0.75rem;
  min-height: 9.5rem;
}

.explore__card-icon {
  font-size: 2rem;
  line-height: 1;
  opacity: 0.9;
}

.explore__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.explore__card-value {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.08em;
}

.explore__card-bottom {
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6b7280;
  background: #ffffff;
  border-top: 1px solid rgba(40, 54, 24, 0.08);
}

.explore__card-cta {
  font-size: 0.875rem;
}

.explore__card-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.explore__card:hover .explore__card-arrow {
  transform: translateX(4px);
}

.from-\[\#606C38\].to-\[\#283618\] {
  background: linear-gradient(135deg, #606c38, #283618);
}

.from-\[\#BC6C25\].to-\[\#8B4513\] {
  background: linear-gradient(135deg, #bc6c25, #8b4513);
}

.from-\[\#0077B6\].to-\[\#023E8A\] {
  background: linear-gradient(135deg, #0077b6, #023e8a);
}

.from-\[\#606C38\].to-\[\#BC6C25\] {
  background: linear-gradient(135deg, #606c38, #bc6c25);
}

@keyframes explore-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.explore__fade {
  animation: explore-fade-up 0.9s ease-out both;
}

@media (min-width: 768px) {
  .explore__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .explore__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sectors {
  padding: 5rem 0;
  background: #283618;
  color: #ffffff;
}

.sectors__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sectors__header {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.75rem;
}

.sectors__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

.sectors__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sectors__link {
  text-decoration: none;
  color: inherit;
}

.sectors__card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.sectors__card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.sectors__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.sectors__name {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.sectors__desc {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.sectors__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.sectors__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  background: #bc6c25;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.sectors__button:hover {
  background: #8b4513;
}

.sectors__button-icon {
  width: 1rem;
  height: 1rem;
}

@keyframes sectors-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sectors__fade {
  animation: sectors-fade-up 0.9s ease-out both;
}

@media (min-width: 768px) {
  .sectors__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sectors__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.featured {
  padding: 5rem 0;
  background: #fefae0;
  background-image: radial-gradient(
    circle at bottom,
    rgba(188, 108, 37, 0.08),
    transparent 60%
  );
}

.featured__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.featured__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.featured__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #283618;
  margin: 0 0 0.5rem;
}

.featured__subtitle {
  font-size: 1.125rem;
  color: rgba(40, 54, 24, 0.7);
  margin: 0;
}

.featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #606c38;
  color: #606c38;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.featured__cta:hover {
  background: #606c38;
  color: #ffffff;
}

.featured__cta-icon {
  width: 1rem;
  height: 1rem;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured__link {
  text-decoration: none;
  color: inherit;
}

.featured__card {
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(40, 54, 24, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(40, 54, 24, 0.12);
}

.featured__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(2, 62, 138, 0.1));
}

.featured__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.featured__card:hover .featured__image {
  transform: scale(1.05);
}

.featured__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.featured__image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.featured__name {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.featured__family {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-style: italic;
  margin: 0.25rem 0 0;
}

@keyframes featured-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured__fade {
  animation: featured-fade-up 0.9s ease-out both;
}

@media (min-width: 768px) {
  .featured__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #606c38, #283618);
  color: #ffffff;
}

.about__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__content {
  display: grid;
  gap: 1.5rem;
}

.about__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

.about__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.7;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.about__icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #bc6c25;
}

.about__value {
  margin: 0;
  font-weight: 600;
}

.about__label {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.about__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #283618;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.about__button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.about__button-icon {
  width: 1rem;
  height: 1rem;
}

.about__media {
  position: relative;
}

.about__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #ffffff;
  color: #283618;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.about__badge-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #606c38;
  margin: 0;
}

.about__badge-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__fade {
  animation: about-fade-up 0.9s ease-out both;
}

.about__fade-delay {
  animation: about-fade-up 1.1s ease-out both;
  animation-delay: 0.2s;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* cyrillic-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/438aa629764e75f3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/875ae681bfde4580-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/51251f8b9793cdb3-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/e857b654a2caa584-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/cc978ac5ee68c2b6-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/4c9affa5bc8f420e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/438aa629764e75f3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/875ae681bfde4580-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/51251f8b9793cdb3-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/e857b654a2caa584-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/cc978ac5ee68c2b6-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/4c9affa5bc8f420e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/438aa629764e75f3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/875ae681bfde4580-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/51251f8b9793cdb3-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/e857b654a2caa584-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/cc978ac5ee68c2b6-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/4c9affa5bc8f420e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/438aa629764e75f3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/875ae681bfde4580-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/51251f8b9793cdb3-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/e857b654a2caa584-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/cc978ac5ee68c2b6-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Manrope_d2dc74';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/4c9affa5bc8f420e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Manrope_Fallback_d2dc74';src: local("Arial");ascent-override: 103.31%;descent-override: 29.07%;line-gap-override: 0.00%;size-adjust: 103.19%
}.__className_d2dc74 {font-family: '__Manrope_d2dc74', '__Manrope_Fallback_d2dc74';font-style: normal
}

/* vietnamese */
@font-face {
  font-family: '__Fraunces_48c46e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/fb526027db1fc1ae-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Fraunces_48c46e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/4da3161b738b07dd-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Fraunces_48c46e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/af4bf8399d1aacdf-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: '__Fraunces_48c46e';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/fb526027db1fc1ae-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Fraunces_48c46e';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/4da3161b738b07dd-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Fraunces_48c46e';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/af4bf8399d1aacdf-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Fraunces_Fallback_48c46e';src: local("Times New Roman");ascent-override: 84.71%;descent-override: 22.09%;line-gap-override: 0.00%;size-adjust: 115.45%
}.__className_48c46e {font-family: '__Fraunces_48c46e', '__Fraunces_Fallback_48c46e';font-style: normal
}

