
#quick-info {
  background-color: black;
  position: relative;

  .deco-image {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    bottom: 5%;
    z-index: 1;
    width: 80%;
    pointer-events: none;
  }

  @media screen and (min-width: 640px) {
    .deco-image {
      right: 5%;
      transform: none;
      width: 50%;
    }
  }

  .text-section {
    position: relative;
    margin: auto;
    padding: 7.5% 0;
    width: 90%;
    text-align: center;
    z-index: 5;
  }

  @media screen and (min-width: 640px) {
    .text-section {
      width: 50%;
      padding: 3%;
      margin: 0;
      text-align: left;
    }
  }

  .text-section .title {
    font-size: 40px;
    line-height: 95%;
    text-shadow: 4px 4px 6px #000000ff;
  }

  @media screen and (min-width: 640px) {
    .text-section .title {
      font-size: 48px;
      text-shadow: 4px 4px 4px #000000ff;
    }
  }

  @media screen and (min-width: 1440px) {
    .text-section .title {
      font-size: 60px;
      text-shadow: 4px 4px 2px #000000ff;
    }
  }

  .title .em {
    text-decoration: underline;
    font-weight: 600;
    font-style: normal;
  }

  .desc {
    font-size: 12px;
    text-shadow: 1px 1px 1px #00000080;
  }

  @media screen and (min-width: 640px) {
    .desc {
      font-size: 14px;
      text-shadow: 2px 2px 2px #00000080;
    }
  }

  @media screen and (min-width: 1440px) {
    .desc {
      font-size: 18px;
    }
  }

  .desc .em {
    font-weight: 700;
  }
}

