@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');

.igivx-section-wrap,
.igivx-section-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.igivx-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #211724;
  font-family: Arial, Helvetica, sans-serif;
}

.igivx-section-wrap .igivx-band {
  width: 100% !important;
}

.igivx-section-wrap .igivx-band-white {
  background: #ffffff;
}

.igivx-section-wrap .igivx-band-tint {
  background: linear-gradient(180deg, #fff7fb 0%, #fffaf5 100%);
}

.igivx-section-wrap .igivx-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.igivx-section-wrap .igivx-heading {
  margin: 0 auto;
  color: #1f1422;
  font-weight: 800;
  line-height: 1.14;
  text-align: center;
  letter-spacing: 0;
}

.igivx-section-wrap .igivx-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #695a6d;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  letter-spacing: 0;
}

.igivx-section-wrap .igivx-grid {
  display: grid !important;
  align-items: stretch !important;
}

.igivx-section-wrap .igivx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
  border: 1px solid #f1dce8;
  box-shadow: 0 18px 44px rgba(207, 46, 123, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
}

.igivx-section-wrap .igivx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 96, 64, 0.14), transparent 42%);
  transition: opacity 260ms ease;
  pointer-events: none;
}

.igivx-section-wrap .igivx-card:hover {
  transform: translateY(-7px);
  border-color: rgba(207, 46, 123, 0.36);
  box-shadow: 0 24px 58px rgba(207, 46, 123, 0.18);
}

.igivx-section-wrap .igivx-card:hover::before {
  opacity: 1;
}

.igivx-section-wrap .igivx-card-alt {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f9 100%);
}

.igivx-section-wrap .igivx-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, #cf2e7b 0%, #f56040 54%, #ffc15e 100%);
  box-shadow: 0 14px 28px rgba(245, 96, 64, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.igivx-section-wrap .igivx-card:hover .igivx-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(245, 96, 64, 0.3);
}

.igivx-section-wrap .igivx-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.igivx-section-wrap .igivx-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #241827;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  letter-spacing: 0;
}

.igivx-section-wrap .igivx-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #6f6073;
  font-weight: 400;
  line-height: 1.58;
  text-align: center;
  letter-spacing: 0;
}

.igivx-section-wrap .igivx-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.igivx-section-wrap .igivx-reveal.igivx-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .igivx-section-wrap .igivx-band {
    padding: 86px 0;
  }

  .igivx-section-wrap .igivx-container {
    padding: 0 28px;
  }

  .igivx-section-wrap .igivx-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .igivx-section-wrap .igivx-intro {
    margin-top: 16px;
    font-size: 17px;
  }

  .igivx-section-wrap .igivx-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 44px;
  }

  .igivx-section-wrap .igivx-card {
    min-height: 300px;
    padding: 34px 28px;
    border-radius: 24px;
  }

  .igivx-section-wrap .igivx-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .igivx-section-wrap .igivx-i {
    font-size: 30px;
  }

  .igivx-section-wrap .igivx-card-title {
    font-size: 21px;
  }

  .igivx-section-wrap .igivx-card-text {
    margin-top: 13px;
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .igivx-section-wrap .igivx-band {
    padding: 68px 0;
  }

  .igivx-section-wrap .igivx-container {
    padding: 0 24px;
  }

  .igivx-section-wrap .igivx-heading {
    font-size: 34px;
  }

  .igivx-section-wrap .igivx-intro {
    margin-top: 14px;
    font-size: 16px;
  }

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

  .igivx-section-wrap .igivx-card {
    min-height: 270px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .igivx-section-wrap .igivx-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 21px;
  }

  .igivx-section-wrap .igivx-i {
    font-size: 27px;
  }

  .igivx-section-wrap .igivx-card-title {
    font-size: 19px;
  }

  .igivx-section-wrap .igivx-card-text {
    margin-top: 11px;
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .igivx-section-wrap .igivx-band {
    padding: 50px 0;
  }

  .igivx-section-wrap .igivx-container {
    padding: 0 16px;
  }

  .igivx-section-wrap .igivx-heading {
    font-size: 28px;
    max-width: 420px;
  }

  .igivx-section-wrap .igivx-intro {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.55;
  }

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

  .igivx-section-wrap .igivx-card {
    min-height: 232px;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .igivx-section-wrap .igivx-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .igivx-section-wrap .igivx-i {
    font-size: 22px;
  }

  .igivx-section-wrap .igivx-card-title {
    font-size: 16px;
  }

  .igivx-section-wrap .igivx-card-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .igivx-section-wrap .igivx-band {
    padding: 44px 0;
  }

  .igivx-section-wrap .igivx-container {
    padding: 0 12px;
  }

  .igivx-section-wrap .igivx-heading {
    font-size: 25px;
    max-width: 340px;
  }

  .igivx-section-wrap .igivx-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.5;
  }

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

  .igivx-section-wrap .igivx-card {
    min-height: 224px;
    padding: 19px 11px;
    border-radius: 16px;
  }

  .igivx-section-wrap .igivx-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 14px;
  }

  .igivx-section-wrap .igivx-i {
    font-size: 20px;
  }

  .igivx-section-wrap .igivx-card-title {
    font-size: 15px;
  }

  .igivx-section-wrap .igivx-card-text {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.44;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .igivx-section-wrap .igivx-band {
    padding: 38px 0;
  }

  .igivx-section-wrap .igivx-container {
    padding: 0 9px;
  }

  .igivx-section-wrap .igivx-heading {
    font-size: 22px;
    max-width: 292px;
  }

  .igivx-section-wrap .igivx-intro {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.45;
  }

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

  .igivx-section-wrap .igivx-card {
    min-height: 216px;
    padding: 16px 8px;
    border-radius: 14px;
  }

  .igivx-section-wrap .igivx-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 12px;
  }

  .igivx-section-wrap .igivx-i {
    font-size: 18px;
  }

  .igivx-section-wrap .igivx-card-title {
    font-size: 13.5px;
  }

  .igivx-section-wrap .igivx-card-text {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.4;
  }
}