:root {
  --box-shadow: 0px 8px 40px rgba(155, 155, 155, 0.25);
  --gradient-purple-pink: linear-gradient(90deg, #380594 0%, #eb5af6 100%);
  --gradient-grape-aqua: linear-gradient(90deg, #6529f6 0%, #42fbfe 100%);
  --viewportWidth: calc(100vw - var(--scrollbarWidth));
  --component-spacing: 80px;
  --navigation-height: 97px;
}
@media (min-width: 768px) {
  :root {
    --component-spacing: 95px;
  }
}
@media (min-width: 1024px) {
  :root {
    --component-spacing: 130px;
    --navigation-height: 164px;
  }
}
@media (min-width: 1280px) {
  :root {
    --navigation-height: 153px;
  }
}

.block-features-2 .feature {
  background-color: #f9f9f9;
  border-radius: 7px;
  padding: 40px 20px;
}
.block-features-2 .feature .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}
.block-features-2 .feature .icon svg {
  fill: #380594;
  width: auto;
  max-width: 100%;
  height: 100%;
}
.block-features-2 .feature__title,
.block-features-2 .feature h2,
.block-features-2 .feature h3 {
  color: #333333;
}
.block-features-2 .feature p:last-of-type {
  margin-bottom: 0;
}
.block-features-2 .feature .button {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .block-features-2 .feature {
    border-radius: 16px;
    padding: 60px 32px 80px;
  }
}
.block-features-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.block-features-2 .feature .button {
  margin-top: 0;
}
.block-features-2 .feature h2,
.block-features-2 .feature h3 {
  margin-top: 0;
  color: #333333;
}
.block-features-2 .feature:nth-of-type(2) {
  background-color: #eb5af6;
}
.block-features-2 .feature:nth-of-type(2) * {
  color: white;
}
.block-features-2 .feature:nth-of-type(2) .icon:empty {
  display: none;
}
.block-features-2 .feature:nth-of-type(2) .icon svg {
  fill: white;
}
.block-features-2 .feature.first-feature {
  background-color: #380594;
}
.block-features-2 .feature.first-feature h2,
.block-features-2 .feature.first-feature h3,
.block-features-2 .feature.first-feature h4,
.block-features-2 .feature.first-feature p {
  color: white;
}
.block-features-2 .button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .block-features-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .block-features-2 .first-feature {
    grid-column: span 2;
    padding: 40px 32px 80px;
  }
  .block-features-2 .button-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .block-features-2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}