.catsection {
   margin-bottom:25px;
   width: 100%;
}

.catbox {
    background: #F5F5F5;
    padding: 24px;
    transition: all 1s linear;
    height: 100%;
    display:flex;
    flex-direction: column;
}

.catbox .catimages {
    flex:1;
    display: flex;
    justify-content: space-between;
    color: #333;
}

.catbox .catimages img {
    filter: brightness(.9);
    width: 70px;
    height: 80px;
}

.catbox .cattitle p {
    font-family: "Rubik-Medium";
    margin: 20px 0 0 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #333;
}

a .catbox:hover {
    background: linear-gradient(309deg, #2DCCD3 0%, #147BD1 103.82%);
}

a .catbox:hover .cattitle p{
    color: #FFFFFF;
}

a .catbox:hover .catimages {
    color: #FFFFFF;
}

a .catbox:hover .catimages img {
    visibility: visible;
    filter: invert(10%) sepia(0%) saturate(0%) hue-rotate(65deg) brightness(107%) contrast(180%);
}

.slick-dots-container {
  width: 16rem;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 24px auto;
  height: 30px;
  position: relative;
}

.slick-dots-container > ul {
  padding: 0;
  display: flex;
  transition: all 0.25s;
  position: relative;
  margin: 0;
  list-style: none;
  transform: translateX(0);
  align-items: center;
  bottom: unset;
  height: 100%;
}

.slick-dots-container > ul li {
  width: 1.5rem;
  height: 1.4rem;;
  margin: 0 1rem;
  background-color: #efd5d5;
  border: none;
  border-radius: 50%;
}

.slick-dots-container > ul li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.3125rem;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-dots-container > ul li.p-small-1,
.slick-dots-container > ul li.n-small-1 {
  transform: scale(0.7);
}

.slick-dots-container > ul li.slick-active {
  transform: scale(1.5);
  transform-origin: center;
  background: #3498db;
}

.slick-dots li button:before {
  display: none;
}


@media (min-width: 761px) {
    .slick-dots-container {
        display: none;
    }
}