section.hxr-homesection {
  background: #f9f9f9;
  padding: 55px 20px 71px;

  .content {
    max-width: 1240px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 42px 59px;

    .col-text {
      align-self: center;

      .title {
        font-family: "Libre Baskerville", "Lora";
        font-size: 20px;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px;
      }
      .text {
        font-weight: 300;
        line-height: 140%;
        margin-bottom: 22px;
      }
    }
    .col-img {
      .image {
        height: 100%;
        position: relative;

        img {
          height: 100%;
          min-height: 338px;
          width: 100%;
          object-fit: cover;
          object-position: center;
          border-radius: 4px;
        }
      }
    }
  }
  .decorative-mv,
  .decorative-txt {
    font-family: "Libre Baskerville", "Lora";
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    text-transform: uppercase;
  }
  .decorative-mv {
    display: none;
    position: absolute;
    top: 17px;
    bottom: 17px;
    left: 23px;
    right: 23px;
    font-size: 32px;
    color: white;
    span.part2 {
      text-align: right;
    }
  }
  .decorative-txt {
    color: #d7d7d7;
    text-align: center;
    font-size: 62px;
    margin-top: 34.5px;
  }
}
@media (max-width: 575px) {
  section.hxr-homesection {
    .content {
      .col-img {
        flex-basis: 100%;
        width: 100%;
      }
    }
    .decorative-txt {
      display: none;
    }
    .decorative-mv {
      display: flex;
      flex-wrap: wrap;
      align-content: space-between;
      justify-content: space-between;
    }
  }
}
@media (min-width: 768px) {
  section.hxr-homesection {
    padding: 79.5px 20px 52px;

    .content {
      .col-text {
        flex-basis: calc(50% - 13px);
        .title {
          font-size: 32px;
        }
      }
      .col-img {
        flex-basis: calc(50% - 46px);
      }
    }
  }
}
