
:root {
    --blanc: #ffffff;
    --rouge: #b11d09;
    --rouge2:#b51d15;
    --noir: #000000;
    font-family: 'Lato', sans-serif;
}


*{

    padding: 0;
    margin: 0;
    box-sizing: border-box;

}


@font-face {
    font-family: font;
    src: url(/fonts/Nom-Fichier.ttf); 
    font-display: swap;
}

@font-face {
    font-family: font-Bold;
    src: url(/fonts/Nom-Bold.ttf); 
    font-display: swap;
}


body, html{

    position: relative;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden !important;
}

hr{
    color: var(--rouge2);
    background-color: var(--rouge2);
    border: 1px solid var(--rouge2);
}



.container{
    width: 90%;
    margin: 0  auto;
}


.flex{

    flex: 0 0 auto;

}



.text-center{
    text-align: center;
}




img{
    width: 100%;
    height: auto;
    display: inline-block;
    max-width: max-content;
}

.img-absolute{
    position: absolute;
}


picture{
    width: auto;
    display: inline-block;
    line-height: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    color: black;
}

a, .bouton{
    transition: color 0.4s, background-color 0.4s;
    max-width: max-content;
} 



.flex-switch { 
    display: flex;
    flex-direction: column; /* -- Se change en row après -- */
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row{
    display: flex;
}

.btn {
    background-color: var(--rouge);
    color: var(--blanc);
}

.btn-1{

}

.btn-2 {

}

.btn:hover{
    background-color: ;
    color: ;
}




/*********** 

    MAIN CSS  

************/

p{
    color: var(--noir);
}


/*  ================= CSS utilisé dans la page : ========== 
*
* index.php
*
*/



.section1{
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;

}

.section1 hr{
    width: 100%;
    margin: 10px 0;
    max-width: 290px;
}

.section1 .container.row-1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 47px 0 34px 0;
}

.section1 .container.row-2{
    padding-bottom: 30px;
}

.section1 h1{
    font-weight: 800;
    font-size: 1.2em;
}

.section1 .col-2 p{
    font-size: 0.80em;
}

.section1 p, .section1 h1{
    color: var(--blanc);
}



.section2{
    background-color: var(--noir);
}

.section2 p{
    padding-bottom: 40px;
    color: var(--blanc);
}

.section3 {
    background-color: var(--noir);
}

.section3 .btn{
    margin: auto;
    display: flex;
    align-items: center;
    border-radius: 10px;
    /* padding:5px 17px; */
    width: 261px;
    padding: 7px 15px;
}

.section3 .btn img{
    width: 26px;
}

.section3 .btn span{
    /*margin: 0 9px 0 15px;*/
    margin: 0 9px 0 8px;
}

.section3 .container{
    background-color: var(--blanc);
    border-radius: 19px 19px 0px 0px;
}

.section3 .container > div{
    padding: 10px 14px;
}

.section3 .employe{
    margin: auto;
}

.section3 .employe h2{
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 18px;
}

.section3 .employe img{
    max-width: 134px;
}

.section3 .employe a{
    font-weight: bold;
}

.section3 .col-2{
    margin-top:14px;
}

.section3 .img-ymarketing{
    width:56%;
    max-width: 212px;
    margin: 20px auto 20px auto;
}

.section3 p{
    margin-bottom: 12px;
}

.section4 {
    background-color: var(--noir);
    color: var(--blanc);
    /*padding-bottom: 26px;*/
    padding-bottom: 112px;
}

.section4 .container{
    background-image: url("../images/background-2.jpg");
    background-size: cover;
    padding: 20px 17px 62px;
}

.section4 h2{
    font-size: 1em;
}

.section4 ul{
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 24px;
}

.section4 ul li{
    border-left: 2px solid #b01e1a;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    font-size: 0.85em;
}

.section4 span{
    padding-left: 10px;
}

.section5 {
    padding-bottom: 44px;
}

.section5 .container{
    text-align: center;
    border: 1px ridge black;
    border-radius: 22px;
    margin-top:-126px;
    max-width: 420px;
}

.section5 .carousel{
    text-align: center;
    display: flex;
    overflow: hidden;
    height: 350px;
    position: relative;
}

.section5 .carousel img{
    max-width: unset;
    position: absolute;
    transition: transform 1s ease;
}

.section5 .btn{
    margin: auto;
    padding: 8px 17px;
    border-radius: 11px;
    margin-top: 12px;
}

.section5 .cordonnes{
    align-items: center;
    margin-top:30px;
    padding:0 16px;
    margin-bottom: 30px;
}

.section5 .cordonnes .telephone{
    margin: 16px 0;
}

.section5 .cordonnes .site{
    color: #b32017;
}

.section5 .social-links {
    margin: 9px 0 4px 0;
}

.section5 .social-links img{
    width: 56px;
}






@media only print{

h1,h2,h3,h4,p,a,li{color:#000 !important;}

nav{display:none;}

} 