/* CSS For Carousel Widget */
.single-showroom-slide {
    display: grid;
    grid-template-areas:
        "h h h h h h i i i i i i";
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 40px;
}

.showroom-slide-left {
    grid-area: h;
    position: relative;
    height: 100%;
}

.showroom-slide-right {
    grid-area: i;
}

.plista-showroom-carousel-wrapper .owl-item{
    width: 100%;
}

.showroom-slide-left p {
    margin-bottom: 180px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.showroom-slide-left span {
    font-size: 16px;
    font-weight: 400;
    font-family: "IBM Plex Sans", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    background-color: #97d294;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.showroom-slide-left h1, .showroom-slide-left h2 {
    font-family: "IBM Plex Sans", sans-serif !important;
    color: #3c3c3c;
    font-weight: 400;
    margin: 0 0 10px;
}

.showroom-slide-left h1 {
    font-size: 50px;
}

.showroom-slide-left h2 {
    font-size: 40px;
}

.showroom-slide-left h3.showroom-slide-text {
    color: #5c5c5c;
    font-size: 40px;
    font-family: "IBM Plex Sans", sans-serif !important;
    text-align: center;
    font-weight: 600;
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
}

.plista-showroom-carousel-wrapper .owl-nav div {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 5px #999;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #5c5c5c;
    transition: .4s;
    position: absolute;
    bottom: 100px;
}

.plista-showroom-carousel-wrapper .owl-nav .owl-prev {
    left: 0;
}

.plista-showroom-carousel-wrapper .owl-nav .owl-next {
    right: 20px;
}

.plista-showroom-carousel-wrapper .owl-controls {
    position: relative;
    width: 50%;
}


@media (max-width: 767.98px) { 
  
  .single-showroom-slide {
      display: flex;
      flex-direction: column-reverse;
  }
  
  .showroom-slide-left span {
      font-size: 14px;
      padding: 5px 10px;
      margin-bottom: 10px;
  }
  
  .showroom-slide-left h2 {
      font-size: 30px;
  }
  
  .showroom-slide-left h1 {
      font-size: 32px;
  }
  
  .showroom-slide-left p{
     margin-bottom:70px;
  }
  
  .showroom-slide-left h3.showroom-slide-text {
      font-size: 28px;
      bottom: -12px;
  }
  
  .plista-showroom-carousel-wrapper .owl-controls {
      width: 100%;
  }
  
  .plista-showroom-carousel-wrapper .owl-nav div {
      bottom: 0px;
  }
  
  .plista-showroom-carousel-wrapper .owl-nav .owl-next {
      right: 0;
  }
  
  .showroom-slide-left {
      margin-top: 20px;
  }
  
  
  
}