

:root {
  --primary: #d5d5d5;
  --primary-gradient: linear-gradient(180deg, #fff 0%, #fff 100%);
}

.bg-gradient_solid {
  /* background: var(--primary-gradient); */
  background-image: url("img/timeline-background-image.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  /* background-image: linear-gradient(red, yellow, green); */
  padding: 48px 0 400px 0;
}

.event-name {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-weight: 500 !important;
  font-size: 33px !important;
  margin-bottom: 9px !important;
}
.steps {
  position: relative;
  margin-top: 48px;
}
.steps::after {
  content: "";
  position: absolute;
  width: 30px;
  background-color: var(--primary);

background-image: url("img/cohda-road.jpg");
background-size: 100% auto;
background-repeat: repeat-y;

opacity: 0.9;
  top: 0;
  bottom: 0;
  left: 48.6%;
  box-shadow: 0px 16px 27px rgb(0 11 30 / 30%);
}
.steps-container {
  position: relative;
  background-color: inherit;
  width: calc(50% + 32px);
  display: flex;
}
.steps-container .content {
  padding: 32px;
  background-color: rgba(255, 255,255, 0.0);
  position: relative;
  border-radius: 12px 12px 12px 12px;
  /* box-shadow: 0px 16px 27px rgb(0 11 30 / 10%); */
}
.steps .steps-container:nth-child(even) {
  left: calc(50% - 32px);
  flex-direction: row-reverse;
}

.steps .steps-container .date {
  margin-bottom: 10px;
  width: 62px;
  height: 62px;
  /* background-color: var(--primary); */
  background-color: #1c4269;
  font-size: 17.5px;
  font-weight: bold;
  color: #fff !important;
  border-radius: 50%;
  flex-shrink: 0;
  /* align-items: center;
  display: flex;
  justify-content: center;  */
  z-index: 10;
  box-shadow: 0px 16px 27px rgb(0 11 30 / 10%);
  border: 0px solid #525252;
  position: relative;
  top: -6px;
}

.step-line {
  width: 40px;
  background-color: var(--primary);
  height: 10px;
  margin-top: 31px;
  opacity: 0.0;
  flex-shrink: 0;
}

.block-content {
    position: relative;
    top: -6%;
}
/* .event-image {
    box-shadow: 0px 16px 27px rgb(0 11 30 / 10%);
} */
.secondary-image {
    height: 70px;
    width: auto;
}
.image-float {
    min-height: 100%;
}

.steps-container:nth-child(odd) .image-float {
    /* background-color: yellow; */
    position: relative;
    left: 140%;
    top: -76%;
    margin-bottom: -54%;
    transform: rotate(0deg);
    /* transition: 5s; */
}
.steps-container:nth-child(even)  .image-float {
    /* background-color: #1c4269; */
    position: relative;
    right: 140%;
    top: -80.4%;
    margin-bottom: -60%;
    transform: rotate(0deg);
    /* transition: 5s; */
}

  .block-content {
      position: relative;
      top: -10%;
  }


@media (max-width: 1200px) {
    .image-float {
        min-height: 320px;
    }
    .steps-container:nth-child(odd) .image-float {
        left: 160%;
        top: -84%;
    }
    .steps-container:nth-child(even)  .image-float {
        right: 160%;
        top: -90%;
    }
}

@media (max-width: 992px) {
.event-name {
  font-size: 1rem !important;
  font-weight: 600 !important;
}

    .image-float {
        min-height: 240px;
    }
    .steps-container:nth-child(odd) .image-float {
        left: 194%;
        top: -72%;
        /* background-color: yellow; */
    }
    .steps-container:nth-child(even)  .image-float {
        right: 194%;
        top: -75%;
        /* background-color: green; */
    }
    .block-content {
    position: relative;
    top: -6%;
}
}

@media (max-width: 767px) {


    .steps {
      margin-top: 60px;
      /* background-color: red; */
    }

  .steps::after {
    left: 18px;
  }
  .steps-container {
    left: 0;
    flex-direction: row-reverse;
    width: auto;
    margin-bottom: 16px;
    /* background-color: bisque; */
  }
  .steps .steps-container:nth-child(even) {
    left: 0;
  }



  .image-float {
      min-height: 140px;
  }
  .steps-container:nth-child(odd) .image-float {
      left: 0%;
      top: 0%;
      margin-bottom: 0%;
      /* background-color: #1c4269; */
  }
  .steps-container:nth-child(even)  .image-float {
      right: 0%;
      top: 0%;
      margin-bottom: 0%;
      /* background-color: aqua; */
  }

  .block-content {
      position: relative;
      top: -4.8%;
  }

}