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

.rbv26-wrapper,
.rbv26-wrapper * {
  box-sizing: border-box;
  min-width: 0;
}

.rbv26-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1d252f;
  font-family: Arial, Helvetica, sans-serif;
}

.rbv26-wrapper .rbv26-section {
  width: 100% !important;
  overflow: hidden;
}

.rbv26-wrapper .rbv26-section-white {
  background: #ffffff;
}

.rbv26-wrapper .rbv26-section-tint {
  background: linear-gradient(180deg, #fff7f2 0%, #f7fbfa 100%);
}

.rbv26-wrapper .rbv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.rbv26-wrapper .rbv26-heading,
.rbv26-wrapper .rbv26-intro,
.rbv26-wrapper .rbv26-card-title,
.rbv26-wrapper .rbv26-card-text {
  text-align: center !important;
}

.rbv26-wrapper .rbv26-heading {
  margin: 0 auto;
  color: #19212b;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.rbv26-wrapper .rbv26-intro {
  margin: 0 auto;
  color: #5f6874;
  line-height: 1.65;
  font-weight: 500;
}

.rbv26-wrapper .rbv26-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.rbv26-wrapper .rbv26-card {
  position: relative;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid #eadfd7;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(174, 86, 38, 0.1);
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.rbv26-wrapper .rbv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.11), transparent 46%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.rbv26-wrapper .rbv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.34);
  box-shadow: 0 24px 58px rgba(174, 86, 38, 0.17);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
}

.rbv26-wrapper .rbv26-card:hover::before {
  opacity: 1;
}

.rbv26-wrapper .rbv26-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff4500 0%, #ff7a3d 52%, #12a594 100%);
  box-shadow: 0 14px 30px rgba(255, 69, 0, 0.24);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.rbv26-wrapper .rbv26-card:hover .rbv26-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 38px rgba(18, 165, 148, 0.24);
}

.rbv26-wrapper .rbv26-i {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  font-style: normal;
  font-weight: 900;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", Arial, Helvetica, sans-serif;
}

.rbv26-wrapper .fa-eye::before { content: "\f06e"; }
.rbv26-wrapper .fa-comments::before { content: "\f086"; }
.rbv26-wrapper .fa-hashtag::before { content: "\23"; }
.rbv26-wrapper .fa-magnifying-glass::before { content: "\f002"; }
.rbv26-wrapper .fa-layer-group::before { content: "\f5fd"; }
.rbv26-wrapper .fa-shield-halved::before { content: "\f3ed"; }
.rbv26-wrapper .fa-link::before { content: "\f0c1"; }
.rbv26-wrapper .fa-filter::before { content: "\f0b0"; }
.rbv26-wrapper .fa-list::before { content: "\f03a"; }
.rbv26-wrapper .fa-clock::before { content: "\f017"; }
.rbv26-wrapper .fa-chart-line::before { content: "\f201"; }
.rbv26-wrapper .fa-bookmark::before { content: "\f02e"; }
.rbv26-wrapper .fa-mobile-screen::before { content: "\f3cf"; }
.rbv26-wrapper .fa-gauge-high::before { content: "\f625"; }
.rbv26-wrapper .fa-lightbulb::before { content: "\f0eb"; }
.rbv26-wrapper .fa-bullseye::before { content: "\f140"; }
.rbv26-wrapper .fa-thumbs-up::before { content: "\f164"; }
.rbv26-wrapper .fa-folder-open::before { content: "\f07c"; }
.rbv26-wrapper .fa-circle-info::before { content: "\f05a"; }
.rbv26-wrapper .fa-star::before { content: "\f005"; }

.rbv26-wrapper .rbv26-card-title {
  position: relative;
  margin: 0;
  color: #202a35;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.rbv26-wrapper .rbv26-card-text {
  position: relative;
  margin: 0;
  color: #64707c;
  line-height: 1.6;
  font-weight: 500;
}

.rbv26-wrapper.rbv26-js-enabled .rbv26-card {
  opacity: 0;
  transform: translateY(18px);
}

.rbv26-wrapper.rbv26-js-enabled .rbv26-card.rbv26-revealed {
  opacity: 1;
  transform: translateY(0);
}

.rbv26-wrapper.rbv26-js-enabled .rbv26-card.rbv26-revealed:hover {
  transform: translateY(-8px);
}

@media (min-width: 1024px) {
  .rbv26-wrapper .rbv26-section {
    padding: 92px 0;
  }

  .rbv26-wrapper .rbv26-container {
    padding: 0 28px;
  }

  .rbv26-wrapper .rbv26-heading {
    font-size: 42px;
    max-width: 880px;
    white-space: nowrap;
  }

  .rbv26-wrapper .rbv26-intro {
    max-width: 760px;
    margin-top: 18px;
    font-size: 18px;
  }

  .rbv26-wrapper .rbv26-grid {
    gap: 26px;
    margin-top: 44px;
  }

  .rbv26-wrapper .rbv26-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rbv26-wrapper .rbv26-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rbv26-wrapper .rbv26-card {
    min-height: 300px;
    padding: 36px 26px 30px;
  }

  .rbv26-wrapper .rbv26-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
  }

  .rbv26-wrapper .rbv26-i {
    font-size: 30px;
  }

  .rbv26-wrapper .rbv26-card-title {
    font-size: 20px;
  }

  .rbv26-wrapper .rbv26-card-text {
    margin-top: 14px;
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rbv26-wrapper .rbv26-section {
    padding: 76px 0;
  }

  .rbv26-wrapper .rbv26-container {
    padding: 0 24px;
  }

  .rbv26-wrapper .rbv26-heading {
    max-width: 720px;
    font-size: 36px;
  }

  .rbv26-wrapper .rbv26-intro {
    max-width: 690px;
    margin-top: 16px;
    font-size: 17px;
  }

  .rbv26-wrapper .rbv26-grid,
  .rbv26-wrapper .rbv26-grid-3,
  .rbv26-wrapper .rbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
  }

  .rbv26-wrapper .rbv26-card {
    min-height: 270px;
    padding: 32px 24px 28px;
    border-radius: 20px;
  }

  .rbv26-wrapper .rbv26-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

  .rbv26-wrapper .rbv26-i {
    font-size: 27px;
  }

  .rbv26-wrapper .rbv26-card-title {
    font-size: 19px;
  }

  .rbv26-wrapper .rbv26-card-text {
    margin-top: 12px;
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rbv26-wrapper .rbv26-section {
    padding: 58px 0;
  }

  .rbv26-wrapper .rbv26-container {
    padding: 0 16px;
  }

  .rbv26-wrapper .rbv26-heading {
    max-width: 390px;
    font-size: 29px;
  }

  .rbv26-wrapper .rbv26-intro {
    max-width: 420px;
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .rbv26-wrapper .rbv26-grid,
  .rbv26-wrapper .rbv26-grid-3,
  .rbv26-wrapper .rbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .rbv26-wrapper .rbv26-card {
    min-height: 232px;
    padding: 22px 13px 20px;
    border-radius: 16px;
  }

  .rbv26-wrapper .rbv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .rbv26-wrapper .rbv26-i {
    font-size: 22px;
  }

  .rbv26-wrapper .rbv26-card-title {
    font-size: 15.5px;
  }

  .rbv26-wrapper .rbv26-card-text {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rbv26-wrapper .rbv26-section {
    padding: 50px 0;
  }

  .rbv26-wrapper .rbv26-container {
    padding: 0 12px;
  }

  .rbv26-wrapper .rbv26-heading {
    max-width: 340px;
    font-size: 25px;
  }

  .rbv26-wrapper .rbv26-intro {
    max-width: 350px;
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.52;
  }

  .rbv26-wrapper .rbv26-grid,
  .rbv26-wrapper .rbv26-grid-3,
  .rbv26-wrapper .rbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .rbv26-wrapper .rbv26-card {
    min-height: 224px;
    padding: 20px 11px 18px;
    border-radius: 14px;
  }

  .rbv26-wrapper .rbv26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .rbv26-wrapper .rbv26-i {
    font-size: 20px;
  }

  .rbv26-wrapper .rbv26-card-title {
    font-size: 14.5px;
  }

  .rbv26-wrapper .rbv26-card-text {
    margin-top: 8px;
    font-size: 12.2px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rbv26-wrapper .rbv26-section {
    padding: 44px 0;
  }

  .rbv26-wrapper .rbv26-container {
    padding: 0 10px;
  }

  .rbv26-wrapper .rbv26-heading {
    max-width: 300px;
    font-size: 22px;
  }

  .rbv26-wrapper .rbv26-intro {
    max-width: 300px;
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.48;
  }

  .rbv26-wrapper .rbv26-grid,
  .rbv26-wrapper .rbv26-grid-3,
  .rbv26-wrapper .rbv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .rbv26-wrapper .rbv26-card {
    min-height: 216px;
    padding: 18px 9px 16px;
    border-radius: 13px;
  }

  .rbv26-wrapper .rbv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
  }

  .rbv26-wrapper .rbv26-i {
    font-size: 18px;
  }

  .rbv26-wrapper .rbv26-card-title {
    font-size: 13.4px;
  }

  .rbv26-wrapper .rbv26-card-text {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .rbv26-wrapper .rbv26-section {
    padding: 38px 0;
  }

  .rbv26-wrapper .rbv26-container {
    padding: 0 10px;
  }

  .rbv26-wrapper .rbv26-grid,
  .rbv26-wrapper .rbv26-grid-3,
  .rbv26-wrapper .rbv26-grid-4 {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .rbv26-wrapper .rbv26-heading {
    font-size: 21px;
  }

  .rbv26-wrapper .rbv26-intro {
    margin-top: 9px;
    font-size: 12.5px;
  }

  .rbv26-wrapper .rbv26-card {
    min-height: 210px;
    padding: 18px 12px;
  }

  .rbv26-wrapper .rbv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .rbv26-wrapper .rbv26-i {
    font-size: 18px;
  }

  .rbv26-wrapper .rbv26-card-title {
    font-size: 14px;
  }

  .rbv26-wrapper .rbv26-card-text {
    margin-top: 7px;
    font-size: 12px;
  }
}