body{
    background-color: var(--bg-color) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header{
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(../assets/img/header_servizi_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    gap: 20px;
}

.header .title,
.header .subtitle{
    color: var(--bg-color);
    text-align: center;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.219);
}

.header .title {
    font-weight: 600;
    font-size: 40px;
}

.header .subtitle{
    font-weight: 500;
    font-size: 20px;
    width: 90%;
    max-width: 600px;
}

.header .line{
    width: 100px;
    height: 5px;
    border-radius: 10px;
    background-color: var(--bg-color);
    box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 0.158);
}


section.data{
    width: 95%;
    max-width: 1100px;
    height: fit-content;
    margin-top: 50px;

    display: flex;
    flex-direction: column;

    padding-bottom: 100px;
}
