 .product-card__img {
     transition: transform .7s ease;
 }

 .product-card__media:hover .product-card__img,
 .product-card__media:focus .product-card__img {
     transform: scale(1.1);
 }

 .list-category li.uk-active a {
     background-color: #f8f9fa;
     color: rgb(210, 163, 251);
     font-weight: bold;
     border-left: 3px solid rgb(210, 163, 251);
 }

 .list-category li.uk-active a span:first-child {
     color: rgb(210, 163, 251);
 }

 .category-highlight {
     color: rgb(210, 163, 251);
     font-weight: bold;
 }

 .product-card__media {
     height: 375px;
 }

 #products-container>div {
     animation: fadeInUp 0.5s ease forwards;
     opacity: 0;
 }

 #products-container>div:nth-child(1) {
     animation-delay: 0.1s;
 }

 #products-container>div:nth-child(2) {
     animation-delay: 0.2s;
 }

 #products-container>div:nth-child(3) {
     animation-delay: 0.3s;
 }

 #products-container>div:nth-child(4) {
     animation-delay: 0.4s;
 }

 #products-container>div:nth-child(5) {
     animation-delay: 0.5s;
 }

 #products-container>div:nth-child(6) {
     animation-delay: 0.6s;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }