.carousel {
    /* background: #EEE; */
  }
  
  .carousel-cell {
    width: 33%;
    height: fit-content;
    margin-right: 10px;
    background: #8C8;
    border-radius: 5px;
    counter-increment: gallery-cell;
  }
  
  /* cell number */
  .carousel-cell:before {
    display: block;
    text-align: center;
    line-height: 200px;
    font-size: 80px;
    color: white;
  }

  @media screen and ( min-width: 768px ) {
    /* half-width cells for larger devices */
    .carousel-cell { width: 33%; }
  }

.types-categories .types-categories-icon {
      font-size: 60px;
  }

  .types-categories .types-categories-title {
      display: block;
      font-size: 1.2em;
  }



  /* Carousel base class */
.carousel {
    margin-bottom: 0rem;
    margin-top: 1em;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  .owl-item {
    /*display: table;*/
  }
  
  .owl-carousel .item {
    height: 0vh;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 8px;
  }

  .types-categories-icon {

    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .types-categories-icon:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

/*owl///*/
 .owl-prev,
  .owl-next {
    position: absolute;
    top: 10%;
    margin-top: -5px; /* // Half of the prev/next buttons height here in negatives to center them perfectly */
  }
  
  .owl-prev i,
  .owl-next i {
      font-size: 3em;
  }
  
  .owl-prev {
    left: 0;
  }
  
  .owl-next {
    right: 0;
  }
  
.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    background: #d6d6d600; 
}
.owl-nav [class*=owl-] {
    color: #FFFFFF;
    background: none;
  }
  
.owl-nav [class*=owl-]:hover {
      text-decoration: none;
  }
  
.owl-dots .owl-dot span {
    background: #fff;
  }
  
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #fff
  }
