@charset "UTF-8";

/*!
	Timeline - v0.0.1
	ilker Yılmaz
	https://github.com/ilkeryilmaz/timeline
 */
.timeline-container {
  position: relative;
}

.timeline-container::after {
  content: '';
  display: table;
  clear: both;
}

.timeline {
  max-width: 1180px;

}

.timeline-list {
  position: relative;
  max-width: 1180px;

  overflow: hidden;
  margin: 0;
  padding: 0;
}

.timeline-list-wrap {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  transform: translate3d(0, 0, 0);
  transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.timeline-item {
  float: left;
  width: 1200px;
  height: 389px;
  box-sizing: border-box;
}

.timeline-dots-wrap {
  position: absolute;
  overflow: hidden;
}

.timeline-horizontal .timeline-dots-wrap {
  width: 100%;
  height: 50px;
}

.timeline-vertical .timeline-dots-wrap {
  width: 65px;
  height: 100%;
  top: 0;
}

.timeline-dots-wrap.bottom {
  bottom: -50px;
}

.timeline-dots-wrap.top {
  top: -50px;
}

.timeline-dots-wrap.left {
  left: -65px;
}

.timeline-dots-wrap.right {
  right: -70px;
}

.timeline-dots {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.timeline-horizontal .timeline-dots {
  background: url("../img/timeline-bg.png") center repeat-x;
}

.timeline-vertical .timeline-dots {
  background: url("../img/timeline-vertical-bg.png") left repeat-y;
}

.timeline-dots li {
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  list-style: none;
  overflow: hidden;
}

.timeline-horizontal .timeline-dots li {
  float: left;
  width: 50px;
  text-align: center;
}

.timeline-vertical .timeline-dots li {
  width: 100%;
}

.timeline-dots li.slide-active button {
  color: #2972ca;
  font-size: 15px;
}

.timeline-dots button {
  cursor: pointer;
  border: none;
  outline: none;
  color: #333;
  font-size: 12px;
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.timeline-horizontal .timeline-dots button {
  background: url("../img/date-icon.png") top no-repeat;
}

.timeline-vertical .timeline-dots button {
  background: url("../img/date-icon-vertical.png") left no-repeat;
  padding-left: 15px;
}

.timeline-container {
  width: 100%;
  margin: 50px auto 180px;
}

.timeline-list {
  width: 1200px;

}

.timeline-item {
  /*width: calc( 100% / 7);*/
  height: 389px;
}

.timeline-horizontal .timeline-dots {
  transform: unset !important;
  -webkit-transform: unset !important;
  -moz-transform: unset !important;
  -ms-transform: unset !important;
  -o-transform: unset !important;
  width: 100% !important;
}

.custome-timeline .timeline-dots-wrap {
  position: absolute;
  overflow: visible;
  left: 0;
}

.custome-timeline .timeline-dots button {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  color: #D9D9D9;
}

.timeline-dots li.slide-active button {
  color: #1174b5;
  font-size: 40px;

}

.timeline-horizontal .timeline-dots-wrap {
  height: 70px;
}

.timeline-horizontal .timeline-dots button {
  padding-top: 70px;
}

.timeline-horizontal .timeline-dots .slide-active button {
  background: url(../img/date-icon-active.png) top no-repeat;
  padding-top: 95px;

}

.timeline-dots-wrap.top {
  top: unset;
  bottom: -85px;
}



.timeline,
.timeline-list,
.timeline-item {
  width: 1180px;
  max-width: 1180px;
}

.timeline-item {
  height: auto;
  box-sizing: border-box;

}

@media (max-width: 768px) {
  .timeline-horizontal .timeline-dots-wrap {
    height: 50px;
    /* Adjust height for smaller screens */
  }

  .timeline-horizontal .timeline-dots button {
    padding-top: 50px;
    /* Adjust padding for smaller screens */
  }

  /* Further adjustments can be added here */
}