.timeline {
  border-left: 3px solid #0e0e0e;
  position: relative;
  list-style: none;
}

.timeline .timeline-item {
  position: relative;
}

.timeline .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .timeline-item:after {
  background-color: hsl(0, 0%, 90%);
  left: -40px;
  border-radius: 50%;
  border: 3px solid #0e0e0e;
  height: 14px;
  width: 14px;
  content: "";
}

.bg-top-circle{
  position: absolute;
  top: -15rem;
  left: 10rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: #202020;
  background: -webkit-radial-gradient(
    circle,
    #212529,
     #202020
  );
  background: radial-gradient(
    circle,
    #212529,
     #202020
  );
}

.bg-right-circle{
  position: absolute;
  bottom: 5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: #202020;
  background: -webkit-radial-gradient(
    circle,
    #212529,
     #202020
  );
  background: radial-gradient(
    circle,
    #212529,
     #202020
  );
}

.bg-black-custom{
  background-color: #0e0e0e;
}

.gradient-custom-5 {
  /* fallback for old browsers */
  background: #ebbba7;

  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(
    to right,
    rgba(235, 187, 167, 1),
    rgba(207, 199, 248, 1)
  );

  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: linear-gradient(
    to right,
    rgba(235, 187, 167, 1),
    rgba(207, 199, 248, 1)
  );
}

body {
    overflow-x: hidden;
}

.bg-grey-custom {
    background-color: #202020;
}

.shadow-light {
    box-shadow: .5rem .5rem #343a40;
}

.hidden-circle{
  overflow-x: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}