@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poiret+One&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: rgba(77, 77, 77, 0.653);
}

::-webkit-scrollbar-thumb {
  background: rgba(53, 53, 53, 0.575);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(53, 53, 53, 0.675);
}

.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 700px;
  position: relative;
}
.timeline__content .details-button {
  font-family: "Montserrat", sans-serif;
  color: rgba(252, 248, 244, 0.7);
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.5s ease;
}
.timeline__content .details-button:hover {
  color: hsla(27, 97%, 75%, 0.7);
}
.timeline__content-title {
  font-weight: bold;
  font-size: 35px;
  margin: -10px 0 0 0;
  transition: 0.4s;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: "Poiret One", sans-serif;
  color: hsla(27, 97%, 75%, 0.7);
  transition: color 1s ease;
}
.timeline__content-title:hover {
  color: hsla(27, 97%, 75%, 0.9);
}
.timeline__content-desc {
  margin: 0;
  font-size: 15px;
  box-sizing: border-box;
  color: rgba(252, 248, 244, 0.7);
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 25px;
  transition: color 1s ease;
}
.timeline__content-desc:hover {
  color: #fcfcfc;
}
.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  border-radius: 10px;
  content: "";
  background: rgba(53, 53, 53, 0.575);
}
@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
}
.timeline-item {
  padding: 40px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-30px);
}
.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: "Poiret One", sans-serif;
  border-left: 2px solid hsla(27, 97%, 75%, 0.9);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
}
.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid hsla(27, 97%, 75%, 0.9);
  padding-right: 15px;
}
.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}
.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}
.timeline__img {
  max-width: 100%;
  box-shadow: 0 0 10px rgba(22, 22, 22, 0.4);
  border-radius: 5px;
  transition: box-shadow 1s ease;
}
.timeline__img:hover {
  box-shadow: 0 0 15px rgba(118, 118, 118, 0.4);
}
.timeline-container {
  width: 100%;
  position: relative;
  padding: 80px 0;
  transition: 0.3s ease 0s;
  background-attachment: fixed;
  background-size: cover;
}
.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: saturate(0.5) brightness(0.7) blur(5px);
  backdrop-filter: saturate(0.5) brightness(0.9) blur(5px);
  content: "";
}
.timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.timeline-header__title {
  color: #fcf8f4;
  font-size: 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  margin: 0;
}
.timeline-header__subtitle,
.timeline-header p,
.timeline-header a {
  color: rgba(252, 248, 244, 0.5019607843);
  font-family: "Poiret One", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  font-weight: normal;
  text-decoration: none;
  transition: color 1s ease;
}
.timeline-header__subtitle:hover,
.timeline-header p:hover,
.timeline-header a:hover {
  color: #fcf8f4;
}
.timeline-header a {
  font-weight: bold;
  color: rgba(243, 136, 29, 0.5019607843);
  transition: color 1s ease;
}
.timeline-header a:hover {
  color: rgba(243, 136, 29, 0.831372549);
}/*# sourceMappingURL=styles.css.map */