.hover-splash:hover {
    background-color: rgb(165 165 165 / 20%) !important;
}

.hover-shadow {
    transition: box-shadow 0.5s !important;
}

.hover-shadow:hover {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
}

.hover-scale {
    transition: transform 0.5s;
}

.hover-scale:hover {
    transform: scale(1.1);
}

.hover-slide-up {
    transition: transform 0.5s;
}

.hover-slide-up:hover {
    transform: translateY(-20px) !important;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px !important;
    bottom: 0;
    background-color: var(--theme-color);
    transition: all 0.25s ease-out;
}

.hover-underline-animation:hover::before {
    width: 100%;
}

.hover-bg-theme:hover {
    background-color: var(--theme-color) !important;
    color: white !important;

}

.hover-bg-theme:hover span {
    color: white !important;
}

.hover-bg-theme2:hover {
    background-color: var(--theme-color2) !important;
    color: white !important;

}

.hover-bg-theme2:hover span {
    color: white !important;
}

.hover-text-theme:hover {
    color: var(--theme-color) !important;
}

.hover-text-theme2:hover {
    color: var(--theme-color2) !important;
}

.hover-border {
    border-color: transparent !important;
    transition: all 0.3s;
}

.hover-border:hover {
    border-color: var(--theme-color) !important;
}

.hover-border-bottom {
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s;
}

.hover-border-bottom:hover {
    border-bottom-color: var(--theme-color) !important;
}

.hover-rotate-svg svg {
    transition: all 0.3s;
}

.hover-rotate-svg:hover svg {
    transform: rotate(10deg);
}