.swiper {
  width: 100%;
  height: calc(100vh - 160px);
}

.swiper-slide__image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.intro {
  padding: 120px 0;
  background-color: rgb(var(--background-color-header));
}

.intro__container {
  max-width: var(--container-size);
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.intro__logo {
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}

.intro__text {
  font-size: 18px;
  line-height: 23px;
  max-width: 812px;
  color: white;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}

.intro__grid {
  column-count: 3;
  column-gap: 15px;
  margin-top: 160px;
  overflow: clip;
}

.intro__grid img {
  display: block;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .swiper {
    height: 350px;
  }

  .intro__grid {
    margin-top: 60px;
    column-count: 2;
  }
}
