#timeline-carousel-outer-container {
  bottom: 0px;
  left: 50%;
  height: 500px;
  position: absolute;
  transform: translate3d(-50%, 0, 0);
  width: 100%;
  z-index: 5;
}
#timeline-carousel-container {
  background-color: var(--dark-shade2);
  box-shadow: 0px 2px 25px var(--dark-shade1);
  display: flex;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 1650px;
  width: auto;
  z-index: 5;
}
#timeline-carousel-container > div {
  max-width: 100%;
  margin: 80px 0 0 100px;
}
ul#timeline-listings {
  display: flex;
  left: 0;
  margin: 0 auto;
  position: relative;
  /* width: 3000px; */
}
ul#timeline-listings li {
  bottom: 0;
  box-shadow: 0px 4px 20px rgba(54, 56, 72, 0.2);
  color: #fff;
  display: flex;
  flex-direction: column;
	flex-shrink: 0;
  /* height: 285px; */
  margin-left: 20px;
  /* padding: 30px; */
  position: relative;
  transition: bottom var(--navbar-animation-duration) ease-in-out 0s,
    transform 0.5s ease-in-out;
  /* transform: translateX(-380px); */
  width: 380px;
}
ul#timeline-listings li:first-child {
	margin: 0;
}
.timeline-indicator {
  align-items: center;
  display: flex;
}
.timeline-indicator .dot {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
}
.timeline-indicator .line {
  background: var(--button-gradient-light);
  display: block;
  height: 3px;
  margin-left: 20px;
  opacity: 0.3;
	transition: opacity var(--hover-links-duration) linear;
  width: calc(100% - 40px);
}
#timeline-listings li:hover .line {
  opacity: 1;
}
.timeline-content-container {
  background: linear-gradient(
    120deg,
    rgba(35, 37, 38, 1) 0%,
    rgba(69, 65, 65, 1) 100%
  );
  box-shadow: 10px 10px 30px var(--dark-shade1);
  margin-top: 30px;
  padding: 20px;
  position: relative;
	z-index: 1;
}
.timeline-content-container::before {
  background: linear-gradient(
    120deg,
    var(--dark-shade2) 0%,
    var(--button-gradient-light) 100%
  );
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity var(--hover-links-duration) linear;
  z-index: -1;
}
ul#timeline-listings li:hover .timeline-content-container::before {
	opacity: 1;
}
.timeline-content-container .date {
  color: var(--text-faint-red);
  font-size: var(--fs-28p);
  font-weight: 800;
  line-height: 128%;
	transition: color var(--hover-links-duration) linear;
}
ul#timeline-listings li:hover .date {
  color: #fff;
}
.timeline-content-container .heading {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 125%;
  margin-top: 20px;
}
.timeline-content-container .content {
  font-size: var(--fs-17p);
  line-height: 145%;
  margin-top: 15px;
}
#timeline-carousel-outer-container .button-container {
  display: flex;
  justify-content: space-between;
  width: 120px;
}
#timeline-carousel-outer-container .button-container button {
  height: 48px;
  margin-top: 30px;
  width: 48px;
}

@media only screen and (max-width: 1280px) {
  #timeline-carousel-outer-container {
    bottom: 0px;
    left: 0%;
    height: 500px;
    transform: none;
    width: 100%;
  }
  #timeline-carousel-container {
    position: static;
    width: 100%;
  }
}

/* Meet our team section */
#meet-our-team-section.image-content {
	padding-bottom: 120px;
	padding-top: 120px;
}
.team-member {
	margin-top: 100px;
}
.team-member:nth-child(2) {
	margin-top: 50px;
}
.team-member.right .image-content-image-container {
	order: 2;
	margin-right: 40px;
}
.team-member.right .image-content-content-container {
	margin-left: 0px;
	margin-right: 50px;
}
#meet-our-team-section .image-content-content-container .section-common-heading {
	margin-top: 15px;
	margin-bottom: 0;
}
@media only screen and (max-width: 1280px) {
	#meet-our-team-section.image-content {
		padding-bottom: 80px;
		padding-top: 80px;
	}
	.team-member.right .image-content-content-container {
		margin-right: 30px;
	}
}
@media only screen and (max-width: 800px) {
	.team-member.right .image-content-image-container {
		order: 1;
		margin-right: 0;
	}
	.team-member.right .image-content-content-container {
		margin-right: 0;
		order: 2;
	}
}
