/*************************RESPONSIVE*********************************************************/
/**************************************************************************************/

@media only screen and (max-width: 780px) {
.responsive_texte {
    clear:both;
	width:100%;
	}
#myCarousel, #myCarousel1, #myCarousel2, #myCarousel3, #myCarousel4, #myCarousel5 {
	float:none;
	width:100%;
	}
}

.responsive {
	float:left;
	display:inline;
	width:40%;
	margin-right:3vw	
}

/*************************MENU*********************************************************/
/**************************************************************************************/

/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

:root{
    --white: #FFFFFF;
    --black: #36383F;
    --gray: #85888C;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
/* Header */
.header{
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px var(--gray);
    position: sticky;
    top: 0;
    width: 100%;
}
/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    font-size: 40px;
    margin-left: 10px;
}
/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 20px;
    color: var(--white);
}
.menu a:hover{
    background-color: var(--gray);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
}
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
/* Responsiveness */
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--gray);

    }

    .hamb{
        display: none;
    }
}
/*************************FIN MENU*********************************************************/
/**************************************************************************************/

/*************************SQUELETTE PAGE*********************************************************/
/**************************************************************************************/

#conteneur {
	width: 100%;
	margin-left:auto;
	margin-right: auto;
	text-align: left;
	background-color:#FFFFFF;
}
#headercentre {
	margin-left: 0;
	margin-right: 0;
	height:auto;
	text-align:center;
	background-color:#FFFFFF;
}
#headergauche {
	float: left;
	color: #FFFFFF;
	height:150px;
	background-repeat: no-repeat;
	margin-right:-3px;
}
#headerdroite {
	float: right;
	color: #FFFFFF;
	height:150px;
	background-repeat: no-repeat;
	margin-left:-3px;
	text-align:right;
}
#topcentre, #haut_top {
	font-family:Bookman Old Style, Arial, sans-serif;
	margin-left:0;
	margin-right:0;
	width:auto;
	padding:10px 5px 8px 5px;
	color: #FFFFFF;
	font-size:12px;
	height:25px;
	padding-left:10px;
}
#bottomcentre {
	margin-left:0;
	margin-right:0;
	width:auto;
	padding-top:20px;
	padding-bottom:8px;
	color: #FFFFFF;
	font-size:12px;
	height:20px;
	text-align:right;
}
#centre {
	margin-left: 0;
	margin-right: 0;
	width:auto;
	text-align: justify;
	padding:10px;
	background-color:#FFFFFF;
	margin-bottom:-12px;
}
#clear{
	clear:both;
}
#pied {
	text-align:center;
	clear: both;
	height:30px;
	font-size:12px;
}
#piedcentre {
	text-align: center;
	padding-top:5px;
	width:100%;
}

/*************************FIN SQUELETTE PAGE*********************************************************/
/**************************************************************************************/

.cadre {
	text-align:justify;
}
a {
	color:#000000;	
}
table {
border:1px solid #000000;
padding:5px;	
background-color:#88BDE9;
}

tr, td {
border:1px solid #000000;
padding:5px;	
background-color:#FFFFFF;
}

.bouton {color:#88BDE9; cursor:pointer; font-size:14px; padding:5px }
.bouton:hover {background-color:#88BDE9; font-size:14px; padding:5px; color:#FFFFFF}
.bouton:active { background-color:#FFFFFF; color:#C30040; font-size:14px; padding:5px }

.bouton_disabled {color:#EEEEEE; font-weight:bold; cursor:pointer; font-size:11px; padding:1px }
.bouton_disabled:hover {background-color:#CCCCCC; font-size:11px; padding:1px }
.bouton_disabled:active {border:1px inset #000000; background-color:#CCCCCC; color:white; font-size:11px; padding:1px }

input[type="text"], input[type="password"], input[type="reset"], input[type="submit"], select, textarea, .bouton {
  margin: 0;
  appearance: none;
  box-shadow: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding:5px;
}


