.vaccination-section{
    background-image: url('../../../images/photos/infirmiere-1-unsmushed.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding:0;
}
.vaccination-section .content-vaccination{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 0.5rem;
}

.content-vaccination  img{
    height: 100px;
    width: auto;
    fill: var(--primary-color);
}
.content-vaccination h2{
    color: #B7EADC;
    margin: 0;
}
.content-vaccination .text-vaccination{
    color: white;
    width: 913px;
    font-size: 15px;
   
}
.content-vaccination hr{
    background-color: white;
    width: 20%;
    height: 1px;
    border: none;

}
@media screen and (max-width: 768px) {
    .vaccination-section{
        width: 100vw;
        padding: 2rem 0;
        background-attachment: scroll;
    }
    .vaccination-section .content-vaccination{
        width: 100vw;
        padding: 2rem 0;
        gap: 0.5rem;
    }
    .vaccination-section .content-vaccination h2{
        font-size: 20px;
    }
    .vaccination-section .content-vaccination .text-vaccination{
        font-size: 15px;
        width: 90vw;
    }
    .vaccination-section .content-vaccination img{
        height: 50px;
    }   
    
}