@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.figv-viewer-section,
.figv-viewer-section * {
  box-sizing: border-box;
  min-width: 0;
}

.figv-viewer-section {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17201c;
  font-family: inherit;
}

.figv-viewer-section .figv-band {
  width: 100% !important;
}

.figv-viewer-section .figv-band-white {
  background: #ffffff;
}

.figv-viewer-section .figv-band-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 125, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #f6fbf8 0%, #eef7f2 100%);
}

.figv-viewer-section .figv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

.figv-viewer-section h2,
.figv-viewer-section h3,
.figv-viewer-section p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.figv-viewer-section h2 {
  margin-top: 0;
  color: #12201a;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.figv-viewer-section .figv-intro {
  max-width: 760px;
  margin-top: 14px;
  margin-bottom: 0;
  color: #52615b;
  line-height: 1.7;
  font-weight: 500;
}

.figv-viewer-section .figv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.figv-viewer-section .figv-card {
  height: 100% !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
  border: 1px solid rgba(31, 125, 95, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(20, 72, 56, 0.09);
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.figv-viewer-section .figv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 125, 95, 0.12), rgba(214, 168, 72, 0.10));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.figv-viewer-section .figv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(31, 125, 95, 0.38);
  box-shadow: 0 24px 64px rgba(20, 72, 56, 0.16);
}

.figv-viewer-section .figv-card:hover::before {
  opacity: 1;
}

.figv-viewer-section .figv-icon {
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f7d5f 0%, #2fb38a 58%, #d6a848 100%);
  box-shadow: 0 14px 30px rgba(31, 125, 95, 0.26);
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.figv-viewer-section .figv-card:hover .figv-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(31, 125, 95, 0.32);
}

.figv-viewer-section .figv-i {
  line-height: 1;
  color: #ffffff;
  text-align: center !important;
}

.figv-viewer-section .figv-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #17201c;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.figv-viewer-section .figv-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #5b6b64;
  line-height: 1.62;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .figv-viewer-section .figv-band {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .figv-viewer-section h2 {
    font-size: 40px;
    white-space: nowrap;
  }

  .figv-viewer-section .figv-intro {
    font-size: 17px;
  }

  .figv-viewer-section .figv-grid {
    gap: 24px;
    margin-top: 42px;
  }

  .figv-viewer-section .figv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .figv-viewer-section .figv-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .figv-viewer-section .figv-card {
    min-height: 300px;
    padding: 34px 26px 30px;
  }

  .figv-viewer-section .figv-icon {
    width: 70px;
    height: 70px;
    font-size: 27px;
    margin-bottom: 24px;
  }

  .figv-viewer-section .figv-card h3 {
    font-size: 20px;
  }

  .figv-viewer-section .figv-card p {
    margin-top: 13px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .figv-viewer-section .figv-band {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .figv-viewer-section .figv-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .figv-viewer-section h2 {
    font-size: 34px;
  }

  .figv-viewer-section .figv-intro {
    font-size: 16px;
  }

  .figv-viewer-section .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
  }

  .figv-viewer-section .figv-card {
    min-height: 270px;
    padding: 30px 24px 27px;
  }

  .figv-viewer-section .figv-icon {
    width: 64px;
    height: 64px;
    font-size: 25px;
    margin-bottom: 22px;
  }

  .figv-viewer-section .figv-card h3 {
    font-size: 19px;
  }

  .figv-viewer-section .figv-card p {
    margin-top: 12px;
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .figv-viewer-section .figv-band {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .figv-viewer-section .figv-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .figv-viewer-section h2 {
    font-size: 27px;
  }

  .figv-viewer-section .figv-intro {
    font-size: 14px;
    line-height: 1.58;
  }

  .figv-viewer-section .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .figv-viewer-section .figv-card {
    min-height: 232px;
    border-radius: 18px;
    padding: 22px 14px 20px;
  }

  .figv-viewer-section .figv-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 21px;
    margin-bottom: 17px;
  }

  .figv-viewer-section .figv-card h3 {
    font-size: 16px;
  }

  .figv-viewer-section .figv-card p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .figv-viewer-section .figv-band {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .figv-viewer-section .figv-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .figv-viewer-section h2 {
    font-size: 24px;
  }

  .figv-viewer-section .figv-intro {
    font-size: 13px;
    line-height: 1.54;
  }

  .figv-viewer-section .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 24px;
  }

  .figv-viewer-section .figv-card {
    min-height: 222px;
    border-radius: 16px;
    padding: 20px 11px 18px;
  }

  .figv-viewer-section .figv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 19px;
    margin-bottom: 15px;
  }

  .figv-viewer-section .figv-card h3 {
    font-size: 15px;
  }

  .figv-viewer-section .figv-card p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .figv-viewer-section .figv-band {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .figv-viewer-section .figv-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .figv-viewer-section h2 {
    font-size: 21px;
  }

  .figv-viewer-section .figv-intro {
    font-size: 12.5px;
    line-height: 1.48;
  }

  .figv-viewer-section .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .figv-viewer-section .figv-card {
    min-height: 214px;
    border-radius: 14px;
    padding: 18px 9px 16px;
  }

  .figv-viewer-section .figv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 18px;
    margin-bottom: 13px;
  }

  .figv-viewer-section .figv-card h3 {
    font-size: 14px;
  }

  .figv-viewer-section .figv-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.4;
  }
}

.figv-viewer-section .figv-card {
  opacity: 1;
  transform: translateY(0);
}

.figv-viewer-section.figv-js-ready .figv-card {
  opacity: 0;
  transform: translateY(18px);
}

.figv-viewer-section.figv-js-ready .figv-card.figv-revealed {
  opacity: 1;
  transform: translateY(0);
}