.rainbow-animated {
    font-weight: bold;
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet, red);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowMove 3s linear infinite;
}

@keyframes rainbowMove {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}
.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px white;
    background-color: white;
    cursor: pointer;
}
.homes-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.homes-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px white;
    background-color: white;
    cursor: pointer;
}
.price-custom {
    margin-left: -10px;
}
.carousel-control-next-icon{
    font-size: 20px;
}
.thuonghieu{
    width: 100%;
    height: 250px;

}
.spnb a:hover{
    color: yellow;
}
.product-item a:hover {
    color: red;
}