

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-Thin.ttf') format('truetype'),
         url('style/fonts/WorkSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-ThinItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-ExtraLight.ttf') format('truetype'),
         url('style/fonts/WorkSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-ExtraLightItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-Light.ttf') format('truetype'),
         url('style/fonts/WorkSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-LightItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-Regular.ttf') format('truetype'),
         url('style/fonts/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./fonts/WorkSans-Italic.ttf') format('truetype'),
         url('style/fonts/WorkSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-Medium.ttf') format('truetype'),
         url('style/fonts/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-MediumItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-SemiBold.ttf') format('truetype'),
         url('style/fonts/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-SemiBoldItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-Bold.ttf') format('truetype'),
         url('style/fonts/WorkSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-BoldItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-ExtraBold.ttf') format('truetype'),
         url('style/fonts/WorkSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-ExtraBoldItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-Black.ttf') format('truetype'),
         url('style/fonts/WorkSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./../style/fonts/WorkSans-BlackItalic.ttf') format('truetype'),
         url('style/fonts/WorkSans-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}


main{
    margin-top: 80px;
    font-family: 'Work Sans';
}

.hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('./../content/orso.webp') no-repeat center 40%;
    background-size: cover;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin: 0;
    padding: 0;
}

.parallax_hero {
    background-attachment: fixed;
    background-position: center top 70%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero::before {
    background: rgba(255, 0, 0, 0.25);
    backdrop-filter: blur(3px); 
}

.hero::after {
    background-color: rgba(255, 0, 0, 0.151);
}

.hero h1 {
    position: relative;
    width: 40vw;
    left: 0;
    padding: 5vh 100px 5vh 100px;
    color: #cc0000 !important;
    background-color: white !important;
    font-size: 3rem;
    font-weight: 600;
    z-index: 2;
    /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); */
}

.section-title {
    font-weight: 700;
}

.section-text {
    font-size: 1.1rem;
    color: #333;
}

.bold-title {
    font-weight: 700;
}

.parallax_section_emergenza {
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/soccorso_in_ambulanza.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    margin: 0 calc(-50vw + 50%);
}

.parallax_section_didattica{
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/parallax_didattica.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    
    margin: 0 calc(-50vw + 50%);

}

.parallax_section_principi{
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/missione.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    
    margin: 0 calc(-50vw + 50%);

}

.parallax_section_sociale{
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/parallax_sociale.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    margin: 0 calc(-50vw + 50%);
}

.parallax_section_sviluppo{
    position: relative;
    width: 99.5vw;
    height: 200px;
    background: url('./../content/care.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    
    margin: 0 calc(-50vw + 50%);

}

.parallax_section_giovani{
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/foto_giovani.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    
    margin: 0 calc(-50vw + 50%);

}

.parallax_section_emergenze{
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/parallax_emergenze.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    margin: 0 calc(-50vw + 50%);

}

.parallax_section_emergenze_2{
    position: relative;
    width: 99.5vw;
    height: 400px;
    background: url('./../content/parallax_emergenze_2.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    margin: 0 calc(-50vw + 50%);
}

._row{
    margin: 10vh;
}

.parallax_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Effetto scurito */
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax_text {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.section-title{
    font-weight: 700;
    font-style: bold;
    color: #cc0000;
}

.bold-title {
    font-weight: 700;
    color: rgb(99, 99, 99);
}

.title-wrapper{
    margin-bottom: 4vh;
}

.indentation-1 {
    font-size: 2.8rem;
    font-weight: 700;
    font-style: bold;
}

.indentation-2 {
    font-size: 2.2rem;
    font-weight: 600;
    font-style: bold;
    
}

.indentation-3 {
    font-size: 1.9rem;
    font-weight: 600;
    font-style: bold;
    
}

.indentation-4 {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: bold;

}

.wrapper .title-wrapper {
    margin-bottom: 1vh;
}

.indented-wrapper-2{
    margin-left: 2vw;
}

.indented-wrapper-3{
    margin-left: 4vw;
}

.indented-wrapper-4{
    margin-left: 5vw;
}

.black-txt{
    color: black;
}

.custom-image {
    width: 400px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: 20px;
}

.custom-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.custom-list li {
    list-style: none;
    padding-left: 0; /* opzionale: rimuove l’indentazione */
}

.custom_bold{
    font-weight: bold;
    color: #cc0000;
}

.custom_link{
    color: #cc0000;
    font-weight: bold;
}