.cd-timeline {
  overflow: hidden;
  font-family: "Public Sans";
  font-size: 28px;
}
.cd-timeline h2 {
  font-family: "Public Sans";
  font-weight: 700;
  margin-bottom: 10px;
}

.cd-timeline__header {
  display: flex;
  justify-content: space-between;
  font-family: "jaf-domus-titling-web";
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  margin: 0;
  position: relative;
  top: 10px;
}
.cd-timeline__header h4 {
  padding: 40px;
  padding-top: 0;
  width: 45%;
}
.cd-timeline__header h4:first-child {
  -webkit-text-stroke: 1.5px #fff;
  text-stroke: 1px #fff;
  color: #2b9161;
}
.cd-timeline__header h4:not(:first-child) {
  -webkit-text-stroke: 1.5px #fff;
  text-stroke: 1px #fff;
  color: #652580;
}

.cd-timeline__container {
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
}
.cd-timeline__container::before {
  content: "";
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 4px;
  background: white;
  box-shadow: 0 0 20px #fff, -10px 0 80px #b38cc3, 10px 0 80px #89d5b1;
}

.cd-timeline__block {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.cd-timeline__block:last-child {
  margin-bottom: 0;
}

.cd-timeline__img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  size: 28px;
  font-size: 18px;
  border-radius: 50%;
  background: white;
  color: #313131;
  font-weight: 500;
  box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
  width: 60px;
  height: 60px;
  margin-left: calc(5% - 30px);
  margin-right: calc(5% - 30px);
  will-change: transform;
}
.cd-timeline__img.info {
  display: inline-table;
  text-align: center;
  width: 500px;
  border-radius: 19px;
  padding-bottom: 13px;
  padding-top: 13px;
}
.cd-timeline__img.info p {
  font-weight: 700;
  padding-top: 7px;
  text-transform: uppercase;
}

.cd-timeline__img.info.text-component {
  font-size: 0.7em;
  line-height: 1.2;
}

.cd-timeline__img.info.text-component p {
  text-transform: none;
  color: #2b9161;
  font-weight: 400;
  margin: 0;
}

.cd-timeline__img.info.text-component div {
  text-transform: none;
  text-align: center;
  color: #212529;
  font-weight: 400;
}

.cd-timeline__img.info.text-component p:first-child {
  font-weight: 700;
  margin-bottom: 6px;
}

.empty__content {
  background: transparent !important;
  box-shadow: none !important;
}
.empty__content::before {
  content: none !important;
}

.cd-timeline-item {
  padding: 20px;
  border-radius: 10px;
  position: relative;
  background: white;
  box-shadow: 0 3px 0 white;
  --line-height-multiplier: 1.2;
  width: 45%;
  will-change: transform;
  margin: 0;
  font-size: 0.7em;
  flex-grow: 0;
}
.cd-timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
}

.cd-timeline__content::before {
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-left-color: white;
  right: auto;
  left: 100%;
}
.cd-timeline__content h2 {
  color: #2b9161;
}

.cd-timeline__content2::before {
  right: 100%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-right-color: white;
}
.cd-timeline__content2 h2 {
  color: #652580;
}

.cd-timeline__img--hidden,
.cd-timeline__content--hidden {
  visibility: hidden;
}

.cd-timeline__img--bounce-in {
  animation: cd-bounce-1 1.2s;
}

.cd-timeline__content--bounce-in {
  animation: cd-bounce-2 1.2s;
}

.cd-timeline__content2--bounce-in {
  animation: cd-bounce-2 1.2s;
  animation-name: cd-bounce-2-inverse;
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1000px) {
  .cd-timeline__block {
    font-size: 80%;
    margin-bottom: 0;
    word-break: break-word;
  }
  .cd-timeline__block:not(:last-child) {
    margin-bottom: 40px;
  }
  .cd-timeline__img {
    font-size: 70%;
  }
  .cd-timeline-item {
    margin-top: 70px;
    margin-bottom: 35px;
    padding: 20px 25px;
  }
  .empty__content {
    margin-top: 10px;
    margin-bottom: 60px;
  }
  .cd-timeline__img.info {
    width: 70%;
  }
  .cd-timeline__header {
    top: 48px;
    gap: 70px;
    font-size: 35px;
  }
  .cd-timeline__header h4 {
    padding: 0px;
    font-size: 75%;
  }
  .cd-timeline__header h4:first-child {
    padding: 0 5px;
  }
  .cd-timeline__header h4:not(:first-child) {
    padding: 0 5px;
  }
  .cd-timeline__container::before {
    top: 80px;
  }
  .cd-timeline__container .cd-timeline__block:last-child .empty__content {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=timeline.css.map */
