
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
footer {
    background-color: black;
}
.footerContainer {
    width: 100%;
    padding: 70px 30px 20px;
    height: 200px;
}
.socialIcons {
    display: flex;
    justify-content: center;
}
.socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: #191933;
    opacity: 0.9;
}
.socialIcons a:hover {
    background-color: #191933;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav .current a {
    color: white;
    text-decoration: underline;
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    color: white;
    margin: 10px;
    text-decoration: none;
    font-size: 20px;
    opacity: 0.7s;
    transition: 0.5s;
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom {
    background-color: #191933;
    padding: 10px;
    text-align: center;
    color: white;
}
.entete {
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    border-bottom: 3px solid #191933;
}
.logobarca {
    width: 6%;
}
.navbar {
    display: flex;
    margin-top: 0;
}
ul li {
    list-style: none;
}
.navbar li a{
    color:#191933;
    font-size: 20px;
    padding: 10px;
}
main{
    color: #191933;
    background-color: white;
    width: 1080px;
    margin: auto;
}
h1 {
    text-align: center;
    margin-top: 4%;
}
.h2accueil {
    text-align: center;
    margin-top: -2%;
    margin-bottom: 4%;
    color: #191933;
}
#slidegauche {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-in-from-left {
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: #E2BA04; 
    padding: 0 10px;
    font-size: 15px;
}
nav .current a {
    color: #191933;
    text-decoration: underline;
}
.equipe {
    width: 100%;
}
footer {
    background-color: #191933;
    color: #E2BA04;
}
body {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0 auto;
}
#corpstableau {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
section {
    width: 100%;
    max-width: 1000px;
}
form {
    border: 1px solid #ccc;
    padding:20px;
    border-radius:10px;
    background-color: #f4f4f4;
}
#en-tete {
    margin-bottom: 20px; 
}

.float {
    float: left;
    padding: 5px;
    text-align: left; 
}

.clear {
    clear: both;
}


label {
    display: block; 
    margin-bottom: 5px; 

}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; 
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box; 
}
#message {
    height: 150px;
}
input[type="submit"] {
    background-color: #fff; 
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.contenu {
    margin-top: 40px;
    margin-bottom: 40px;
}
.imagesgalerie {
    width: 1080px;
}
.imagesgalerie img {
    max-height: 200px;
    margin: 10px;
    border-radius: 10px;
    width: 31%;
}
.imagesgalerie img:hover {
    filter: grayscale(100%);
}
#carrouselaccueil {
	margin:0;
	display:flex;
	align-items: center;
	justify-content: center;
	min-height:100vh;
	background-image:url("../images/back.jpg");
	background-size:cover;
    margin-top: -50px;
}
#carrousel{
	width:800px;
	height:400px;
	border:solid 4px #FFF;
	box-shadow:0 0 14px rgba(0,0,0,0.3);
	position:relative;
	overflow:hidden;
}
#container{
	width:800px;
	height:400px;
}
.photo{
	width:800px;
	height:400px;
	margin:0;
	display:inline-block;
	background-size:cover;
}
.bouton{
	position:absolute;
	width:70px;
	cursor:pointer;
	top:150px;
}
#g{
	left:0;
	opacity:0.4;
	transform:rotate(0deg);
	transition:all 0.3s ease;
}
#d{
	right:0;
	opacity:0.4;
	transform:rotate(180deg);
	transition:all 0.3s ease;
}
#g:hover{
	transform:rotate(0deg) scale(1.1);
	opacity:1;
	transition:all 0.3s ease;
}
#d:hover{
	transform:rotate(180deg) scale(1.1);
	opacity:1;
	transition:all 0.3s ease;
}
#montableau {
    border-collapse: collapse;
    width: 1080px;
}
.dataTables_wrapper {
    width: 1080px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}
#montableau th, #montableau td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#montableau th {
    color: white; 
}

#montableau tbody tr:nth-child(even) {
    background-color: #191933; /* Couleur de fond pour les lignes paires */
    color: white;
}

#montableau tbody tr:nth-child(odd) {
    background-color: #A82F24; /* Couleur de fond pour les lignes impaires */
    color: white;
}
#ewen {
    background-color: pink;
    height: 370px;
}
#textphoto {
    width: 600px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
#lucas {
    background-color: pink;
    height: 370px;
}
#marco {
    background-color: pink;
    height: 370px;
}
#hamza {
    background-color: pink;
    height: 370px;
}
#photopartenaires {
    border-radius: 5px;
    width: 30%;
    margin-left: 35%;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1);
    transition: 1s;
}
#photopartenaires:hover {
    transform: scale(1.1);
    z-index: 2;
}
.textaccueil {
    text-align: justify;
    width: 60%;
    margin-left: 20%;
    margin-top: 4%;
}
#histoireclub {
    height: 350px;
    width: 1080px;
    margin: auto;
    display: flex;
}
.histoire-case {
    flex: 1;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.histoire-case .trophesimage {
    width: 100%;
    margin-left: -3%;
    border-radius: 5px;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1);
    transition: 1s;
}
.histoire-case .trophesimage:hover {
    transform: scale(1.1);
    z-index: 2;
}
.histoire-case h3 {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}
#referencesaccueil {
    margin-top: 40px;
    margin-bottom: 40px;
}
#h2ref {
    margin-top: 40px;

}
h2{
    color: white;
}

.h3parte{
    width: 850px;
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: 40px;
}

.partenaires{
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(40px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    margin-bottom: 100px;
}

.partenaires img{
    border-radius: 10px;
    margin-right: 20px;
    width: 1000px;
    width: 25%;
}

.partenaires img:hover{
    scale: 1.05;
    cursor: pointer;
}

.textepartenaires{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    border: 1px;
}

.textepartenaires h2{
    margin: 0;
    color: #191933;
}

.textepartenaires h3{
    color: rgb(192, 190, 190);
    margin-top: 0;
}

.textepartenaires p{
    color: #191933;
}

.textepartenaires a{
    text-decoration: none;
    background-color: black;
    width: 109px;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    justify-self: end;
    align-self: flex-end;
}

.textepartenaires a:hover{
    background-color: white;
    color:black;
}

.textepartenaires a:hover{
    scale: 1.05;
}

.textepartenaires a:active{
    scale: 0.95;
}

.documents{
    display: flex;
    justify-content: space-evenly;
}

.documents a{
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
}

.documents a:hover{
    position: relative;
    top: -5px;
}

.ref a{
    color: black;
}

.site1{
    margin-top: 50px;
}

.site2{
    margin-top: 120px;
}

.site3{
    margin-top: 120px;
}




