.about {
  padding: 160px 0 220px 0;
  background-color: #F7F7F7;
}
.about .about-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.about .about-wrapper .button-primary {
  margin-left: 100px;
  display: block;
}
.about .about-title {
  font-size: 52px;
  line-height: 62px;
  max-width: 525px;
  margin-bottom: 40px;
}
.about .about-descr {
  margin-left: 100px;
  color: #576303;
  font-size: 20px;
  line-height: 38px;
  margin-bottom: 40px;
  max-width: 550px;
}
.about .about-descr.description {
  margin-bottom: 32px;
  opacity: 0.7;
}
.about .about-image {
  max-width: 710px;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
}
.about .about-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1440px) {
  .about {
    padding: 120px 0 180px 0;
  }
  .about .about-wrapper {
    margin-bottom: 60px;
  }
  .about .about-wrapper .button-primary {
    margin-left: 0;
  }
  .about .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about .about-title {
    font-size: 42px;
    line-height: 52px;
    max-width: 500px;
    margin-bottom: 16px;
  }
  .about .about-descr {
    max-width: 500px;
    margin: 0 0 32px 0;
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .about .about-wrapper {
    display: block;
  }
  .about .about-wrapper .button {
    display: none;
  }
  .about .about-content {
    align-items: center;
  }
  .about .about-title {
    max-width: 820px;
    text-align: center;
    margin-bottom: 24px;
  }
  .about .about-descr {
    max-width: 820px;
    text-align: center;
  }
  .about .about-descr.description {
    margin-bottom: 0;
  }
  .about .about-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 100px 0 140px 0;
  }
  .about .about-title {
    font-size: 32px;
    line-height: 42px;
  }
  .about .about-descr {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (max-width: 640px) {
  .about {
    background-color: #F5F2EE;
  }
  .about .about-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 576px) {
  .about {
    padding: 80px 0 120px 0;
  }
  .about .container {
    padding: 0;
  }
  .about .about-wrapper {
    padding: 0 15px;
  }
  .about .about-title {
    margin-bottom: 16px;
  }
  .about .about-descr strong {
    font-weight: 500;
    opacity: 0.7;
  }
}