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

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

.rbv-section-wrap {
  --rbv-primary: #ff4500;
  --rbv-secondary: #7c2d12;
  --rbv-accent: #00a6a6;
  --rbv-soft: #fff5f0;
  --rbv-text: #1e252b;
  --rbv-muted: #66717c;
  --rbv-border: rgba(255, 69, 0, 0.18);
  --rbv-shadow: rgba(74, 35, 15, 0.14);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

.rbv-section-wrap .rbv-section-one,
.rbv-section-wrap .rbv-section-three {
  background: #ffffff;
}

.rbv-section-wrap .rbv-section-two {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.1), transparent 34%),
    linear-gradient(180deg, #fff8f4 0%, #fffdfb 100%);
}

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

.rbv-section-wrap .rbv-heading {
  margin: 0 auto;
  color: var(--rbv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.rbv-section-wrap .rbv-intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--rbv-muted);
  font-weight: 450;
  line-height: 1.65;
  text-align: center;
}

.rbv-section-wrap .rbv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.rbv-section-wrap .rbv-card {
  position: relative;
  display: block;
  height: 100% !important;
  overflow: hidden;
  border: 1px solid var(--rbv-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.09), transparent 44%);
  border-radius: 22px;
  box-shadow: 0 18px 46px var(--rbv-shadow);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
}

.rbv-section-wrap .rbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12), rgba(0, 166, 166, 0.09));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.rbv-section-wrap .rbv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.38);
  box-shadow: 0 24px 58px rgba(74, 35, 15, 0.2);
}

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

.rbv-section-wrap .rbv-card:hover .rbv-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 30px rgba(255, 69, 0, 0.24);
}

.rbv-section-wrap .rbv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rbv-primary), var(--rbv-secondary) 58%, var(--rbv-accent));
  box-shadow: 0 13px 26px rgba(255, 69, 0, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.rbv-section-wrap .rbv-i {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.rbv-section-wrap .rbv-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--rbv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.rbv-section-wrap .rbv-card-text {
  position: relative;
  z-index: 1;
  margin: 12px auto 0;
  color: var(--rbv-muted);
  font-weight: 430;
  line-height: 1.58;
  text-align: center;
}

@media (min-width: 1024px) {
  .rbv-section-wrap .rbv-section {
    padding-top: 92px;
    padding-bottom: 96px;
  }

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

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

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

  .rbv-section-wrap .rbv-card {
    min-height: 300px;
    padding: 38px 28px 32px;
  }

  .rbv-section-wrap .rbv-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin-bottom: 26px;
  }

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

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

  .rbv-section-wrap .rbv-card-text {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rbv-section-wrap .rbv-section {
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .rbv-section-wrap .rbv-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .rbv-section-wrap .rbv-heading {
    font-size: 34px;
    max-width: 780px;
  }

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

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

  .rbv-section-wrap .rbv-card {
    min-height: 270px;
    padding: 32px 24px 28px;
    border-radius: 20px;
  }

  .rbv-section-wrap .rbv-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

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

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

  .rbv-section-wrap .rbv-card-text {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rbv-section-wrap .rbv-section {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .rbv-section-wrap .rbv-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rbv-section-wrap .rbv-heading {
    font-size: 28px;
    max-width: 520px;
  }

  .rbv-section-wrap .rbv-intro {
    font-size: 14.5px;
    line-height: 1.55;
  }

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

  .rbv-section-wrap .rbv-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

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

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

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

  .rbv-section-wrap .rbv-card-text {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.45;
  }
}

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

  .rbv-section-wrap .rbv-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .rbv-section-wrap .rbv-heading {
    font-size: 25px;
    max-width: 350px;
  }

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

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

  .rbv-section-wrap .rbv-card {
    min-height: 224px;
    padding: 19px 11px 18px;
    border-radius: 15px;
  }

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

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

  .rbv-section-wrap .rbv-card-title {
    font-size: 14.5px;
  }

  .rbv-section-wrap .rbv-card-text {
    margin-top: 8px;
    font-size: 12.25px;
    line-height: 1.42;
  }
}

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

  .rbv-section-wrap .rbv-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .rbv-section-wrap .rbv-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .rbv-section-wrap .rbv-intro {
    font-size: 12.75px;
    line-height: 1.45;
    margin-top: 10px;
  }

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

  .rbv-section-wrap .rbv-card {
    min-height: 214px;
    padding: 16px 9px 15px;
    border-radius: 13px;
  }

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

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

  .rbv-section-wrap .rbv-card-title {
    font-size: 13.25px;
    line-height: 1.22;
  }

  .rbv-section-wrap .rbv-card-text {
    margin-top: 7px;
    font-size: 11.4px;
    line-height: 1.38;
  }
}

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

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

.rbv-section-wrap.rbv-js-ready .rbv-card.rbv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
}