.timeline-top-arrow-bottom-cloud {
  background: #4a23a9;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4a23a9),
    color-stop(47%, #5c38b7),
    to(#876ad0)
  );
  background: linear-gradient(to bottom, #e6f0ed 0, #dae9e4 47%, #dae9e4 100%);
  position: relative;
  overflow: hidden;
  padding: 150px 0 200px 0;
}
.timeline-top-arrow-bottom-cloud:before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.timeline-top-arrow-bottom-cloud:after {
  content: " ";
  bottom: -740px;
  position: absolute;
  background: #519882;
  height: 850px;
  width: 2500px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-bottom-exhaust-cloud {
  display: block;
  background-image: url(/assets/templates/hosdex.com/images/timeline/smoke-bg.png);
  position: absolute;
  bottom: 105px;
  width: 100%;
  background-position: center;
  height: 120px;
  background-size: auto !important;
  background-repeat: no-repeat;
}
.timeline-rocket-stars-bg {
  width: 100%;
  height: 150px;
  position: absolute;
  top: 0;
  background-image: url(/assets/templates/hosdex.com/images/timeline/stars.png);
  background-size: auto !important;
  background-repeat: repeat-x !important;
  background-position: top;
}
.timeline-rocket-stars-bg:after {
  top: 100px;
  content: "\f135";
  font-family: Fontawesome;
  font-size: 40px;
  position: absolute;
  left: 50%;
  -webkit-transform: rotate(-45deg) translateX(-70%);
  transform: rotate(-45deg) translateX(-70%);
  color: #fff;
  margin-left: -1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1199.98px) {
  .timeline-rocket-stars-bg:after {
    left: 5%;
  }
}
.timeline-divider {
  padding-top: 50px;
}
.timeline-divider:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  top: 150px;
  height: 100%;
  width: 4px;
  background: #fff;
}
@media (max-width: 1199.98px) {
  .timeline-divider:before {
    left: 5%;
  }
}
.cd-timeline-block {
  width: 100%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 45px;
}
@media (max-width: 1199.98px) {
  .cd-timeline-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.cd-timeline-block:nth-child(even) .cd-timeline-content {
  text-align: left;
}
.cd-timeline-img {
  background: #fff;
  position: absolute;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
  display: block;
  width: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.cd-timeline-img img {
  border-radius: 50%;
}
@media (max-width: 1199.98px) {
  .cd-timeline-img {
    max-width: 18%;
    position: unset;
    left: unset;
    -webkit-transform: unset;
    transform: unset;
  }
}
.cd-timeline-content {
  background: #fff;
  border-radius: 5px;
  width: 43%;
  padding: 1.6em;
  position: relative;
  text-align: right;
}
.cd-timeline-content:before {
  top: 50%;
  left: 100%;
  border-color: transparent;
  border-left-color: #fff;
}
.cd-timeline-content h4 {
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .cd-timeline-content {
    width: 80%;
  }
}
.cd-timeline-block .is-hidden {
  visibility: hidden;
}
.cd-timeline-block .cd-timeline-content.timeline-bounce-in {
  visibility: visible;
  -webkit-animation: timeline-bounce-in 0.6s;
  animation: timeline-bounce-in 0.6s;
}
.cd-timeline-block:nth-child(even) .cd-timeline-content.timeline-bounce-in {
  visibility: visible;
  -webkit-animation: timeline-bounce-in-reverse 0.6s;
  animation: timeline-bounce-in-reverse 0.6s;
}
@-webkit-keyframes timeline-bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes timeline-bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes timeline-bounce-in-reverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes timeline-bounce-in-reverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes timeline-pulse {
  0% {
    margin-left: -8px;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  99% {
    margin-left: -8px;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin-left: 0;
  }
}
@keyframes timeline-pulse {
  0% {
    margin-left: -8px;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  99% {
    margin-left: -8px;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin-left: 0;
  }
}
.timeline--modern .cd-timeline-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.timeline--modern .cd-timeline-block .timeline-bounce-in:nth-child(1) {
  visibility: visible;
  -webkit-animation: timeline-bounce-in 0.6s;
  animation: timeline-bounce-in 0.6s;
}
.timeline--modern .cd-timeline-block .timeline-bounce-in:nth-child(3) {
  visibility: visible;
  -webkit-animation: timeline-bounce-in-reverse 0.6s;
  animation: timeline-bounce-in-reverse 0.6s;
}
.timeline--modern .cd-timeline-block .timeline-bounce-in:nth-child(2) {
  visibility: visible;
  -webkit-animation: timeline-pulse 0.6s;
  animation: timeline-pulse 0.6s;
}
.timeline--modern .cd-timeline-block--right .cd-timeline-img {
  margin-left: auto;
}
.timeline--modern .cd-timeline-block--right .cd-timeline-img:before {
  border: unset;
}
.timeline--modern .cd-timeline-block--right .cd-timeline-img:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -21px;
  border: 9px solid transparent;
  border-left: 9px solid #fff;
}
.timeline--modern .cd-timeline-block--right .cd-timeline-content__holder {
  margin-left: unset;
}
.timeline--modern .cd-timeline-block--right .cd-timeline-content {
  width: 48%;
}
.timeline--modern .cd-timeline-img-holder {
  width: 47%;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-img-holder {
    width: 20%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.timeline--modern .cd-timeline-img {
  position: relative;
  -webkit-transform: unset;
  transform: unset;
  left: unset;
  width: 180px;
}
.timeline--modern .cd-timeline-img img {
  width: 180px;
}
.timeline--modern .cd-timeline-img:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -21px;
  border: 9px solid transparent;
  border-right: 9px solid #fff;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-img {
    width: unset;
    max-width: unset;
  }
  .timeline--modern .cd-timeline-img img {
    width: 100%;
  }
  .timeline--modern .cd-timeline-img:after,
  .timeline--modern .cd-timeline-img:before {
    border: none !important;
  }
}
.timeline--modern .cd-timeline-content {
  background-color: unset;
  color: #fff;
  width: 48%;
  padding: 0;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-content {
    width: 75% !important;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.timeline--modern .cd-timeline-content__holder {
  max-width: 250px;
  margin-left: auto;
}
.timeline--modern .cd-timeline-content__holder h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 600;
}
.timeline--modern .cd-timeline-content__holder h2 span {
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-content__holder {
    margin-left: unset;
    margin-right: auto;
    text-align: left;
  }
}
.timeline--modern .cd-timeline-point {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
  background: #076d4d;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-point {
    display: none;
  }
}
.timeline--modern .cd-timeline-img--first {
  bottom: -35px;
  width: 120px;
}
.timeline--modern .cd-timeline-img--first img {
  width: 120px;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-img--first {
    bottom: unset;
    margin-bottom: 20px;
    width: 100%;
  }
  .timeline--modern .cd-timeline-img--first img {
    width: 100%;
  }
}
.timeline--modern .cd-timeline-img--second {
  left: 100px;
  width: 160px;
}
.timeline--modern .cd-timeline-img--second:before {
  left: 0;
  width: 23px;
  height: 5px;
  background: #fff;
  content: " ";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 25px;
  border: 3px solid #fff;
}
.timeline--modern .cd-timeline-img--second img {
  width: 160px;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-img--second {
    left: unset;
    margin-bottom: 20px;
    width: 100%;
  }
  .timeline--modern .cd-timeline-img--second img {
    width: 100%;
  }
}
.timeline--modern .cd-timeline-img--second:before {
  border: unset;
  background: unset;
}
.timeline--modern .cd-timeline-img--third {
  width: 150px;
  top: -15px;
}
.timeline--modern .cd-timeline-img--third:before {
  width: 35px;
  background: #fff;
  content: " ";
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 135px;
  border: 3px solid #fff;
}
.timeline--modern .cd-timeline-img--third img {
  width: 150px;
}
@media (max-width: 1199.98px) {
  .timeline--modern .cd-timeline-img--third {
    width: 100%;
    position: unset;
  }
  .timeline--modern .cd-timeline-img--third:before {
    border: unset;
    background: unset;
  }
  .timeline--modern .cd-timeline-img--third img {
    width: 100%;
  }
}