/* ============ PAGES CSS ============ */
@import url(variables.css); @import url(header.css); @import url(main_carousel.css); @import url(description.css); @import url(valeurs.css); @import url(keyframes.css); @import url(temoignages.css); @import url(about.css); @import url(commentcamarche.css); @import url(projets.css); @import url(contact.css); @import url(footer.css); @import url(mentions_legales.css);
/* =========== GOOGLE FONTS ============= */
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Montserrat:wght@400;500;600;700;800;900&family=Palanquin:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body{
    background-color: #F8F9F8;
}
/* .sub_body{
    overflow-y: hidden;
} */
/* =============== main ================== */
.container{
    padding: 0 1rem;
    margin-bottom: var(--mb-5);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.text_green{
    color: var(--color-green);
}
.card{
    background-color: rgba(255, 255, 255, 0.50);
    border-radius: 20px;
    border: 2px solid white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(3px);
    width: 100%;
    margin-bottom: var(--mb-4);
    padding: .5rem;
    z-index: 0;
}
/* =================== titles =========== */
.section_name{
    z-index: 2;
    margin-bottom: var(--mb-5);
}
.section_title{
    color: var(--text-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    line-height: 1.5rem;
    font-weight: normal;
}
.section_subtitle{
    color: var(--color-green);
    font-family: var(--subtitle-font);
}
/* ============ background ========== */
.background_item{
    position: absolute;
}
.bg_item_back{
    z-index: -1;
    width: 30%;
    right: -0.7rem;
    overflow: hidden;
}
.bg_item_front{
    z-index: 0;
    transform: rotate(115deg);
    width: 20%;
    bottom: -1.5rem;
    right: 2rem;
}
/* ================== Video ========== */
.video{
    position: relative;
    width: 80%;
    margin: auto;
}
.video_wrapper{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    box-shadow: 0 0 40px rgb(0 0 0 / 20%);
}
.video_wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ============= MEDIA QUERIES =========== */
/* ============ tablettes ========== */
@media screen and (min-width: 768px){
    .section_title{
        font-size: 1.8rem;
    }
    .section_subtitle{
        font-size: 1.1rem;
    }
}
/* ============ petits écrans ========== */
@media screen and (min-width: 1024px){
    .video{
        width: 50%;
    }
    .container{
        margin-bottom: var(--mb-5);
    }
}
/* ============ grands écrans ========== */
@media screen and (min-width: 1200px){
    .container{
        padding: 0 2rem;
        margin-bottom: 5rem;
    }
    .container-rge{
        margin-bottom: 4rem;
    }
    .section_title{
        font-size: 2.1rem;
        line-height: 2rem;
    }
    .section_subtitle{
        font-size: 1.3rem;
    }
}