/* MAIN */
section.topper {
  width: 100%;
  padding: 3rem 0;
}

.topper .title {
  color: #1d4515;
  margin-bottom: 1.5rem;
}

.topper .title h2 {
  text-align: center;
  font-size: 2rem;
}

.topper .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topper .content .right {
  width: calc(60% - 6rem);
  padding: 0 3rem;
}

.topper .content .right p {
  text-align: justify;
}

.topper .content .right p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.topper .content .left {
  width: 20%;
}

.topper .content .left img {
  width: 100%;
}
/* -------------------- */
.lines {
  width: 100%;
}

.lines img {
  width: 100%;
}
/* -------------------- */
.contact {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
}

.contact .center {
  width: 50%;
}

.contact .center .title {
  margin-bottom: 2rem;
}

.contact .center .title h2 {
  font-size: 2rem;
  color: #1d4515;
  text-align: center;
}

.contact .center p {
  text-align: justify;
}

.contact .center p:last-child {
  margin: 0 auto;
  margin-top: 1rem;
  width: fit-content;
  padding: 0.5rem;
  background-color: var(--matcha-green);
  display: block;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact .left,
.contact .right {
  width: 15%;
}

.contact .left img,
.contact .right img {
  width: 100%;
}
/* ------------------------------------ */
@media screen and (max-width: 1200px) {
  .topper .content .right {
    width: calc(70% - 6rem);
    padding: 0 3rem;
  }

  .topper .content .left {
    width: 25%;
  }
}

@media screen and (max-width: 992px) {
  .topper .content .left {
    width: 30%;
  }

  .topper .content .right p:not(:last-child) {
    margin-bottom: 0.5rem;
  }

  .topper .content .right p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 992px) {
  .topper .content {
    position: relative;
  }

  .topper .content .left {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    align-items: 0;
    height: 100%;
    z-index: -1;
  }

  .topper .content .left img {
    opacity: 0.3;
    width: auto;
    height: 80%;
  }

  .topper .content .right {
    width: calc(100% - 4rem);
    padding: 0 2rem;
  }
}

@media screen and (max-width: 756px) {
  .contact {
    position: relative;
    margin-bottom: 3rem;
  }

  .contact .left {
    position: absolute;
    left: 0;
    top: 0;
  }

  .contact .center {
    width: 70%;
    margin: 0 auto;
  }

  .contact .right {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .contact .left,
  .contact .right {
    width: 20%;
  }
}

@media screen and (max-width: 756px) {
  .contact .center {
    width: 90%;
  }

  .contact .left,
  .contact .right {
    width: 25%;
    opacity: .3;
  }
}
