#bann {
    background-color: #fbb034;
    background-image: linear-gradient(315deg, #fbb034 0%, #ffdd00 74%);
}

.banner .banner-heading span {
    border-bottom: 17px solid var(--warning);
}

#gallery .img-wp {
    height: 20rem;
    cursor: pointer;
}

#gallery .img-wp .bg-img {
    transition: transform .4s ease-out;
    height: 100%;
}

#gallery .img-wp:hover .bg-img,
#gallery .img-wp:focus .bg-img {
    transform: scale(1.3);
}

#gallery .img-wp:focus {
    border: 6px solid #fff;
    outline: none;
}

#gallery .img-wp:hover::after,
#gallery .img-wp:focus::after {
    opacity: 0.8;
}

#gallery .img-wp::after {
    opacity: 0;
    background: linear-gradient(45deg, #6f42c1 0%, #17a2b8 100%);
    z-index: 1;
    transition: 0.3s all ease-out;
}

#gallery .img-wp:hover .filter-wp,
#gallery .img-wp:focus .filter-wp {
    filter: blur(5px) contrast(1.2) saturate(0.85);
}

@keyframes gallery-text-animation {
    0% {
        transform: translate3d(0, 20px, 0);
        opacity: 0.2;
    }
    25% {
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#gallery .img-text-wp {
    top: 0;
    z-index: 2;
    opacity: 0;
}

#gallery .img-wp:hover .img-text-wp,
#gallery .img-wp:focus .img-text-wp {
    animation-name: gallery-text-animation;
    animation-duration: 0.6s;
    opacity: 1;
}