/* CSS Document */
main {
  margin-top: 66px;
  padding-bottom: 255px;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  main {
    margin-top: 15vw;
    font-size: 3.4vw;
    padding-bottom: calc(10vw + 145px);
  }
}
main h1 {
  font-size: 32px;
  margin-bottom: 36px;
  padding-bottom: 11px;
  border-bottom: 3px solid #1C63A5;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  main h1 {
    text-align: center;
    font-size: 6vw;
    padding-bottom: 4vw;
    border-bottom: 1px solid #1C63A5;
    margin-bottom: 9vw;
  }
}
main .content {
  margin-top: 15px;
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
}
@media screen and (max-width: 750px) {
  main .content {
    margin-top: 3vw;
    row-gap: 3vw;
  }
}
main .content h2 {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  main .content h2 {
    font-size: 5vw;
  }
}