@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 {
  width: 100%; }

.timeline-list {
  position: relative;
  width: 100%;
  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-dots-wrap {
  position: absolute;
  overflow: hidden;
    z-index: 20;
}
.timeline-horizontal .timeline-dots-wrap {
    width: 100%;
    height: 70px;
    background: url("../img/timeline-bg.png") repeat-x;
    background-position: 0 49px;
}
.timeline-vertical .timeline-dots-wrap {
  width: 65px;
  height: 100%;
  top: 0; }
.timeline-dots-wrap.bottom {
  bottom: 75px; }
.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") repeat-x;
    background-position: 0 49px;
}
.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: 200px;
  text-align: center; }
.timeline-vertical .timeline-dots li {
  width: 100%; }
.timeline-dots li.slide-active button {
    color: #fff;
    font-size: 32px;
    background-size: 22px;
    background-position: center 39px;
}
.timeline-dots button {
  cursor: pointer;
  border: none;
  outline: none;
  color: #E4E4E4;
  font-size: 32px;
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.timeline-horizontal .timeline-dots button {
    background: url("../img/date-icon.png") no-repeat;
    background-size: 11px;
    background-position: center 44px;
    padding-bottom: 22px;

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

.timeline-container {
  width: 100%;
  margin: 20px auto 0 auto;
}

.timeline-list {
    width: 100%;
    border-radius: 10px;
}

.timeline-item {
    width: 1360px;
    height: 776px;
    float: left;
    position: relative;
}
.timeline-item img {
    width: 100%;
}

.timeline-item .title {
    position: absolute;
    left: 110px;
    top: 280px;
    color: #fff;
    font-size: 94px;
    font-weight: bold;
    line-height: 94px;
    z-index: 20;
}
.timeline-item .text {
    position: absolute;
    left: 110px;
    top: 385px;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    z-index: 20;
}
.shadow-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 28%;
    background-image: linear-gradient(to top, rgb(1, 1, 1), rgba(1,1,1,0));
    z-index: 10;
    border-radius: 0 0 10px 10px;
}
.shadow-left {
    position: absolute;
    left: 0;
    top: 145px;
    width: 40%;
    height: 55%;
    z-index: 10;
    background-image: url(../img/shadow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media(max-width: 992px) {
    .timeline-item {
        height: auto;
    }
    .timeline-horizontal .timeline-dots li {
        width: 90px;
    }
    .timeline-dots li.slide-active button {
        font-size: 22px;
    }
    .timeline-dots button {
        font-size: 18px;
    }
    .timeline-dots-wrap.bottom {
        bottom: 0px;
    }
    .timeline-horizontal .timeline-dots button {
        padding-bottom: 36px;
    }
    .timeline-item .title {
        left: 35px;
        top: 35px;
        font-size: 34px;
        line-height: 34px;
    }
    .timeline-item .text {
        left: 35px;
        top: 75px;
        font-size: 15px;
        line-height: 22px;
    }
    .timeline-item img {
        filter: brightness(70%);
    }
    .timeline-dots button {
        color: #e1e1e1;
    }
    .shadow-bottom {
        height: 50%;
    }
    .shadow-left {
        left: 0;
        top: 0;
        width: 85%;
        height: 75%;
    }
}
