.wrapper {
  max-width: 1080px;
  margin: 20px auto;
  position: relative;
  padding: 0 2rem !important;
}

.wrapper .center-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: var(--color-support-500);
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
}

.wrapper .custom-row {
  display: flex;
}

.wrapper .custom-row-1 {
  justify-content: flex-start;
}

.wrapper .custom-row-2 {
  justify-content: flex-end;
}

.wrapper .custom-row .section {
  background: var(--color-accent-500);
  border-radius: 5px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
  color: #fff;
  font-size: 0.9rem;
}

.wrapper .custom-row .section::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: var(--color-accent-500);
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}

.wrapper .custom-row .custom-row__title__container {
  display: flex;
  flex-direction: column;
}

.wrapper .custom-row .custom-row__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.wrapper .custom-row .custom-row__description {
  font-size: 0.8rem;
}

.custom-row-1 .section::before {
  right: -7px;
}

.custom-row-2 .section::before {
  left: -7px;
}

.custom-row .section .icon,
.center-line .scroll-icon {
  position: absolute;
  background-color: #fff;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  /* color: #3b4aee; */
  color: var(--color-support-500);
  font-size: 17px;
  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);
}

.center-line .scroll-icon {
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}

.custom-row-1 .section .icon {
  top: 13px;
  right: -60px;
}

.custom-row-2 .section .icon {
  top: 13px;
  left: -60px;
}

.wrapper .custom-row .section .details {
  justify-content: space-between;
}

.wrapper .custom-row .section .details,
.wrapper .custom-row .section .bottom {
  display: flex;
  align-items: center;
}

.wrapper .custom-row .section .bottom {
  justify-content: flex-end;
}

.custom-row .section .details .title {
  font-size: 20px;
  font-weight: 700;
}

.custom-row .section .details .date {
  font-size: 0.8rem;
}

.custom-row .section p {
  margin: 10px 0 10px 0;
}

@media (max-width: 790px) {
  .wrapper .center-line {
    left: 40px;
  }

  .wrapper .custom-row {
    margin: 30px 0 3px 60px;
  }

  .wrapper .custom-row .section {
    width: 100%;
  }

  .custom-row .section::before {
    left: -7px;
  }
  .custom-row .section .icon {
    left: -72px;
  }
}

@media (max-width: 440px) {
  .wrapper .center-line,
  .custom-row .section::before,
  .custom-row .section .icon {
    display: none;
  }

  .wrapper .custom-row {
    margin: 0 0 2rem 0;
  }

  .wrapper .custom-row:last-child {
    margin: 0;
  }
}
