.card-section {
  padding: 3.75rem 1.5rem;
}
.card-section * {
  transition: transform 0.4s ease;
}
.card-section .card-section-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card-section .card-section-container .card-section-title {
  color: #022A5E;
}
.card-section .card-section-container .card-section-description {
  color: #605F5F;
}
.card-section .card-section-container .card-wrapper div:has(.field__item) {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 100%);
  row-gap: 1.5rem;
  overflow: hidden;
}
.card-section .card-section-container .card-wrapper div:has(.field__item) .field__item {
  width: stretch;
  position: relative;
  left: -100%;
}
.card-section .card-section-container .card-wrapper div:has(.field__item) .field__item * {
  transition: min-height 0.5s ease, background-color 0.3s ease, color 0.3s ease, transform 0.5s ease;
}
.card-section .card-section-container .card-wrapper div:has(.field__item) .field__item > *:hover {
  color: white;
  background-color: #1540DD;
}

@media (min-width: 769px) {
  .block__content .mannual-slider {
    display: none !important;
  }
  .card-section {
    padding: 3.75rem 2.5rem;
  }
  .card-section .card-section-container {
    gap: 1.25rem;
  }
  .card-section .card-section-container .card-wrapper div:has(.field__item) {
    position: static;
    grid-template-columns: repeat(2, 22.125rem);
    row-gap: 1.25rem;
    column-gap: 1.25rem;
    transform: none !important;
  }
  .card-section .card-section-container .card-wrapper div:has(.field__item) .field__item {
    position: static;
  }
}
@media (min-width: 1025px) {
  .card-section .card-section-container .card-wrapper div:has(.field__item) {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ======================================
   CONTROLS
====================================== */
.block__content * {
  transition: transform 0.2s ease;
}
.block__content .mannual-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.875rem;
}
.block__content .mannual-slider .slider-controls {
  display: flex;
  gap: 1rem;
}
.block__content .mannual-slider .slider-controls button {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  border: 0.0625rem solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}
.block__content .mannual-slider .slider-controls button:hover {
  background: #1540DD;
  color: #fff;
}
.block__content .mannual-slider .slider-dots {
  display: flex;
  gap: 0.625rem;
  flex-direction: row;
  margin-top: 0.9375rem;
}
.block__content .mannual-slider .slider-dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #cbd5e1;
  transition: 0.2s ease;
}
.block__content .mannual-slider .slider-dots span.active {
  background: #1540DD;
  position: relative;
  top: -0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
}

/*# sourceMappingURL=card-section.css.map */
