/* CSS Document */

body,
html,
* {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

#slider {
    background-color: #cccccc;
    width: 100%;
    height: 550px;
    position: relative;
}

#img {
    width: 100%;
    height: 550px;
    position: absolute;
}

.left {
    position: absolute;
    top: 40%;
    left: 10px;
    width: 60px;
    height: 70px;
    opacity: 0.4;
}

.left:hover {
    opacity: 1;
}

.right {
    position: absolute;
    top: 40%;
    right: 10px;
    width: 60px;
    height: 70px;
    opacity: 0.4;
}

.right:hover {
    opacity: 1;
}


/*---------------ici style titre-------------*/

.entete_titre {
    background-color: #ff0000;
    text-align: center;
    color: whitesmoke;
    padding: 40px;
    position: absolute;
    top: 60%;
    line-height: normal;
}

.entete_titre h1 {
    font-size: 40px;
    line-height: normal;
}

#icon {
    position: absolute;
    text-align: center;
    height: 20px;
}

.sociaux {
    margin: 15px;
}


/*---------------ici style titre-------------*/


/*-----------ici mon menu-------*/

#menu {
    background: black;
    position: sticky;
    top: 0;
    overflow: hidden;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}

li {
    float: left;
}

li a {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

li a:hover:not(.active) {
    background: #ff77ff;
}

.active {
    background: #ff77ff;
}


/*-----------ici mon menu-------*/


/*contenu*/

#contenu {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-bottom-width: 0px;
    padding-left: 0px;
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 0px;
}

.titre_section {
    font-size: 26px;
    width: 90%;
    margin-top: 20px;
    color: rgb(228, 133, 8);
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px;
}

p {
    text-align: justify;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #313030;
}

.colonne {
    position: relative;
    float: left;
    width: 30%;
    min-height: 200px;
    text-align: center;
    margin: 10px;
    padding: 5px;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: 180px;
    transition: 0, 5s;
    backface-visibility: hidden;
}

.middle {
    transition: 0, 5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    /*-ms-transform:translate(-50%,-50%);*/
}

.text {
    position: relative;
    background: #f00a3c;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
    cursor: pointer;
}

.colonne:hover .image {
    opacity: 0.3;
}

.colonne:hover .middle {
    opacity: 1;
}


/*contenu*/


/*formulaire*/

.inscription_boite {
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 6% 0;
    text-align: center;
    clear: left;
}

.inscription_boite h2 {
    margin: 0 0 1% 0;
    font-weight: 100;
    font-size: 30px;
}

.inscription_boite .inscription {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.inscription_boite .inscription input {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #f00a3c;
    padding: 1% 0 1% 0;
    text-align: center;
    font-size: 18px;
    font-family: inherit;
    font-weight: 300;
    line-height: 1.5;
    color: black;
    outline: none;
}

.inscription_boite .inscription button {
    margin-top: 3%;
    background: transparent;
    border: 2px solid #f00a3c;
    border-radius: 50px;
    padding: 10px 40px;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    position: relative;
    transition: 2s;
}

.inscription_boite .inscription button :hover {
    color: aqua;
    padding: 10px 40px;
    transition: 2s;
}


/*footer*/

.footer {
    clear: left;
    padding: 40px;
    bottom: 0;
    text-align: center;
    margin-top: auto;
    background-color: #000000;
}

.footer h2 {
    color: #ffff;
    transform: scale(1);
    transition: 0.6s ease-in-out;
}

.footer h3 {
    color: red;
    font-size: 13px;
}

.footer h4 {
    color: aqua;
    font-size: 15px;
}