.conditions {
  padding-top: 4rem;
  background-color: #fff;
  color: #000;
  position: relative;
}

.conditions__title {
  margin-bottom: 5rem;
}

.conditions__list {
  display: grid;
  gap: 2.6rem;
}

.conditions__item {
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid #000;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.conditions__item svg {
  width: 2.7rem;
  flex-shrink: 0;
}

.conditions__video {
  width: calc(100% + 4rem);
  height: auto;
  margin: 0 -2rem;
}

.conditions__img {
  margin: 0 -2rem 0;
  width: calc(100% + 4rem);
  max-width: unset;
  display: block;
}

.conditions__img img {
  width: 100%;
  
  height: auto;
}

@media (min-width: 768px) {
  .conditions {
    padding: 8rem 0;
  }
  .conditions__title {
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
  }

  .conditions__list {
    max-width: 58.8rem;
    margin-left: 62.8rem;
  }

  .conditions__item {
    font-size: 1.8rem;
  }

  .conditions__item p {
    max-width: 50rem;
  }

  .conditions__img {
    margin: 0;
    position: absolute;
    top: 12rem;
    left: 2rem;
    width: 60rem;
  }

  .conditions__video {
    margin: 0;
    position: absolute;
    top: 15rem;
    left: 11.5rem;
    width: 50rem;
  }
}