.fds-cec {
  width: 100%;
}

.fds-cec__viewport {
  overflow: hidden;
  width: 100%;
}

.fds-cec__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.fds-cec__slide {
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.fds-cec__grid {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - var(--fds-cec-col2-width, 17%) - var(--fds-cec-col3-width, 42%))) minmax(0, var(--fds-cec-col2-width, 17%)) minmax(0, var(--fds-cec-col3-width, 42%));
  gap: 40px;
  align-items: stretch;
}

.fds-cec--hide-stats .fds-cec__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fds-cec__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fds-cec__col--1 {
  text-align: justify;
}

.fds-cec__title,
.fds-cec__text,
.fds-cec__stat-value,
.fds-cec__stat-text {
  margin: 0;
}

.fds-cec__title {
  margin-bottom: 12px;
  text-align: left;
}

.fds-cec__text {
  text-align: justify;
}

.fds-cec__stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.fds-cec__stat {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.fds-cec__logo-wrap {
  margin-bottom: 18px;
}

.fds-cec__logo {
  display: block;
  width: auto;
  height: 60px !important;
  filter: grayscale(100%) brightness(80%);
}

.fds-cec__col h1 span,
.fds-cec__col h2 span,
.fds-cec__col h3 span,
.fds-cec__col h4 span,
.fds-cec__col h5 span,
.fds-cec__col h6 span,
.fds-cec__col h1 span strong,
.fds-cec__col h2 span strong,
.fds-cec__col h3 span strong,
.fds-cec__col h4 span strong,
.fds-cec__col h5 span strong,
.fds-cec__col h6 span strong {
    color: #032A4E;
  font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.fds-cec__col--2 h1,
.fds-cec__col--2 h2,
.fds-cec__col--2 h3,
.fds-cec__col--2 h4,
.fds-cec__col--2 h5,
.fds-cec__col--2 h6 {
    margin-bottom: 0;
}

.fds-cec__col--2 h1:not(:first-child),
.fds-cec__col--2 h2:not(:first-child),
.fds-cec__col--2 h3:not(:first-child),
.fds-cec__col--2 h4:not(:first-child),
.fds-cec__col--2 h5:not(:first-child),
.fds-cec__col--2 h6:not(:first-child){
    margin-top: 24px;
}



.fds-cec__col--3 img,
.fds-cec__image {
  display: block;
  width: 100%;
  height: auto;
}

.fds-cec__controls {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.fds-cec__controls.is-no-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.fds-cec__controls.is-no-dots .fds-cec__dots {
  display: none !important;
}

.fds-cec__controls.is-no-arrows {
  grid-template-columns: 1fr;
}

.fds-cec__arrow {
  width: 24px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

.fds-cec__arrow--prev {
  background-image: url("../images/right.svg");
}

.fds-cec__arrow--next {
  background-image: url("../images/left.svg");
}

.fds-cec__arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.fds-cec__controls.is-no-arrows .fds-cec__arrow {
  display: none;
}

.fds-cec__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.fds-cec__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #c9d0da;
  cursor: pointer;
  padding: 0;
}

.fds-cec__dot.is-active {
  background: #0f72d8;
}

.fds-cec__empty {
  color: #7a7a7a;
  padding: 16px;
}

@media (max-width: 1024px) {
  .fds-cec__grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }

  .fds-cec__col--3 {
    grid-column: 1 / -1;
  }

  .fds-cec--hide-stats .fds-cec__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fds-cec--hide-stats .fds-cec__col--3 {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .fds-cec__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fds-cec__col--3 {
    grid-column: auto;
  }

  .fds-cec--hide-stats .fds-cec__grid {
    grid-template-columns: 1fr;
  }
}
