/** Shopify CDN: Minification failed

Line 82:8 Expected identifier but found whitespace
Line 82:10 Unexpected "{"
Line 82:19 Expected ":"

**/
.ecs-cards {
  position: relative;
  overflow: hidden;
}

.ecs-cards .embla {
  overflow: visible;
  padding-left: 25px;
}

.ecs-cards .embla__container {
  display: flex;
}

.ecs-cards .embla__slide {
  flex: 0 0 calc(50% - 20px);
  margin-right:  45px;
  min-width: 0;
}

.ecs-cards-carousel {
  display: flex;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.ecs-cards-carousel__sidebar {
  width: 30%;
  padding-right: 3rem;
}

.ecs-cards-carousel__content {
  width: 70%;
  flex: 1;
}

.ecs-cards-carousel__heading {
  color: #002853;
  margin-bottom: 1.5rem;
  font-size: 34px;
  margin-top: 0;
}

.ecs-cards-carousel .esc-button {
  width: 100%;
}

.ecs-cards-carousel__text {
  margin-bottom: 4rem;
}

.ecs-cards-carousel__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  margin-top: 3rem;
  margin-left: 2.5rem;
}

.ecs-cards-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ecs-cards-carousel__arrow {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: {{ section.settings.text_color }};
}

.ecs-cards-carousel__arrow:hover {
  background: transparent;
  border: 0;
}

.ecs-cards-carousel__arrow svg {
  width: 15px;
  height: 28px;
}

.ecs-cards-carousel__arrow--next svg {
  transform: rotate(180deg);
}

.ecs-cards-carousel__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 40, 83, 0.2);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  appearance: none;
  min-height: 0;
}

.ecs-cards-carousel__dot--selected {
  background: #002853;
}

.ecs-cards-carousel__watermark {
  position: absolute;
  top: 0;
  right: 0;
  height: 100% !important;
  width: 40%;
  object-fit: cover;
  object-position: left;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 968px) {
  .ecs-cards-carousel__sidebar,
  .ecs-cards-carousel__content {
    width: 100%;
  }
  .ecs-cards-carousel__text {
    margin-bottom: 2rem;
  }
  .ecs-cards-carousel__sidebar {
    margin-right: 0;
    margin-bottom: 4rem;
    padding-right: 0;
  }
  .ecs-cards .embla {
    padding-left: 0;
  }
  .ecs-cards .embla__slide {
    flex: 0 0 calc(90% - 20px);
  }
  .ecs-cards .embla__slide {
    margin-right: 20px;
  }

  .ecs-cards-carousel__navigation {
    justify-content: space-around;
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (min-width: 968px) {
  .ecs-cards-carousel__content {
    min-width: 0;
    clip-path: inset(0 -100vw 0 0);
  }
}