/* our history */
.section--our-history {
  padding-top: 0;
  padding-bottom: 63px;
  padding-left: 8px;
  padding-right: 16px;

  @media (min-width: 1024px) {
    padding-bottom: 203px;
    padding-left: calc(var(--vw) * 20);
    padding-right: calc(var(--vw) * 20);
  }
}

.c-our-history {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.c-our-history__item {
  position: relative;
  padding-left: 44px;

  @media (min-width: 1024px) {
    display: flex;
    padding-left: 0;
  }

  &::before {
    background-color: var(--secondary-color);
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    transform: translateX(-50%);
    z-index: 1;
    width: 1px;
    height: 100%;

    @media (min-width: 1024px) {
      left: 50%;
    }
  }

  &::after {
    content: '';
    background-color: var(--black);
    border-radius: 12px;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 32px;
    left: 20px;
    transform: translateX(-50%);
    z-index: 1;

    @media (min-width: 1024px) {
      left: 50%;
    }
  }

  &:nth-child(odd) {
    @media (min-width: 1024px) {
      flex-direction: row-reverse;

      .c-our-history__texts {
        text-align: right;
        padding-right: 50px;
      }

      .c-our-history__date {
        padding-left: 50px;
      }
    }
  }

  &:nth-child(even) {
    @media (min-width: 1024px) {
      .c-our-history__date {
        justify-content: flex-end;
        display: flex;
        height: fit-content;
      }

      .c-our-history__texts {
        padding-left: 50px;
      }

      .c-our-history__date {
        padding-right: 50px;
      }
    }
  }
}

.c-our-history__texts-text {
  ul {
    li {
      width: fit-content;
      margin-left: auto;
    }
  }
}

.c-our-history__date,
.c-our-history__texts {
  flex: 1;
}

.c-our-history__texts {
  padding-top: 17px;
  padding-bottom: 60px;

  @media (min-width: 1024px) {
    padding-top: 32px;
    padding-bottom: 40px;
  }
}

.c-our-history__date {
  padding-top: 24px;

  @media (min-width: 1024px) {
    padding-top: 20px;
  }
}

.c-our-history__date p {
  background-color: var(--secondary-color);
  border-radius: 10px;
  color: var(--black);
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 18px;

  @media (min-width: 1024px) {
    font-size: 16px;
    padding: 10px 30px;
  }
}

.c-our-history__texts-title {
  color: var(--black);
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin-bottom: 6px !important;
  @media (min-width: 1024px) {
    font-size: calc(var(--vw) * 24);
    line-height: calc(var(--vw) * 28);
    margin-bottom: 24px;
  }

}
