.app-slide {
  background-color: var(--color-gray-500);
  width: 100%;
  height: 336px;

  margin-left: auto;
  margin-right: auto;

  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.app-slide-bg {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.app-slide-body {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 0rem;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
    color: white;
}

.app-subtitle {
      font-size: 0.75rem;
	  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      margin-bottom: 0.2rem;
      letter-spacing: 1px;
}

.app-title {
      font-size: 1.2rem;
      font-weight: bold;
	  line-height: 1.5rem;
      margin-bottom: 1.5rem;
}

.app-slide-button {
      display: inline-block;
      padding: 0.375rem 1.5rem;
      color: white;
      font-size: 0.875rem;
      font-weight: 400;
      border: 2px solid white;
      border-radius: 500px;
}
  

.app-slide__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.app-slide-bottom-line1 {
    padding: 5px;
    background: var(--color-gray-900);
}

.app-slide-bottom-line2 {
    padding: 2px;
    background: var(--color-gray-600);
}

.app-slide-bottom-line3 {
    padding: 2px;
    background: var(--color-gray-300);
}