.gallery-container {
  text-align: center;
  font-weight: 700;
  font-size: 21px;
  line-height: 32px;
  overflow: hidden;

  h2 {
    margin: 30px auto 20px;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;

    @media #{$screen-md-min} {
      margin: 46px auto 76px;
      font-size: 64px;
      line-height: 74px;
    }
  }

  p {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    white-space: pre-wrap;
    margin: 0;

    @media #{$screen-md-min} {
      font-weight: 400;
      font-size: 24px;
      line-height: 32px;
    }

    strong {
      font-weight: 700;
      font-size: 14px;
      line-height: 22px;

      @media #{$screen-md-min} {
        font-size: 28px;
        line-height: 38px;
      }
    }
  }

  .position-base-box {
    height: auto;
    aspect-ratio: 374 / 210;
    margin: 25px auto;
    overflow: hidden;
  
    .center {
      height: 100%;
      width: 100%;
  
      .slide__item {
        padding: 0 10px;
  
        .slide__img {
          width: 80%;
          height: auto;
          margin: auto;
          -o-object-fit: contain;
          object-fit: contain;
        }
      }
  
      .carousel-box {
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
  
        .image {
          height: auto;
          width: 100%;
          position: absolute;
          left: 0;
          transition: all 1s ease-in-out;
          overflow: hidden;
        }
      }
    }
  }
  
  .image-list-dot {
    display: flex;
    margin: 8px auto 0;
    justify-content: center;

    @media #{$screen-md-min} {
      margin: 16px auto 0;
    }
  
    span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #cc00b94d;

      @media #{$screen-md-min} {
        width: 12px;
        height: 12px;
      }

      &:not(:last-of-type) {
        margin-right: 5px;
      }
  
      &[data-current='true'] {
        background-color: #cc00b9;
      }
    }
  
    &.light--pink {
      background-color: #cc00b9;
  
      span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #ffbdf64d;

        @media #{$screen-md-min} {
          width: 12px;
          height: 12px;
        }

        &:not(:last-of-type) {
          margin-right: 5px;
        }
  
        &[data-current='true'] {
          background-color: #ffbdf6;
        }
      }
    }
  }
}