@charset "UTF-8";

.footer_info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer_info {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding-inline: 20px;
  }
}

.footer_info_item {
  padding-inline: 25px;
  text-align: center;
  span {
    font-size: 22px;
    line-height: calc(21 / 22);
    font-weight: 700;
    color: #676464;
    display: block;
  }
  p {
    font-size: 14px;
    line-height: calc(21 / 14);
    margin-top: 20px;
  }
  &:not(:last-child) {
    border-right: 1px dashed #676464;
  }
}
@media screen and (max-width: 768px) {
  .footer_info_item {
    padding-inline: 0;
    padding-bottom: 20px;
    border-right: none;
    text-align: left;
    span {
      font-size: 16px;
      line-height: calc(21 / 16);
    }
    p {
      margin-top: 10px;
    }
    &:not(:last-child) {
      border-bottom: 1px dashed #676464;
      border-right: none;
    }
    &:nth-child(n + 2 ) {
      margin-top: 20px;
    }
  }
}