@charset "utf-8";
/* CSS Document */

body{
    margin: 0;
    padding: 0;
}
h1, h2{
    text-align: center;
}
h1{
    font-size: 3em;
}
h2{
    font-size: 2em;
}
a{
    color: rgba(195,23,39,1);
}
/*#fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}*/
#header{
    background-color: rgba(178,179,180,1);
}
#headerContent{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 10px;
}
#headerContent p{
	text-align:center;
}
#scroll{
    position: relative;
    top:0px;
}
.parallax-container{
    height: 500px;
}
#sousSlider{
    background-color: rgba(195,23,39,1);
    margin-top: 100px;
    height: 40px;
}
#presentation,#contact{
    width: 80%;
    margin: auto;
    font-weight: bold;
}
#presentation p{
    text-align: justify;
}
#circle{
    display: flex;
    justify-content: space-around;
    padding: 50px 50px;
}
#circle img{
    overflow: hidden;
    border-radius: 50%;    
}
#footer{
    padding: 20px 0;
    background-color: rgba(178,179,180,1);    
}
#footer .container{
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}
.footerCol{
    text-align: center;
}
.footerCol p{
    margin: 0;
    font-weight: bold;
    font-size: 0.9em;
}

/****** message d'erreur *****/
.card-success{
    background-color: #00ff00;
    min-height: 40px;
}
.card-warning{
    background-color: orange;
    min-height: 40px;
}
.card-success p,.card-warning p{
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

/****** css de la page produits *****/
#cards{
    display: flex;
    justify-content: space-around;
}

@media (max-width:1600px){
}
@media (max-width:1370px){
    img{
        width: 80%;
    }
    #circle img{
        height: 150px;
        width:150px;
    }
}
@media (max-width:992px){
    img{
        width: 60%;
    }
    #circle img{
        height: 100px;
        width:100px;
    }
    #cards{
        display: flex;
        flex-flow: column;
    }
}
@media (max-width:630px){
    .slider{
        display: none;
    }
    #sousSlider{
        margin-top: 0;
    }
    #circle img{
        display: none;
    }
    #footer .container{
        flex-flow: column;
    }
    .footerCol{
        margin-bottom: 20px;
        align-self: center;
    }
}