.Component-Heading {
  margin-bottom: 24px;
  margin-top: 160px;
}
.Component-Heading__title {
  color: #f50b0b;
  font-size: 3rem;
  font-weight: 400;
}

.Component-Block {
  margin-top: 100px;
}
.Component-Block__body {
  margin-top: 14px;
}
.Component-Icon__contents {
  display: -ms-grid;
  display: grid;
  height: 50px;
  width: 200px;
  background-color: #f50b0b;

  margin-inline: auto;
  place-content: center;
}
.Component-Icon__text {
  color: #fff;
  font-size: 3rem;
  line-height: 1.5;
}

.Component-title {
  display: flex;
  margin-top: 24px;
  font-size: 2.2rem;
  align-items: center;
}
.Component-title > img {
  margin-right: 5px;
}

.Component-List__list {
  display: flex;
  flex-wrap: wrap;
}

@media all and (min-width: 769px) {
  .Component-Heading__title {
    font-size: 8rem;
  }
  .Component-Block__body {
    width: 100%;
    margin-top: 34px;

    -ms-grid-column: 1;
    grid-column: 1/3;
    -ms-grid-column-span: 2;
  }
  .Component-Icon {
    display: -ms-grid;
    display: grid;
    column-gap: 30px;

    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
  }
  .Component-Icon__contents {
    margin-inline: 0;
  }
  .Component-title {
    margin-top: 0;
    font-size: 3rem;
  }
}

