img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.content__inner {
  display: flex;
  flex-direction: column;
  height: 100vh;
  /* justify-content: center; */ /* ?????????????? */
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.content__wrap {
  row-gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.content__img {
  aspect-ratio: 1/0.8;
  width: 31%;
}

.bg-transparent {
  position: relative;
  padding: 0;
}

.bg-transparent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1440688807730-73e4e2169fb8');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
