@import url(../main.css);

.hero-overlay {
    background: linear-gradient(to right, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.5));
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.main-fold{
    font-weight: 700;
}
.read-more-btn {
    opacity: 0;
    transition: all 0.3s ease;
}

.card-hover:hover .read-more-btn {
    opacity: 1;
}

.modal {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.counter {
    transition: all 0.5s ease;
}