@import url('https://fonts.googleapis.com/css2?family=Redressed&family=Merriweather:wght@300;400;700&display=swap');

.redressed{
	font-family: 'Redressed', cursive;
}
.merriweather{
	font-family: 'Merriweather', serif;
}
*{
    margin:0;padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
   /*text-transform: capitalize;*/
    text-decoration: none;
}
/*
body{
    min-height: 100vh;
    background: url(./ressource/el1.jpeg) no-repeat;
    background-size: cover;
     text-decoration: none;
    background-position: center;  
} */
header{
    position: fixed;
    top: 0; left: 0; right: 0;
   /* background: #ffff;#4aa3a2*/
   background: #4aa3a2;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/*header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: #333; 
    /*border-radius: 50%;
}*/
header .navbar ul{
    list-style: none;
}
header .navbar ul li{
    position: relative;
    float: left;
}
header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    color: #333;
    display: block;
}
header .navbar ul li a:hover{
    background: #333;
   /* background: gainsboro;*/
    color: #ffff;
}
header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: #fff;
    display: none;
}
header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
header .navbar ul li ul li ul{
    left: 200px;
    top: 0;
}
header.navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}

#menu-bar{
    display: none;
}
header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}



@media (max-width:991px){
    header{
        padding: 20px;
    }
    header label{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
    }
    header .navbar ul li{
        width: 100%;
    }
    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: #eeee;
    }
    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }
        #menu-bar:checked ~ .navbar{
            display: initial;
        }
}

.accueil{
    min-height: 100vh;
    background: url(./ressource/rhino.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
}
.accueil h1{
    margin-top: 150px;
    text-align: center;
    font-size: 100px;
    text-shadow: 0 0 10px #000;
    color: #f1f1f1;
    font-family: Merienda one, sans-serif;
}
.sous-titre{
    text-align: center;
    font-size: 25px;
    font-weight: lighter;
    color: #f1f1f1;
    margin: 5px 0;
    font-family: Merienda one, sans-serif;
    text-shadow: 0 0 10px #000;
}
.btn-accueil{
    border-radius: 9999px;
    background:#4aa3a2;
    border: 1px solid #4aa3a2;
    color: #f1f1f1;
    text-align: center;
    font-size: 22px;
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-decoration: none;
    margin: 30px auto 0;
    transition: all 0.2s ease-in-out;
}
.btn-accueil:hover{
    background:skyblue;
    color: #fff;
}
@media (max-width: 850px){
    .accueil{
        height: 650px;
        min-height: auto;
        margin-top: 90px;
    }
    .accueil h1{
        font-size: 50px;
    }
    .sous-titre{
        font-size: 23px;
    }
    .btn-accueil{
        width: 130px;
        height: 40;
        line-height: 40px;
        font-size: 18px;
        margin: 15px auto 0;
    }
}
@media (max-width: 400px){
    .accueil{
        height: 550px;
    }
    .accueil h1{
        font-size: 38px;
    }
    .sous-titre{
        font-size: 18px;
    }
    .btn-accueil{
        width: 110px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
}


/*--------- Section asymétrique ---------*/

.section-asymetrique {
    display: grid;
    grid-template: 200px repeat(23, 150px) / 1fr 600px 1fr 600px 1fr;
    background: #f1f1f1;
}

.section-asymetrique h2 {
    /* deb row / deb col / fin row / fin col */
    grid-area: 1 / 1 / 2 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4aa3a2;
    font-size: 50px;
    padding-top: 50px;
}

/* Bloc-1 & Bloc-3 */

.bloc-1 {
    grid-area: 3 / 2 / 8 / 3;
}
.bloc-3 {
    grid-area: 17 / 2 / 22 / 3;
}
.bloc-left {
    background: #333;
    color: #f1f1f1;
    position: relative;
    left: 100px;
    border-radius: 2px;
}
.bloc-left img {
    position: absolute;
    left: 300px;
    top: 100px;
    width: 100%;
}

.bloc-txt-left {
    width: 50%;
    height: 100%;
}

.bloc-txt-left h3 {
    width: 150%!important;
    font-size: 20px;
    margin: 35px 0;
    padding: 15px;
}
.bloc-txt-left p {
    line-height: 40px;
    padding: 15px;
}
.btn-bloc-left {
    border-radius: 9999px;
    outline: 0;
    border: 0;
    background: #4aa3a2;
    border: 1px solid #333;
    color: #f1f1f1;
    padding: 20px 35px;
    font-size: 20px;
    display: flex;
    margin: 10px auto;
    cursor: pointer;
}

/* Bloc-2 */

.bloc-2 {
    grid-area: 10 / 4 / 15 / 5;
    background: #333;
    color: #f1f1f1;
    position: relative;
    right: 100px;
    border-radius: 2px;
}
.bloc-2 img {
    position: absolute;
    right: 300px;
    top: 100px;
    width: 100%;
}
.bloc-txt-2 {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}
.bloc-txt-2 h3 {
    position: relative;
    right: 40px;
    width: 150%!important;
    font-size: 25px;
    margin: 15px 0;
    padding: 15px;
}
.bloc-txt-2 p {
    line-height: 40px;
    padding: 15px;
}
.bloc-txt-2 button {
    border-radius: 9999px;
    outline: 0;
    border: 0;
    background: #4aa3a2;
    border: 1px solid #333;
    color: #f1f1f1;
    padding: 20px 35px;
    font-size: 20px;
    display: flex;
    margin: 10px auto;
    cursor: pointer;
}

/* Lignes verticales */


.ligne-gauche {
    grid-area: 1 / 2 / -1 / 3;
    border-left: 1px solid #333;
}
.ligne-milieu {
    grid-area: 1 / 3 / -1 / 4;
    border-right: 1px solid #333;
}
.ligne-droite {
    grid-area: 1 / 5 / -1 / 6;
    border-left: 1px solid #333;
}

@media screen and (max-width: 1550px) {

    .section-asymetrique {
        grid-template: 200px repeat(26, 100px) / 1fr 400px 1fr;
    }

    .bloc-1 {
        grid-area: 3 / 2 / 9 / 3;
    }
    .bloc-left {
        left: -150px;
    }
    .bloc-txt-left {
        width: 70%;
    }
    .bloc-txt-left p {
        line-height: 30px;
        padding: 15px;
    }
    .btn-bloc-left {
        padding: 15px 30px;
        font-size: 18px;
        margin: 10px;
    }

    /* Bloc-2 */

    .bloc-2 {
        grid-area: 11 / 2 / 17 / 3;
        right: -150px;
    }
    .bloc-txt-2 {
        width: 70%;
    }
    .bloc-2 img {
        top: 150px;
    }
    .bloc-txt-2 h3 {
        right: 80px;
    }
    .bloc-txt-2 p {
        line-height: 30px;
        padding: 15px;
    }
    .bloc-txt-2 button {
        padding: 15px 30px;
        font-size: 18px;
        margin: 10px;
    }

    .bloc-3 {
        grid-area: 19 / 2 / 25 / 3;
    }


    /* Lignes */

    .ligne-gauche {
        border-right: 1px solid #333;
    }
    .ligne-milieu, .ligne-droite {
        display: none;
    }

}


@media screen and (max-width: 850px) {

    .section-asymetrique {
        grid-template: 200px repeat(35, 100px) / 1fr 400px 1fr;
    }
    .section-asymetrique h2 {
        font-size: 45px;
        padding-top: 0px;
    }

    .bloc-1 {
        grid-area: 2 / 2 / 8 / 3;
        border-bottom: 1px solid #f1f1f1;
    }
    .bloc-left {
        left: 0px;
    }
    .bloc-left img {
        position: absolute;
        left: 0px;
        top: 600px;
    }
    .bloc-txt-left {
        width: 100%;
    }
    .bloc-txt-left h3 {
        width: 100%!important;
        text-align: center;
        margin: 5px 0;
    }
    .bloc-txt-left p {
        font-size: 20px;
        line-height: 40px;
    }
    .btn-bloc-left {
        margin: 10px auto;
    }

    /* bloc-2 */

    .bloc-2 {
        grid-area: 13 / 2 / 19 / 3;
        right: 0px;
        border-top: 1px solid #f1f1f1;
    }
    .bloc-txt-2 h3 {
        position: relative;
        right: 0px;
        width: 100%!important;
        text-align: center;
        font-size: 35px;
        margin: 5px 0;
    }
    .bloc-txt-2 {
        width: 100%;
    }
    .bloc-2 img {
        position: absolute;
        right: 0px;
        top: 600px;
    }
    .bloc-txt-2 p {
        line-height: 40px;
        font-size: 20px;
    }
    .bloc-txt-2 button {
        margin: 10px auto;
    }

    .bloc-3 {
        grid-area: 24 / 2 / 30 / 3;
        border-top: 1px solid #f1f1f1;
    }
}

@media screen and (max-width: 430px) {
    .section-asymetrique {
        grid-template: 200px repeat(32,100px) / 1fr 320px 1fr;
    }
    .section-asymetrique h2 {
        grid-area: 1 / 1 / 2 / -1;
        font-size: 30px;
    }

    .bloc-txt-left h3 {
        font-size: 25px;
    }
    .bloc-txt-left p {
        font-size: 16px;
    }

    /* b2 */
    .bloc-2 {
        grid-area: 12 / 2 / 18 / 3;
    }
    .bloc-txt-2 h3 {
        font-size: 25px;
    }
    .bloc-txt-2 p {
        font-size: 16px;
    }
    .bloc-txt-2 {
        width: 100%;
    }
    .bloc-2 img {
        position: absolute;
        right: 0px;
        top: 600px;
    }
    .bloc-txt-2 button {
        margin: 10px auto;
    }

    .bloc-3 {
        grid-area: 22 / 2 / 28 / 3;
    }
}


/*-------- Section Parallax ----------*/

/*-------- Section Parallax ----------*/

.parallax{
    width: 100%;
    height: auto;
    background: url(ressource/parallax-large-flou.jpg);
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
}
.parallax p{
    font-size: 50px;
    color: #f1f1f1;
    font-family: 'Redressed', cursive;
}
.parallax span{
    display: block;
    font-size: 25px;
    color: #f1f1f1;
    font-family: 'Merriweather', serif;
    
}
@media (max-width:800px) {
    .parallax p{
        font-size: 35px;
    }
    .parallax span{
        font-size: 18px;
    }
}

@media (max-width:400px) {
    .parallax p{
        font-size: 28px;
        text-align: center;
    }
    .parallax span{
        font-size:15px;
    }
}
/* ---------------Section tarif----------------- */
.section-tarifs{
    padding-bottom: 150px;
    border-bottom: 1px dashed #333;
}
.section-tarifs h3{
    text-align: center;
    font-size: 45px;
    color: #4aa3a2;
    margin: 120px 0 20px;
    padding: 0 30px;
}
.section-tarifs hr{
    width: 400px;
    margin: 20px auto 100px;
    
}
.container-tarifs{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.cartes-tarifs{
    width: 350px;
    height: auto;
    border-radius: 5px;
    margin: 15px 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease-in-out;
    position: relative;
}
.cartes-tarifs:hover{
    transform: translateY(-5px);
}
.cartes-tarifs h4{
    text-align: center;
    padding: 25px 20px;
    font-size: 35px;
    clip-path: polygon(0 0,100% 0%,100% 80%,0 100%);
    background: #ffafbf;
}
.cartes-tarifs span{
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 25px;
    font-weight: bold;
}
.cartes-tarifs:nth-child(2) h4{
    background: #ff5073;
}
.cartes-tarifs:nth-child(3) h4{
    background: #ff0033;
}
.cartes-tarifs p{
    font-size: 18px;
    padding: 20px 10px;
    border-bottom: 1px solid rgb(194,197,194);
}
.cartes-tarifs p:last-of-type{
    border-bottom: 1px solid rgb(194,197,194);
}
.cartes-tarifs p:nth-child(odd){
    background: rgba(195,195,194,0.219);
}
.cartes-tarifs a{
    display: block;
    text-decoration: none;
    border: 1px solid #333;
    text-align: center;
    width: 200px;
    height: 50px;
    border-radius: 9999px;
    color: #333;
    font-size: 18px;
    line-height: 50px;
    margin: 20px auto;
    transition: all 0.2s ease-in-out;
}
.cartes-tarifs a:hover{
    background: #333;
    color: #f1f1f1;
}
@media screen and (max-width:900px){
    .section-tarifs h3{
        font-size: 35px;
        margin: 80px 0 80px;
    }
}

@media screen and (max-width:425px){
    .section-tarifs h3{
        font-size: 30px;
        padding: 0 10px;
        margin: 50px 0;
    }
    .section-tarifs hr{
        width: 200px;
        margin: 20px auto 20px;
    }
}

 /* Debut de la page Notre Travail*/
 .Notre_job{
    height: 90vh;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 100px;
    text-align: justify;
    background:  #ada; 
 }
 .Notre_travail{
  /* margin-top: 35px;*/
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 800px;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.cercl2{
    width: 400px;
    height: 380px;
    border-radius: 50%;
    background: orange;
    /*background: url(./ressource/AECongo.png);*/
    /*background-size: cover;*/
   /* background-position: -50px 0;
    margin: 0px 25px 25px 0px;
    float: left;
    shape-outside: circle();*/
}

/* Page Contact*/
/* sECTION CONTQCT*/
.section-contact{
    padding-top: 20px;
    padding-bottom: 20px;
   
}
.section-contact h2{
    text-align: center;
    color: #333;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
    padding: 70px 0 0 0;
}
/*
.section-contact h2 strong{
    font-weight: 900;
}
*/
.container-form{
    margin: 0 auto;
    width: 70%;
}
.form-groupe{
    position: relative;
    margin-bottom: 45px;
}
.form-groupe label{
    color: #aaa;
    font-size: 20px;
}
.form-groupe input{
    display: block;
    width: 100%;
    padding: 10px 0px;
    border: none;
    outline: none;
    background: none;
    border-bottom: 3px solid #aaa;
    color: #666;
    font-size: 20px;
}
.form-groupe textarea{
    width: 100%;
    height: 200px;
    border: none;
    border: 3px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    resize: none;
    outline: none;
    font-size: 20px;
    background: #f1f1f1;
}
.form-groupe:nth-child(){
    margin-bottom: 25px;
}
.form-groupe .button-sub{
    display: block;
    width: auto;
    padding: 15px 60px;
    border: 3px solid rgb(144,144,144);
    border-radius: 9999px;
    background-image: linear-gradient(to right, transparent 50%, rgb(65,65,65)50%, rgb(134,134,134));
    background-size: 200%;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.form-groupe .button-sub:hover{
    color: #fff;
    background-position: 100%;
    border: 3px solid #fff;
}
@media screen and(max-width:1300px){
    .section-contact h2{
        padding: 70px 0 0 0;
    }
    .container-form{
        padding-left: 0;
    }
}

/*Debut de la section Contact*/
    .entrer_contact{
       /* padding-top: 80px;
        padding-bottom: 80px;*/
        margin-top: 100px;
        margin-bottom: 80px;
        background: #f1f1f1;
        display: flex;
        justify-content: center;
        height: auto;
        font-family: Arial, Helvetica, sans-serif;
    }
    
.boxForm {
    margin-top: 30px;
    padding: 50px;
    width: 700px;
    height: auto;
    background: #333;
    border-radius: 5px;
}
h1 {
    margin-top: 0;
    font-size: 50px;
    text-align: center;
    color: #f1f1f1;
}
h1 span img {
    width: 50px;
    position: relative;
    top: 10px;
}

.emailInp, select, textarea {
    display: block;
    margin: 20px auto;
    outline: 0;
    background: #f1f1f1;
    width: 95%;
    border: 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 3px;
}

.labelEmail, .labelSelect, .labelTxt {
    color: #f1f1f1;
    display: block;
    margin: 0 auto;
    width: 95%;
    position: relative;
    top: 7px;
}

.flex2Inputs {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
}
.flexInp {
    margin: 20px auto;
    outline: 0;
    background: #f1f1f1;
    width: 90%;
    border: 0;
    padding: 15px;
    font-size: 14px;
    border-radius: 3px;
}
.flexLeftInp, .flexRightInp {
    flex-basis: 45%;
}
.labelFlex {
    color: #f1f1f1;
    position: relative;
    top: 8px;
}
button {
    width: 45%;
    display: block;
    margin: 45px auto 0 auto;
    outline: none;
    border: 0;
    height: 50px;
    transition: all 0.2s linear;
    cursor: pointer;
    border-radius: 5px;
    font-size: 17px;
}
button:hover {
    background: #4aa3a2;
}

/* Fin de la Section Contact */

/* Page ourwork*/
.kazi{
    padding-top: 20px;
    height: auto;
    width: 70%;
    max-width: 650px;
    min-width: 280px;
   /* height: 500px;*/
   box-shadow: 0 5px 20px rgba(0,0,0,0.5);
   margin: 100px auto;
}
.carte img{
    width: 100%;
}
.carte h2{
    text-align: center;
    margin: 10px 0 0 0;
}
.carte p{
    text-align: justify;
    padding: 15px;
}

/* Début afficher Message*/
    .containerA{
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        position: relative;
        
    }

    .Btn_add {
        width: fit-content;
        margin-bottom:20px;
        background-color: #2bc48a;
        padding: 5px 20px;
        color: #fff;
        display: flex;
        align-items: center;
        text-align: 0;
        border-radius: 6px;
        text-decoration: 0;
    }
    .Btn_add img {
        margin-right: 5px;
        height: 20px;
    }
    /*tableau*/
    table {
        border-collapse:collapse;
        color: #404040;
    }
    th {
        font-size: 16px;
        border-bottom: 3px solid #ffcb61;
        padding: 5px 20px;
        font-weight: 500;
    }
    td {
        font-weight: 400;
        padding: 5px 30px;
        font-size: 14px;
        text-align: center;
    
    }
    .containerA img {
        height: 25px;
       
    }
    tr:nth-child(2n){
        background-color: #f6f8f8;
    }
    tr:nth-child(2n) td {
        border-bottom: 1px solid #e0e0e0;
        border-top:  1px solid #e0e0e0;
    }
    /*Form CSS*/
    .form {
        background-color: #f6f8f8;
        padding: 25px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        border-radius: 6px;
    }
    .form form {
        display: flex;
        width: 350px;
        flex-direction: column;
    }
    .back_btn {
        color: #2bc48a;
        text-decoration: 0;
        display: flex;
        align-items: center;
    }
    .back_btn img {
        height: 16px;
        margin-right:5px ;
    }
    h2 {
        margin: 10px 0;
        font-weight: 500;
        text-transform: uppercase;
    }
    .erreur_message {
        color: red;
        font-size: 15px;
    }
    label {
        margin-top: 5px;
        text-transform: uppercase;
    }
    input{
        padding: 5px;
        border: 1px solid #999;
        outline: 0;
        margin-top: 2px;
    }
    input:focus{
        border: 1px solid #ffcb61;
    }
    input[type="submit"]{
        margin-top: 25px;
        background-color: #2bc48a;
        border: 1px solid #2bc48a;
        cursor: pointer;
        color: #fff;
        text-transform: uppercase;
    }
    
/* Fin afficher Message*/

/* Debut login */
.sectionlogin{
    margin: 0px;
    padding-top: 50px;
    background: #dddcdc;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
.boxLogin {
    width: 350px;
    height: 480px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 5px;
}

.containerLogo {
    height: 43%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cercle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgb(250,165,9);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cercle img {
    width: 100px;
}

.containerInputs {
    height: 57%;
}

form input {
    display: block;
    margin: 20px auto;
    outline: 0;
    background: #f2f2f2;
    width: 90%;
    border: 0;
    padding: 15px;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 15px;
}

form button {
    display: block;
    margin: 20px auto;
    outline: 0;
    background: rgb(250,165,9);
    width: 90%;
    border: 0;
    padding: 15px;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
}

.txtFin {
    text-align: center;
}
.txtFin a {
    text-decoration: none;
    color: salmon;
}

/* Fin login*/

/* Debut Parc avec les items*/

    .parc{
        /*background: #333;*/
        font-family: Arial, Helvetica, sans-serif;
        height: 100vh;
        padding-top: 80px;
    }
    .parc h1{
      
        color: #333;
        font-size: 40px;
        margin-top: 50px;
    }
    .galerie{
        width: 100%;
        max-width: 1300px;
        margin: 70px auto 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .item{
        width: 400px;
        min-width: 280px;
        height: auto;
        margin: 10px;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    .item h4{
        text-align: center;
        margin: 10px 0 0 30px;
    }
    .item p{
        padding: 15px;
        margin: 0 0 0 30px;
        text-align: justify;
    }
    .item img{
        width: 100%;
        height: auto;
    }
    /* debut du login */
.erreur{
    color: red;
    margin: 10px 0;
    text-align: center;
}

/* Espace Administrateur*/

.espace_admin{
    padding-top: 120px;
    background: #f1f1f1;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}
.tableau-style{
    border-collapse: collapse;
    min-width: 400px;
    width: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    cursor: pointer;
    margin: 100px auto;
    border: 1px solid #dddd;
}
thead tr{
    background-color: midnightblue;
    color: #fff;
    text-align: center;
}
th,td{
    padding: 15px 20px;
}
tbody tr, td{
    border: 1px solid #dddd;
}
tbody tr:nth-child(even){
    background-color: #d3d3d3;
}
tbody tr:last-of-type{
    border-bottom: 2px solid midnightblue;
}


.relebe .relebedesc{
    background: #eee;
   /*font-family: Arial, Helvetica, sans-serif;*/
    height: auto;
    padding-top: 120px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
}

.form_relebe .order-form{
    background: linear-gradient(rgba(0,0,0,.5),  rgba(0,0,0,.5)), url('./ressource/banniere.jpg')center center fixed no-repeat;
		background-size: cover;
		height: auto;
        text-align: justify;
}
.btn-order{
	color: black;
	border-color:#eee;
	transition: 0.5s;
}

.btn-order:hover,
.btn-order:active
	{
		color:black;
		background-color: #eee;
	}

.publication{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
}


.iteme{
    width: 400px;
    min-width: 280px;
    height: auto;
    margin: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.iteme h4{
    text-align: center;
    margin: 10px 0 0 30px;
}
.iteme p{
    padding: 15px;
    margin: 0 0 0 30px;
    text-align: justify;
}
.iteme img{
    width: 100%;
    height: auto;
}
.iteme .btn{
   justify-content: center;
}
.titreactivite h2{
       text-align: center;
        color: #4aa3a2;
        font-size: 40px;
        margin-top: 50px;
        font-family: 'Merienda one', sans-serif;
}




@media (max-width:400px){
    .publication {
        width: 70%;
    }
    .iteme{
        width: 300px;
    }
}
.center1{
    padding-top: 80px;
}


/*Page Relebe */
.presentationrelebe{
    padding-top: 120px;
}
 .card-group{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
}

.card-group .h5{
    padding: 15px;
    text-align: justify;
}

.btn-success{
    text-align: center;
}








/* debut de la Section footer */
.cc-footer{
    background-color: #b6d8f2;
 
 }
     .cc-footer .reseau img{
         width: 40px;
         border-radius: 50%;
         margin: 10px 5px;
     }
 
     .nav a:hover{
        text-decoration: underline;
        color: #4aa3a2;
     }

    