.topMainVisual {
  width: 100%;
  height: 60vh;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.topMainTitleArea {
  box-sizing: border-box;
  position: absolute;
  top: 35%;
  text-align: center;
  width: 100%;
  left: 0;
  padding: 20px 10px;
}

.topMainTitleArea h2 {
  font-size: 30px;
  font-weight: bold;
}

.topSectionTitleDetailLink {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 30px;
  box-shadow: 5px 5px 7px -2px rgba(0, 0, 0, .4);
}

.topSections {
  padding: 80px 10px 10px 10px;
}

.topSection {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.topSectionContent {
  display: grid;
}

.topSectionContent.grid1 {
  grid-template-columns: 1fr;
}

.topSectionContent.grid2 {
  grid-template-columns: 1fr 1fr;
}

.topSectionContent.grid3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.topSectionContent.grid4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.topSectionContent.smallGrid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.topSectionTitleContainer {
  margin: 10px 0px 30px 0px;
}

.topSectionTitle {
  font-size: 24px;
  display: flex;
  align-items: center;
  max-width: 300px;
  margin: 10px auto;
  font-weight: bold;
}

.topSectionDescription {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.topSectionTitle:before,
.topSectionTitle:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #888;
}

.topSectionTitle:before {
    margin-right: 20px;
}

.topSectionTitle:after {
    margin-left: 20px;
}

.topSectionItem {
  margin: 0 10px;
  display: block;
  font-size: 18px;
}

.topSectionItem.smallItem {
  display: flex;
  align-items: flex-start;;
  font-size: 14px;
  margin-bottom: 14px;
}

.topSectionGrid {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
}

.grid1 .topSectionGrid,
.grid2 .topSectionGrid {
  padding-top: 50%;
}

.smallItem .topSectionGrid {
  width: 80px;
  height: 80px;
  padding-top: 0px;
}

.topSectionGrid img {
  width: 100%;
  height: 100%;
}

.topSectionItemTextContainer {
  flex: 1;
  padding: 10px 0px;
}

.smallItem .topSectionItemTextContainer {
  padding: 10px;
}

.topSectionItemLabel {
  font-size: 1.0em;
  font-weight: bold;
  line-height: 22px;
}

.topSectionItemDescription {
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}

@media only screen and (max-width:1024px) and (min-width:769px) {
  .topSectionContent.smallGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


@media only screen and (max-width:768px) {
  .topMainTitleArea h2 {
    font-size: 26px;
    font-weight: bold;
  }
  .topMainTitleArea {
    padding: 10px 10px;
  }
  .topSections {
    padding: 40px 10px 10px 10px;
  }
  .topSection {
    width: 98%;
  }
  .topSectionContent.grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .topSectionContent.grid4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid1 .topSectionGrid,
  .grid2 .topSectionGrid {
    padding-top: 100%;
  }
  .topSectionItem {
    padding: 0px 5px;
  }
  .topSectionItemLabel {
    font-size: 16px;
    line-height: 22px;
  }
  .topSectionItemDescription {
    margin-top: 4px;
    font-size: 14px;
    color: #444;
  }
  .topSectionContent.smallGrid {
    grid-template-columns: 1fr 1fr;
    overflow-x: scroll;
  }
  .topSectionItem.smallItem {
    width: 50vw;
  }
}
