.swiper-container {
    position: relative;
  }
  
  .swiper-button-prev {
    color: #c6c6c6;
    background-image: unset;
  }
  
  .swiper-button-prev:after {
    margin-right: 0.7rem;
  }
  
  .swiper-button-next {
    color: #c6c6c6;
    background-image: unset;
  }
  
  .swiper-button-next:after {
    margin-left: 0.7rem;
  }
  
  .swiper {
    width: 92%;
    /*margin-top: 20px;*/
  }
  
  @media only screen and (max-width: 1600px) {
    .swiper {
      width: 90%;
    }
  }
  
  @media only screen and (max-width: 900px) {
    .swiper {
      width: 86%;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .swiper {
      width: 76%;
    }
  }
  
  .swiper-slide {
    text-align: center;
    font-family: "Lato", sans-serif;
    font-style: normal;
    color: #ffffff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  
  .swiper-slide-link {
    color: #ffffff !important;
  }
  
  .swiper-slide:hover .swiper-slide-overlay {
    height: 100%;
  }
  
  /* games image size should be 400px x 570px */
  .swiper-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 25px !important;
  }
  
  .swiper-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: hidden;
    width: 100%;
    height: 0;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 0rem 0.7rem 0rem 0.7rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  .overlay-slide-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 43px;
    margin: 2rem 0 2rem 0;
  }
  
  @media only screen and (max-width: 1250px) {
    .overlay-slide-title {
      font-size: 1.75rem;
    }
  }
  
  .overlay-slide-type {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 29px;
    padding: 0;
  }
  
  @media only screen and (max-width: 1250px) {
    .overlay-slide-type {
      font-size: 1.3rem;
    }
  }
  
  .overlay-slide-categories {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1.2rem;
            column-gap: 1.2rem;
    row-gap: 0.7rem;
    margin: 0 0.3rem 0.5rem 0.3rem;
    padding: 0;
  }
  
  @media only screen and (max-width: 1250px) {
    .overlay-slide-categories {
      font-size: 1rem;
      -webkit-column-gap: 1rem;
              column-gap: 1rem;
      row-gap: 0.5rem;
    }
  }
  
  .overlay-slide-category {
    margin: 0.4rem 0;
  }
  
  @media only screen and (max-width: 1250px) {
    .overlay-slide-category {
      margin: 0;
    }
  }