.about-container {
  padding: 110px 80px 0;
  width: 100%;
}

.about-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.about-container .button-wrapper .primary {
  margin-top: 0;
  color: white;
}

.about-wrapper img {
  max-width: 400px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-container h2 {
  color: var(--color-black);
  font-family: var(--font-regular);
  font-weight: 700;
  font-size: 30px;
  font-style: normal;
  line-height: normal;
  margin-bottom: 20px;
  max-width: 660px;
}

.about-container p {
  color: #4e545f;
  font-family: var(--font-regular);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 33px;
  max-width: 660px;
}

.about-container a, .about-container a:visited {
  color: var(--accent-color);
}

@media only screen and (max-width: 1100px) {
  .about-container {
    padding: 140px 30px 0;
  }
  .about-wrapper img {
    max-width: 300px;
  }
}

@media only screen and (max-width: 800px) {
  .about-container {
    padding: 140px 15px 0;
  }
  .about-wrapper {
    flex-direction: column-reverse;
  }
}
