:root {
  --almost-black: #111;
}

.main {
  background-color: #fff;
}

.main-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin: 0 1.5rem;
  background-color: #fff;
  position: relative;
  overflow: auto;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  .main-content {
    margin: 0 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .main-content {
    margin: 0 3rem;
  }
}

.nav-wrapper {
  position: -webkit-sticky;
  position: sticky;
  background-color: #fff;
  border-bottom: 1px solid var(--text-color);
  top: 0;
}
.nav-wrapper.is-light:not(:hover) {
  border-bottom: 1px solid transparent;
}

.title {
  grid-column: 1/span 12;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2em 0 1.5em 0;
  font-weight: 600;
}

.text {
  grid-column: 1/span 12;
  padding-bottom: 3em;
}
@media screen and (min-width: 640px) {
  .text {
    padding-bottom: 4em;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
@media screen and (min-width: 1040px) {
  .text {
    grid-column: 2/span 10;
  }
}
.text h2 {
  font-size: 1em;
  margin-top: 2em;
  margin-bottom: 0em;
  -webkit-text-stroke: 0.02em var(--text-color);
}
.text p {
  margin-bottom: 1em;
}

.single-content {
  grid-column: 1/span 12;
  padding-bottom: 2em;
}
@media screen and (min-width: 1000px) {
  .single-content {
    padding-bottom: 3em;
  }
}
.single-content .content-image {
  grid-column: 1/span 12;
  margin: 0 -1.5em;
}
@media screen and (min-width: 640px) {
  .single-content .content-image {
    margin: unset;
  }
}
.single-content .content-dida {
  grid-column: 1/span 12;
}