* {
    font-size: 14px;
    transition: transform 0.3s ease, cursor 0.3s ease;
}

.icon {
    color: #666;
}

.icon:hover {
    color: #222;
}

.nav-link img {
    height: 60px;
    width: 80px;
}

.img-banner {
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease, cursor 0.3s ease;
}

.img-banner:hover {
    transform: scale(1.005);
    border-radius: 20px;
    cursor: pointer;
}

.img-product {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.img-product:hover {
    transform: scale(1.005);
    cursor: pointer;
}

.img-big {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.img-big:hover {
    transform: scale(1.005);
    cursor: pointer;
}

.box-text:hover {
    transform: scale(1.005);
    cursor: pointer;
}

.text-link {
    text-decoration: none;
}

.text-link:hover {
    text-decoration:underline ;
}

.img-circle {
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-footer {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;
}

.card-clickable:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-clickable:hover .card-footer {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1200px) {
    .number {
        font-size: 14px;
    }
    .header {
        font-size: 14px;
    }
    .text {
        font-size: 12px;
    } 
    .text-sm {
        font-size: 10px;
    } 
}

@media (min-width: 992px) {
    .responsive {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (max-width: 768px) {
    .number {
        font-size: 14px;
    }
    .header {
        font-size: 14px;
    }
    .text {
        font-size: 12px;
    } 
    .text-sm {
        font-size: 10px;
    } 
}
@media (max-width: 576px) {
    .number {
        font-size: 12px;
    }
    .header {
        font-size: 12px;
    }
    .text {
        font-size: 10px;
    }
    .text-sm {
        font-size: 8px;
    } 
    img {
        height: 150px;
    }
}
@media (max-width: 370px) {
    .number {
        font-size: 10px;
    }
    .header {
        font-size: 10px;
    }
    .text {
        font-size: 8px;
    }
}

