.timeline {
  width: 100%;
  max-width: 800px;
  background: #fff;
  padding: 100px 50px;
  position: relative;
  box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 4px;
  background: #ed8585;
}
.timeline:after {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 4px;
  background: linear-gradient(to bottom, #fff, #ed8585);
  animation: loop 10s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(100%);
  }
}

.small-image {
  transform: scaleX(-1) !important;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}
.entry .title {
  margin-bottom: 0.5em;
  float: left;
  width: 33%;
  padding-right: 30px;
  text-align: right;
  position: relative;
}
.entry .title:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 4px solid salmon;
  background-color: #fff;
  border-radius: 100%;
  top: 15%;
  right: -8px;
  z-index: 99;
}
.entry .title h5 {
  margin: 0;
  font-size: 120%;
  font-weight: bold;
}
.entry .title p {
  margin: 0;
  font-size: 100%;
}
.entry .body {
  margin: 0 0 3em;
  float: right;
  width: 66%;
  padding-left: 30px;
}
.entry .body p {
  line-height: 1.4em;
}
.entry .body p:first-child {
  margin-top: 0;
  font-weight: 400;
}
.entry .body ul {
  color: #aaa;
  padding-left: 0;
  list-style-type: none;
}
.entry .body ul li:before {
  content: "–";
  margin-right: 0.5em;
}

a.fc-event {
  cursor: pointer;
}

a.fc-event:hover {
  background-color: #b42141 !important;
  color: #fff !important;
}

.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
  padding: 5px;
}

@media only screen and (max-width: 768px) {
  .fc-direction-ltr {
    text-align: center !important;
  }

  .fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
    margin-left: 0 !important;
  }
}

.features-2,
.call-to-action {
  padding-top: 160px;
}

.glow-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px; /* opsional */
  overflow: hidden;
}

.glow-wrapper::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  /* background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff); */
  background: #ca2f5b;
  z-index: 0;
  animation: spinGlow 3s linear infinite;
  border-radius: 14px;
}

.glow-wrapper::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: white;
  z-index: 1;
  border-radius: 10px;
}

.glow-wrapper img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@keyframes spinGlow {
  0% {
    transform: rotate(32deg);
  }
  50% {
    transform: rotate(148deg);
  }
  100% {
    transform: rotate(32deg);
  }
}
