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

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

.ytav-section-wrap {
  --ytav-primary: #e62117;
  --ytav-secondary: #111827;
  --ytav-accent: #ffb703;
  --ytav-soft: #fff5f3;
  --ytav-text: #172033;
  --ytav-muted: #667085;
  --ytav-border: rgba(230, 33, 23, 0.14);
  --ytav-shadow: rgba(230, 33, 23, 0.16);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.ytav-section-wrap .ytav-panel {
  width: 100% !important;
  overflow: hidden;
}

.ytav-section-wrap .ytav-white {
  background: #ffffff !important;
}

.ytav-section-wrap .ytav-tint {
  background: linear-gradient(180deg, #fff8f6 0%, #fff1ee 100%);
}

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

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

.ytav-section-wrap h2 {
  color: var(--ytav-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 14px;
}

.ytav-section-wrap .ytav-intro {
  color: var(--ytav-muted);
  line-height: 1.7;
  margin-top: 0;
}

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

.ytav-section-wrap .ytav-card {
  position: relative;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ytav-border);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.07);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.ytav-section-wrap .ytav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.10), transparent 42%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.ytav-section-wrap .ytav-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 33, 23, 0.34);
  box-shadow: 0 24px 60px var(--ytav-shadow);
  background: #ffffff;
}

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

.ytav-section-wrap .ytav-icon {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center !important;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ytav-primary), var(--ytav-secondary));
  box-shadow: 0 14px 30px rgba(230, 33, 23, 0.24);
  transition: transform 280ms ease, box-shadow 280ms ease, background-position 280ms ease;
}

.ytav-section-wrap .ytav-card:hover .ytav-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 34px rgba(230, 33, 23, 0.32);
}

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

.ytav-section-wrap h3 {
  position: relative;
  color: var(--ytav-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0;
}

.ytav-section-wrap .ytav-card p {
  position: relative;
  color: var(--ytav-muted);
  line-height: 1.62;
  margin: 0;
}

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

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

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

  .ytav-section-wrap .ytav-intro {
    max-width: 720px;
    font-size: 17px;
    margin-bottom: 42px;
  }

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

  .ytav-section-wrap .ytav-grid {
    gap: 24px;
  }

  .ytav-section-wrap .ytav-card {
    min-height: 298px;
    padding: 34px 28px;
  }

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

  .ytav-section-wrap .ytav-i {
    font-size: 29px;
  }

  .ytav-section-wrap h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .ytav-section-wrap .ytav-card p {
    font-size: 15.5px;
  }
}

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

  .ytav-section-wrap .ytav-container {
    padding: 0 22px;
  }

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

  .ytav-section-wrap .ytav-intro {
    max-width: 650px;
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ytav-section-wrap .ytav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

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

  .ytav-section-wrap .ytav-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 21px;
  }

  .ytav-section-wrap .ytav-i {
    font-size: 26px;
  }

  .ytav-section-wrap h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .ytav-section-wrap .ytav-card p {
    font-size: 15px;
  }
}

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

  .ytav-section-wrap .ytav-container {
    padding: 0 14px;
  }

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

  .ytav-section-wrap .ytav-intro {
    max-width: 420px;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .ytav-section-wrap .ytav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .ytav-section-wrap .ytav-card {
    min-height: 230px;
    padding: 20px 14px;
    border-radius: 16px;
  }

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

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

  .ytav-section-wrap h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ytav-section-wrap .ytav-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

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

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

  .ytav-section-wrap .ytav-intro {
    max-width: 350px;
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 21px;
  }

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

  .ytav-section-wrap .ytav-card {
    min-height: 220px;
    padding: 18px 11px;
    border-radius: 15px;
  }

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

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

  .ytav-section-wrap h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ytav-section-wrap .ytav-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

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

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

  .ytav-section-wrap h2 {
    font-size: 21px;
    max-width: 292px;
  }

  .ytav-section-wrap .ytav-intro {
    max-width: 300px;
    font-size: 12.8px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

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

  .ytav-section-wrap .ytav-card {
    min-height: 214px;
    padding: 16px 9px;
    border-radius: 14px;
  }

  .ytav-section-wrap .ytav-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

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

  .ytav-section-wrap h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ytav-section-wrap .ytav-card p {
    font-size: 12px;
    line-height: 1.42;
  }
}

.ytav-section-wrap .ytav-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ytav-section-wrap.ytav-js .ytav-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.ytav-section-wrap.ytav-js .ytav-reveal.ytav-visible {
  opacity: 1;
  transform: translateY(0);
}