.section {
  padding-bottom: 24px;
}

.section__title {
  text-align: center;
  margin: 8px 0 16px;
  color: var(--color-third);
  font-weight: 300;
  word-spacing: 4px;
}

.section__title--big {
  font-size: 1.75rem;
}

.section__title--medium {
  font-size: 1.75rem;
}

.section__text {
  text-align: center;
  padding-top: 8px;
  color: var(--color-second);
}

.section__body {
  width: 100%;
  padding-top: 4px;
}

.section__image-container {
  width: 100%;
  padding: 0 32px 4px;
}

.section__image {
  width: 100%;
  object-fit: cover;
}

.slider {
  width: 100%;
  height: 100vh;
  padding: 4% 2%;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: #000000de;
}

.slider__navigation {
  position: absolute;
  bottom: 32px;
}

.slider__container {
  width: 100%;
  height: 100%;
}

.slider__nav-container {
  width: 130px;
  display: flex;
  justify-content: space-between;
}

.slider__nav {
  color: var(--color-second);
  font-size: 1.5rem;
}

.slider__nav-right,
.slider__nav-left {
  cursor: pointer;
}

.slide-index {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  user-select: none;
}

.slider .section__image-container {
  width: 100%;
  height: 100%;
  padding: 0;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider .section__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.go-top {
  width: 40px;
  height: 40px;
  font-size: 1.75rem;
  color: #d3e4cd;
  background-color: #53664ada;
  text-align: center;
  line-height: 1.45;
  border-radius: 50%;
  position: fixed;
  bottom: 65px;
  right: 15px;
  display: none;
}

@media screen and (min-width: 769px) {
  .grid-2-col--hide {
    display: none;
  }

  .section__body {
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section__image-container {
    width: 50%;
    padding: 8px;
  }
}

@media screen and (min-width: 1025px) {
  .grid-2-col--hide {
    display: initial;
  }

  .grid-3-col--hide {
    display: none;
  }

  .section__image-container {
    width: 33%;
  }

  .hide-big-screen {
    display: none;
  }
}
