section.block.block-carousel-cards {
  position: relative;
}
section.block.block-carousel-cards .halo {
  left: inherit;
  bottom: inherit;
  right: -50%;
  top: 100px;
  height: 900px;
  width: 100%;
  display: none;
}
section.block.block-carousel-cards .container {
  position: relative;
  z-index: 2;
}
section.block.block-carousel-cards .container .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
section.block.block-carousel-cards .container .header .titles {
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 768px) {
  section.block.block-carousel-cards .container .header .titles {
    display: none;
  }
}
section.block.block-carousel-cards .container .header .titles .title {
  font-family: var(--typo-title);
  font-size: 18px;
  font-weight: 300;
  opacity: 0.5;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
  cursor: pointer;
}
section.block.block-carousel-cards .container .header .titles .title.active {
  opacity: 1;
  border-bottom: 1px solid var(--primary);
}
section.block.block-carousel-cards .container .header .controls {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  section.block.block-carousel-cards .container .header .controls {
    width: 100%;
    justify-content: space-between;
  }
}
section.block.block-carousel-cards .container .header .controls .current-slide {
  display: none;
  font-size: 18px;
  font-family: var(--typo-title);
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  section.block.block-carousel-cards .container .header .controls .current-slide {
    display: flex;
    width: calc(100% - 88px);
  }
}
section.block.block-carousel-cards .container .header .controls .left, section.block.block-carousel-cards .container .header .controls .right {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 99999px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.block.block-carousel-cards .container .header .controls .left.disabled, section.block.block-carousel-cards .container .header .controls .right.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
section.block.block-carousel-cards .container .header .controls .left:after, section.block.block-carousel-cards .container .header .controls .right:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI0IDI1IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTguMjk0OTggMTYuOTIwOEwxMi44NzUgMTIuMzMwOEw4LjI5NDk4IDcuNzQwODFMOS43MDQ5OCA2LjMzMDgxTDE1LjcwNSAxMi4zMzA4TDkuNzA0OTggMTguMzMwOEw4LjI5NDk4IDE2LjkyMDhaIiBmaWxsPSIjMDkwOTBCIi8+Cjwvc3ZnPg==");
}
section.block.block-carousel-cards .container .header .controls .left:after {
  transform: rotate(180deg);
}
section.block.block-carousel-cards .container .cards {
  width: 100vw;
  margin-left: calc((100vw - var(--container-width)) / -2);
}
section.block.block-carousel-cards .container .cards .card {
  max-width: var(--container-width);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: var(--background-primary);
  padding: var(--spacing-2-xl);
}
@media screen and (max-width: 768px) {
  section.block.block-carousel-cards .container .cards .card {
    margin-bottom: 0;
    flex-direction: column;
    padding: var(--spacing-2-xl);
    gap: 0px;
  }
}
section.block.block-carousel-cards .container .cards .card .col-6 {
  height: fit-content;
}
section.block.block-carousel-cards .container .cards .card .image-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section.block.block-carousel-cards .container .cards .card .image {
  width: 100%;
  height: 300px;
  width: 500px;
  display: flex;
}
@media screen and (max-width: 768px) {
  section.block.block-carousel-cards .container .cards .card .image {
    display: none;
  }
}
section.block.block-carousel-cards .container .cards .card .image img, section.block.block-carousel-cards .container .cards .card .image picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
section.block.block-carousel-cards .container .cards .card h3 {
  max-width: 350px;
  margin-bottom: 30px;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  section.block.block-carousel-cards .container .cards .card h3 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}