.timeline.clean {
  --timline-line-color: #ccc;
  --timline-line-width: 4px;
  --timeline-gutter: 50px;
  /**
  Year
  */
  /**
  Item
  */
  /**
  Content
  */
  /**
  Item Marker
  */
  /**
  Item Layout
  */
}
@media (min-width: 768px) {
  .timeline.clean {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .timeline.clean {
    --timeline-gutter: 10vw;
  }
}
.timeline.clean .timeline-year-group {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.timeline.clean .timeline-year-label {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .timeline.clean .timeline-year-group {
    /*padding-top: 100px;*/
  }
  .timeline.clean .timeline-year-label {
    font-size: 60px;
    text-align: center;
  }
}
.timeline.clean .timeline-item {
  position: relative;
  flex-wrap: wrap;
  z-index: 1;
  display: grid;
  grid-template-columns: 25px [line-start] var(--timline-line-width) [line-end column2 column1] 1fr;
}
.timeline.clean .timeline-item-outerwrap {
  max-width: 100%;
  padding-bottom: 20px;
  margin-top: 15px;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  margin-left: calc(var(--timeline-gutter) + 10px);
}
.timeline.clean .timeline-item-innerwrap {
  width: 100%;
  max-width: 600px;
  background: var(--secondary);
}
@media (min-width: 768px) {
  .timeline.clean .timeline-item {
    grid-template-columns: [column1] 1fr [line-start] var(--timline-line-width) [line-end column2] 1fr;
  }
  .timeline.clean .timeline-item-outerwrap {
    margin-left: 0;
    margin-right: 0;
  }
  .timeline.clean .odd-item .timeline-item-outerwrap {
    grid-row: 1;
    grid-column: column2 / span 1;
    align-items: flex-start;
    margin-left: calc(var(--timeline-gutter) + 10px);
  }
  .timeline.clean .even-item .timeline-item-outerwrap {
    grid-row: 1;
    grid-column: column1 / span 1;
    align-items: flex-end;
    margin-right: calc(var(--timeline-gutter) + 10px);
  }
  .timeline.clean .timeline-item-outerwrap {
    padding-bottom: 50px;
  }
}
.timeline.clean .timeline-item-content {
  overflow: hidden;
  padding: 0 1rem 1rem 1rem;
}
.timeline.clean .timeline-item-header {
  margin: 0 -1rem;
  padding: 1rem;
}
.timeline.clean .timeline-item-header-headline {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.timeline.clean .timeline-item-image {
  margin: 0 -1rem;
}
.timeline.clean .timeline-item-image img {
  width: 100%;
  height: auto;
}
.timeline.clean .timeline-item-image .caption {
  font-size: 0.8em;
  padding: 0.5rem 1.5rem;
  color: color-yiq(#f2f2f2);
  background-color: #f2f2f2;
}
.timeline.clean .timeline-item-text {
  margin-top: 1rem;
}
.timeline.clean .timeline-item-text, .timeline.clean .timeline-item-text a {
  color: inherit;
}
@media (min-width: 768px) {
  .timeline.clean .timeline-item-date {
    font-size: 22px;
  }
  .timeline.clean .odd-item .timeline-item-date {
    text-align: left;
  }
  .timeline.clean .even-item .timeline-item-date {
    text-align: right;
  }
}
.timeline.clean .timeline-item-icon {
  font-size: 50px;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  position: absolute;
  top: 100px;
  transform: translate(-50%, -50%);
  padding: 5px;
  background: var(--primary);
}
.timeline.clean .timeline-item-icon .icon {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(94deg) brightness(108%) contrast(101%);
}
.timeline.clean .timeline-item-path {
  grid-column: line-start;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.timeline.clean .timeline-item-marker-vert {
  background: var(--timline-line-color);
  width: var(--timline-line-width);
  height: 100%;
}
.timeline.clean .timeline-item-marker-hor {
  position: absolute;
  background: var(--timline-line-color);
  height: var(--timline-line-width);
  width: var(--timeline-gutter);
  transform-origin: 0 0;
  top: 100px;
  left: 100%;
}
@media (min-width: 768px) {
  .timeline.clean .odd-item .timeline-item-path {
    align-items: flex-start;
  }
  .timeline.clean .odd-item .timeline-item-marker-hor {
    transform-origin: 0 0;
    left: 100%;
    right: auto;
  }
  .timeline.clean .even-item .timeline-item-path {
    align-items: flex-end;
  }
  .timeline.clean .even-item .timeline-item-marker-hor {
    transform-origin: 100% 100%;
    right: 100%;
    left: auto;
  }
}
.timeline.clean .timeline-header {
  font-size: 2rem;
  position: relative;
  z-index: 4;
  padding-top: 2rem;
  line-height: 1.5;
}
.timeline.clean .timeline-header .main-header {
  font-weight: 800;
  margin: 0;
}
@media (min-width: 768px) {
  .timeline.clean .timeline-header {
    text-align: center;
  }
}
.timeline.clean .timeline-items {
  position: relative;
}
.timeline.clean .timeline-item-text p:last-child {
  margin-bottom: 0;
}
.timeline.style1 {
  background: #193c61;
  /**
  Year
  */
  /**
  Item
  */
  /**
  Content
  */
  /**
  Item Marker
  */
  /**
  Item Layout
  */
}
@media (min-width: 768px) {
  .timeline.style1 {
    padding-left: 0;
    padding-right: 0;
  }
}
.timeline.style1 .timeline-year-group {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.timeline.style1 .timeline-year-label {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .timeline.style1 .timeline-year-group {
    /*padding-top: 100px;*/
  }
  .timeline.style1 .timeline-year-label {
    font-size: 60px;
    text-align: center;
  }
}
.timeline.style1 .timeline-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  padding-left: 40px;
}
.timeline.style1 .timeline-item-outerwrap {
  width: 100%;
  padding-bottom: 20px;
  margin-top: 15px;
  position: relative;
  z-index: 4;
}
.timeline.style1 .timeline-item-innerwrap {
  max-width: 600px;
  margin: auto;
}
@media (min-width: 768px) {
  .timeline.style1 .timeline-item {
    padding-left: 0;
  }
  .timeline.style1 .odd-item .timeline-item-outerwrap {
    margin-left: auto;
  }
  .timeline.style1 .odd-item .timeline-item-innerwrap {
    margin-left: 0;
  }
  .timeline.style1 .even-item .timeline-item-outerwrap {
    margin-right: auto;
  }
  .timeline.style1 .even-item .timeline-item-innerwrap {
    margin-right: 0;
  }
  .timeline.style1 .timeline-item-outerwrap {
    width: 50%;
    padding: 0 2.5rem;
    padding-bottom: 50px;
  }
}
.timeline.style1 .timeline-item-content {
  overflow: hidden;
  background: #fff;
  padding: 0 1rem 1rem 1rem;
}
.timeline.style1 .timeline-item-header {
  margin: 0 -1rem;
  padding: 1rem;
  background: #e42313;
}
.timeline.style1 .timeline-item-header-headline {
  font-size: 18px;
  color: #fff;
  font-weight: 800;
  margin: 0;
}
.timeline.style1 .timeline-item-date {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
.timeline.style1 .timeline-item-date time {
  font-weight: 800;
  background-color: #e42313;
  padding: 0.2em 1rem;
}
.timeline.style1 .timeline-item-image {
  margin: 0 -1rem;
}
.timeline.style1 .timeline-item-image img {
  width: 100%;
  height: auto;
}
.timeline.style1 .timeline-item-image .caption {
  font-size: 0.8em;
  padding: 0.5rem 1.5rem;
  color: color-yiq(#f2f2f2);
  background-color: #f2f2f2;
}
.timeline.style1 .timeline-item-text {
  margin-top: 1rem;
}
.timeline.style1 .timeline-item-text, .timeline.style1 .timeline-item-text a {
  color: inherit;
}
@media (min-width: 768px) {
  .timeline.style1 .timeline-item-date {
    font-size: 22px;
  }
  .timeline.style1 .odd-item .timeline-item-date {
    text-align: left;
  }
  .timeline.style1 .even-item .timeline-item-date {
    text-align: right;
  }
}
.timeline.style1 .timeline-item-marker {
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
}
.timeline.style1 .timeline-item-marker-vert:before {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  background: #fff;
}
.timeline.style1 .timeline-item-marker-hor:after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
}
.timeline.style1 .timeline-item-marker-vert:before {
  top: 0;
  bottom: 0;
  width: 3px;
}
.timeline.style1 .timeline-item-marker-hor {
  width: 2.5rem;
  left: 6px;
  bottom: auto;
  margin: 0 !important;
  transform-origin: 0 0 !important;
}
.timeline.style1 .timeline-item-marker-hor:after {
  top: 30px;
  width: 2.5rem;
  height: 3px;
  left: 0;
}
@media (min-width: 768px) {
  .timeline.style1 .timeline-item-marker {
    left: 50%;
    right: auto;
    margin-left: -7.5px;
  }
  .timeline.style1 .odd-item .timeline-item-marker-hor {
    transform-origin: 0 0 !important;
  }
  .timeline.style1 .even-item .timeline-item-marker-hor {
    right: 50%;
    left: auto;
    height: 50px;
    transform-origin: 100% 100% !important;
  }
  .timeline.style1 .odd-item .timeline-item-marker-hor:after {
    margin-left: 0;
  }
  .timeline.style1 .even-item .timeline-item-marker-hor:after {
    margin-left: 0;
  }
}
.timeline.style1 .lo-red .timeline-item-date time, .timeline.style1 .lo-red .timeline-item-header {
  background-color: #e42313;
}
.timeline.style1 .lo-blue .timeline-item-date time, .timeline.style1 .lo-blue .timeline-item-header {
  background-color: #193c61;
}
.timeline.style1 .timeline-header {
  font-size: 2rem;
  text-align: center;
  position: relative;
  z-index: 4;
  padding-top: 2rem;
  line-height: 1.5;
}
.timeline.style1 .timeline-header .main-header {
  display: block;
  color: #fff;
  font-weight: 800;
}
.timeline.style1 .timeline-header .sub-header {
  font-weight: 800;
  color: #fff;
  background-color: #e42313;
  box-shadow: 0.3em 0px 0px #e42313, -0.3em 0px 0px #e42313, inset -1px 0 #e42313, inset 1px 0 #e42313;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
@media (min-width: 768px) {
  .timeline.style1 .timeline-header {
    font-size: 2.4285714286rem;
  }
}
.timeline.style1 .timeline-items {
  position: relative;
  margin: 0 1.5rem;
}
@media (min-width: 768px) {
  .timeline.style1 .timeline-items {
    margin: 0;
  }
}
.timeline.style1 .timeline-item-text p:last-child {
  margin-bottom: 0;
}
.timeline.style1 .timeline-sticky-nav {
  padding: 25px 0;
  height: 100px;
}
.timeline.style1 .timeline-sticky-nav-wrap {
  height: 50px;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
}
.timeline.style1 .timeline-sticky-nav .swiper-container {
  background: #fff;
  transition: top 1s;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.timeline.style1 .timeline-sticky-nav .swiper-container.stuck {
  top: 0px;
  width: 100%;
}
.timeline.style1 .timeline-sticky-nav .swiper-container.stuck-reveal {
  top: 100px;
}
@media (min-width: 992px) {
  .timeline.style1 .timeline-sticky-nav .swiper-container.stuck-reveal {
    top: 50px;
  }
}
.timeline.style1 .timeline-sticky-nav .swiper-slide {
  background: #fff;
  color: #000;
  transition: all 0.3s;
}
.timeline.style1 .timeline-sticky-nav .swiper-slide.nav-active {
  background: #e42313;
  color: #fff;
}
.timeline.style1 .timeline-sticky-nav .swiper-slide a {
  text-decoration: none;
  color: inherit;
  display: block;
  line-height: 40px;
  padding: 5px 10px;
}
.timeline.style1 .timeline-sticky-nav .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #e42313;
}
.timeline.style1 .swiper-container-horizontal > .swiper-pagination-progressbar, .timeline.style1 .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: auto;
  bottom: 0;
}
