/*!*
* Slick Theme Overrides
*/
.slick-carousel .slick-item {
    color: white;
    background-color: #3498db;
    min-height: 250px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    margin: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slick-carousel .slick-item:hover {
    opacity: .7
  }
  
.slick-prev:before,
.slick-next:before {
    color: rgba(28, 38, 123, 1);
    content: '';
}
  
.slick-arrow {
    border: solid rgba(28, 38, 123, 1);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
  
.slick-arrow:hover {
    opacity: .5
}
  
.slick-prev,
.slick-next
{
  top: 6%;
}

.slick-prev {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
  
.slick-next {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
  
.slick-dots
{  
    top: 0em;
    z-index: -10; /* moves the dots to the background and... allows the SWIPE feature to work again! */
}

/* limit number of dots being show to avoid wrap-around  */
.slick-dots li:nth-child(n+10) { 
  display: none;
}
