.about-us_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us_content {
  margin: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 64px;

  @media (min-width: 1001px) {
    gap: 120px;
    margin: 40px 20px;
    max-width: 1180px;
    flex-direction: row;
  }

  @media (min-width: 1381px) {
    max-width: 1180px;
    margin: 40px auto;
  }
}

.about-us_left {
  flex: 1;
}

.about-us_left-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #8b348a;
}

.about-us_left-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #201e1f;
  padding: 16px 0 16px 0;

  @media (min-width: 391px) {
    color: #757575;
  }
}

.about-us_left-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #0066e1;
  border-radius: 24px;
  width: 100%;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17.07px;
  cursor: pointer;
  color: black;

  @media (min-width: 391px) {
    width: auto;
    padding: 0 15px;
    height: 30px;
    font-weight: 500;
  }
}

.about-us_left-btn:hover {
  background-color: #0066e1;
  color: white;
  transition: 0.15s;
}

.about-us_right {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;

  @media (min-width: 1016px) {
    justify-content: flex-end;
  }
}

.about-us_right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
