/* css specifico per page servizi*/



/* servizi container*/
.odd {
    background-color: #f0f0f0;
}

.even {
    background-color: #e0e0e0;
}


/* servizi */

.servizi {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.servizi h3 {
    color: #333;
}
.servizi p {
    color: #666;
    line-height: 1.6;
}
.servizi img {
    width: 100%;
    height: auto;
}
.fixed-height-row {
    height: 800px; /* Example fixed height */
    margin-bottom: 0;
}
.fixed-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* This centers the text vertically */
}
.img-fluid {
    height: 100%; /* Make images fill the container height */
    object-fit: cover; /* Ensures images cover the area nicely without losing aspect ratio */
}
/* Adding some styling frills */
.servizi-card {
    margin-top:64px;
    background: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
    transition: transform 0.3s ease-in-out; /* Smooth scaling on hover */
}
.servizi-card:hover {
    transform: scale(1.03); /* Slightly scale up cards on hover */
}
/* Ensure the text is not too tight against the edges */
.servizi-card h2, .card p {
    margin-right: 10%;
    margin-left: 10%;
}
