/* Home about +++ */
.oc-home-about {
  padding: 58px 0 70px;
  background: #fff;
  color: #173913;
}

.oc-home-about__row {
  display: flex;
  align-items: center;
}

.oc-home-about__image {
  overflow: hidden;
  border-radius: 3px;
}

.oc-home-about__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
}

.oc-home-about__content {
  max-width: 600px;
  text-align: center;
}

.oc-home-about__content h2 {
  margin: 0 0 24px;
  color: #173913;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.oc-home-about__content p {
  margin: 0 0 10px;
  color: #173913;
  font-size: 14px;
  line-height: 1.15;
}

.oc-home-about__btn {
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid #3B741E;
  border-radius: 3px;
  background: #fff;
  color: #3B741E;
  font-size: 15px;
  font-weight: 700;
}

.oc-home-about__btn:hover,
.oc-home-about__btn:focus,
.oc-home-about__btn:active {
  border-color: #3B741E;
  background: #3B741E;
  color: #fff;
  box-shadow: none;
  outline: none;
}

@media (max-width: 767px) {
  .oc-home-about {
    padding: 38px 0 48px;
  }

  .oc-home-about__row {
    display: block;
  }

  .oc-home-about__image {
    margin-bottom: 24px;
  }

  .oc-home-about__content {
    max-width: none;
    margin-left: 0;
  }

  .oc-home-about__content h2 {
    margin-bottom: 16px;
    font-size: 23px;
  }
}
/* Home about --- */
