/* --------------------------------------------------------------- */
/*
/* Infos
/*
/* --------------------------------------------------------------- */

#infos {
    padding: 50px 0;
}

 #infos h2 {
    border-bottom: 2px solid #fbb52e;
}

 #infos ul li {
	position: relative;
    font-size: 16px;
    margin-top: 10px;
    list-style: none;
}

#infos ul li:before {
	content:"";
	position: absolute; top: 7px; left: -20px;
	width:6px; height:6px;
	background-color: #fba809;
}

#infos ul li a {
    color: #232323;
    transition: color 0.2s;
}

#infos ul li a:hover {
    color: #ce8a0b;
    transition: color 0.2s;
}

#infos .bloc-info {
    margin: 10px auto;
}

/* --------------------------------------------------------------- */
/*
/* Map
/*
/* --------------------------------------------------------------- */

#map {
    height: 520px;
}

/* --------------------------------------------------------------- */
/*
/* Formulaire
/*
/* --------------------------------------------------------------- */

#formulaire {
    padding: 40px 0;
}

#formulaire .bloc-contenu {
    margin: 30px auto;
}

#formulaire h1 {
    position: relative;
    margin-top: 35px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 25px;
}

#formulaire h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #959595;
}

#formulaire h1 span:after {
    content: '';
    position: absolute;
    bottom: 0px;
    z-index: 1;
    left: 0;
    width: 65%;
    border-bottom: 2px solid #fba809;
}

/* --------------------------------------------------------------- */
/*
/* Mentions Légales
/*
/* --------------------------------------------------------------- */

#mentions {
    padding: 40px 0;
}

#mentions h1{
    position: relative;
    top: 0;
    left: 0;
    text-transform: uppercase;
    font-size: 27px;
    padding-bottom: 10px;
    border-bottom: 2px solid #222222;
    margin-bottom: 25px;
    width: 40%;
}

#mentions h1 span {
    position: relative;
}

#mentions h1 span:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fba809;
}

@media screen and (max-width: 767px) {
    #mentions h1{
        font-size: 27px;
        width: 80%;
    }
}


@media screen and (max-width: 575px) {

    #infos h2 {
        font-size: 25px;
    }

    #formulaire h1 {
        font-size: 25px;
    }
    
    #mentions h1{
        font-size: 24px;
        width: 100%;
    }
}

