@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.5.2/css/all.min.css");

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

.iav-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #241a22;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.iav-section-wrap .iav-panel {
  width: 100% !important;
}

.iav-section-wrap .iav-panel-white {
  background: #ffffff;
}

.iav-section-wrap .iav-panel-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 92, 134, 0.14), transparent 34%),
    linear-gradient(180deg, #fff7f9 0%, #fff2f5 100%);
}

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

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

.iav-section-wrap h2 {
  margin-top: 0;
  color: #1f1720;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.iav-section-wrap .iav-intro {
  color: #6e5b66;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 780px;
}

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

.iav-section-wrap .iav-card {
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9)),
    radial-gradient(circle at 50% 0%, rgba(255, 92, 134, 0.12), transparent 48%);
  border: 1px solid rgba(226, 194, 206, 0.85);
  box-shadow: 0 18px 44px rgba(93, 38, 62, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 320ms ease;
  position: relative;
  overflow: hidden;
}

.iav-section-wrap .iav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 184, 77, 0.16) 48%, transparent 78%);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.iav-section-wrap .iav-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 48, 108, 0.38);
  box-shadow: 0 24px 58px rgba(93, 38, 62, 0.15);
}

.iav-section-wrap .iav-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.iav-section-wrap .iav-icon {
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #e1306c 0%, #fd1d1d 54%, #fcb045 100%);
  box-shadow: 0 14px 28px rgba(225, 48, 108, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
  position: relative;
  z-index: 1;
}

.iav-section-wrap .iav-card:hover .iav-icon {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 18px 34px rgba(225, 48, 108, 0.3);
}

.iav-section-wrap .iav-i {
  color: #ffffff;
  line-height: 1;
}

.iav-section-wrap .iav-card h3 {
  color: #241a22;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.iav-section-wrap .iav-card p {
  color: #715f69;
  line-height: 1.65;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .iav-section-wrap .iav-panel {
    padding: 92px 0;
  }

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

  .iav-section-wrap h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .iav-section-wrap .iav-intro {
    font-size: 17px;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 296px;
    padding: 34px 28px 30px;
    border-radius: 22px;
  }

  .iav-section-wrap .iav-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

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

  .iav-section-wrap .iav-card h3 {
    font-size: 21px;
  }

  .iav-section-wrap .iav-card p {
    font-size: 15.5px;
    margin-top: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .iav-section-wrap .iav-panel {
    padding: 72px 0;
  }

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

  .iav-section-wrap h2 {
    font-size: 34px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 16px;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .iav-section-wrap .iav-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

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

  .iav-section-wrap .iav-card h3 {
    font-size: 20px;
  }

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

@media (min-width: 430px) and (max-width: 767px) {
  .iav-section-wrap .iav-panel {
    padding: 54px 0;
  }

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

  .iav-section-wrap h2 {
    font-size: 27px;
    max-width: 390px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 14.5px;
    line-height: 1.6;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

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

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

  .iav-section-wrap .iav-card h3 {
    font-size: 16px;
  }

  .iav-section-wrap .iav-card p {
    font-size: 13px;
    line-height: 1.55;
    margin-top: 10px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .iav-section-wrap .iav-panel {
    padding: 48px 0;
  }

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

  .iav-section-wrap h2 {
    font-size: 24px;
    max-width: 340px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 13.5px;
    line-height: 1.55;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 218px;
    padding: 18px 10px 17px;
    border-radius: 15px;
  }

  .iav-section-wrap .iav-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

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

  .iav-section-wrap .iav-card h3 {
    font-size: 15px;
  }

  .iav-section-wrap .iav-card p {
    font-size: 12.25px;
    line-height: 1.5;
    margin-top: 9px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .iav-section-wrap .iav-panel {
    padding: 42px 0;
  }

  .iav-section-wrap .iav-container {
    padding: 0 10px;
  }

  .iav-section-wrap h2 {
    font-size: 22px;
    max-width: 300px;
  }

  .iav-section-wrap .iav-intro {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .iav-section-wrap .iav-card {
    min-height: 212px;
    padding: 16px 8px 15px;
    border-radius: 14px;
  }

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

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

  .iav-section-wrap .iav-card h3 {
    font-size: 14px;
  }

  .iav-section-wrap .iav-card p {
    font-size: 11.6px;
    line-height: 1.45;
    margin-top: 8px;
  }
}