﻿.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
/* FONTS */
/* TRANSITIONS */
.timeline {
  position: relative;
  overflow: hidden;
}
.timeline__bg-image {
  opacity: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 1.5s ease-in-out;
}
.timeline__bg-image:first-child {
  opacity: 1;
  transition: none;
}
.timeline__bg-image.scrolled {
  opacity: 1;
}
.timeline__content {
  padding-top: 250px;
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .timeline__content {
    padding-top: 100px;
  }
}
.timeline__content img {
  height: 150px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .timeline__content img {
    height: 100px;
  }
}
.timeline__content h5 {
  font-size: 2.1rem;
}
.timeline ul {
  position: relative;
  padding-left: 0;
}
.timeline ul li {
  list-style: none;
  position: relative;
  width: 1px;
  background-color: #fff;
  margin: 0 auto;
  padding-top: 1rem;
}
@media (max-width: 767.98px) {
  .timeline ul li {
    margin: 0 0 0 3rem;
    padding-top: 5rem;
  }
}
.timeline ul li:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
}
.timeline ul li:first-child {
  padding-top: 10rem;
}
.timeline ul li:last-child {
  padding-bottom: 15rem;
}
.timeline ul li .timeline-item {
  padding: 3rem;
  background-color: #fff;
  width: 700px;
  min-height: 250px;
  margin-left: 4rem;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(200px, 0, 0);
  position: relative;
  transition: all 1.5s ease-in-out;
}
@media (max-width: 1500px) {
  .timeline ul li .timeline-item {
    width: 500px;
  }
}
@media (max-width: 1099px) {
  .timeline ul li .timeline-item {
    width: 300px;
    flex-direction: column;
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  .timeline ul li .timeline-item {
    width: 75vw;
  }
}
.timeline ul li .timeline-item:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  left: -16px;
  border-width: 0 20px 30px 0;
  border-color: transparent #fff transparent transparent;
}
.timeline ul li .timeline-item__year {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
.timeline ul li .timeline-item__image {
  background-size: cover;
  height: 100%;
  width: 90%;
}
.timeline ul li .timeline-item img {
  width: 100%;
  margin-bottom: 2rem;
}
.timeline ul li .timeline-item h3 {
  font-size: 4rem;
}
@media (max-width: 767.98px) {
  .timeline ul li .timeline-item h3 {
    font-size: 3rem;
  }
}
.timeline ul li .timeline-item h4 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.timeline ul li .timeline-item p {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .timeline ul li:nth-of-type(even) .timeline-item {
    margin-left: -74rem;
    flex-direction: row-reverse;
    transform: translate3d(-200px, 0, 0);
  }
}
@media (min-width: 768px) and (max-width: 1500px) {
  .timeline ul li:nth-of-type(even) .timeline-item {
    margin-left: -54rem;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .timeline ul li:nth-of-type(even) .timeline-item {
    margin-left: -34rem;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .timeline ul li:nth-of-type(even) .timeline-item:before {
    left: unset;
    right: -16px;
    border-width: 0 0 30px 20px;
    border-color: transparent transparent transparent #fff;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .timeline ul li:nth-of-type(even) .timeline-item__year {
    right: 2rem;
  }
}
@media (min-width: 768px) {
  .timeline ul li:nth-of-type(even) .timeline-item__image {
    margin-left: auto;
  }
}
.timeline ul li.visible .timeline-item {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.timeline .d-none-custom {
  display: none;
}
@media (min-width: 1100px) {
  .timeline .d-xl-block-custom {
    display: block;
  }
}
@media (min-width: 1100px) {
  .timeline .d-xl-none-custom {
    display: none;
  }
}
