/* Add custom CSS styles below */
body>div:last-of-type>div:nth-child(2) {
    display: none;
}

.product-entry:hover {
    border-color: #0b547f !important;
}

.product-entry .product-entry__image img {
    transition: 0.3s;
}

.product-entry:hover .product-entry__image img {
    scale: 1.1;
}

.product-entry:hover .product-entry__title a {
    color: #0b547f;
}


.f_bordered-product {
    border: .125rem solid #a7a7a7;
}

.store-footer__inner {
    background: #efefef;
}

.slide--cat-entry i {
    transition: 0.3s;
    color: #605750;
}

.slide--cat-entry:hover i {
    color: #f80169;
}

.store-footer__bottom {
    max-width: 100% !important;
}


body.index .s-block__title h2 {
    text-transform: uppercase;
    background-image: linear-gradient(-225deg, #000000 0, #000000 29%, #314d5d 67%, #0b547f 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 4s linear infinite textclip;
    display: inline-block;
    font-weight: 600;
    border-bottom: 3px;
    font-size: 20px;
    line-height: 2;
}

@keyframes textclip {
    100% {
        background-position: 200% center
    }
}





.navbar-brand img {
    animation: heartbeat 2.5s ease-in-out infinite both;
}



@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


.testimonials-slider .swiper-slide-active {
    width: 60%;
    border: 1px solid #00000050;
    border-radius: 49px;
    background: #0b547f;
    
}