.structure {
  display: flex;
  position: relative;
  align-items: flex-start;
}

.structure.reverse {
  flex-direction: row-reverse;
}

.structure .left {
  width: 65vw;
  aspect-ratio: 10 / 7;
  flex-shrink: 0;
  overflow: hidden;
}

.structure .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.structure .content {
  padding: 1.56vw 0 4.69vw;
  width: 35vw;
  margin: auto;
  color: #0b3311;
}

.structure .content .wrapper {
  margin: 0 2.6vw;
}

.structure .content .wrapper h3 {
  margin: 0;
  font-size: 1.15vw;
  line-height: 1;
  font-weight: 400;
  font-family: var(--font-serif);
  margin-bottom: 1.5125vw;
  text-transform: uppercase;
}

.structure .title {
  margin: 0px 0px 1.5125vw;
  font-family: var(--font-serif);
  font-size: 2.4vw;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.structure .desc {
  margin: 0px auto;
  font-size: 1.09375vw;
  line-height: 1.625;
}

.structure .more {
  display: inline-flex;
  margin-top: 2.92vw;
  padding: .52vw 1.67vw;
  font-size: 1.09375vw;
  border: 1px solid #0b3311;
  color: #0b3311;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-serif);
}

.structure .more:hover {
  background-color: #0b3311;
  color: #fff;
}

.slogan {
  background-color: #0b3311;
  color: #faf1e6;
  font-size: 2.4vw;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  padding: 2.56vw 0;
  margin: 0;
  font-family: var(--font-serif);
}

@media (max-width: 767px) {
  .structure {
    flex-direction: column;
  }

  .structure.reverse {
    flex-direction: column;
  }

  .structure .left {
    aspect-ratio: 6 / 4;
    width: 100%;
  }

  .structure .content {
    width: 100%;
    padding: 6vw 0 18vw;
    text-align: center;
  }

  .structure .content .wrapper {
    margin: 0 4vw;
  }
  
  .structure .content .wrapper h3 {
    font-size: 4vw;
    margin-bottom: 4vw;
  }

  .structure .title {
    font-size: 7vw;
  }

  .structure .desc {
    font-size: 3.2vw;
  }

  .structure .more {
    margin-top: 7.2vw;
    font-size: 3.2vw;
    padding: 2vw 6.4vw;
  }

  .slogan {
    font-size: 6.5vw;
    padding: 10vw 0;
  }
}