/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;800&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: 'Inter', sans-serif;
}

/* ////////////////////////////////////////////////////////////////// */

header{
    top: 0;
    height: 100px;
    width: 100%;
    /* background-color: #040d16; */
    display: flex;
    align-items: center;
    position: fixed;
    z-index: +2;
    /* background-color: rgba(0,204,255,100); */
    background-color: rgba(4,13,22,0);
    transition: background-color 0.5s ease; /* Ajout d'une transition pour un effet doux */
}
nav{
    width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav li{
    display: inline;
    padding-left: 12px;
}
nav a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;

    font-weight: 500;
    transition: color 0.5s ease;
}
a:hover{
    color: #00CCFF;
}
#logo{
    width: 60px;;
}
#a-logo{
    border: none;
}
nav .current a {
    color: #00CCFF;
    border-bottom: 1px solid #00CCFF;
    text-decoration: none;
}
/* ////////////////////////////////////////////////////////////////// */

/* #home main{
    background-image: url(../images/bg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
} */
body{
    background-color: #040d16;
}

.title{
    position: absolute;
    color: white;
    font-size: 6.5rem;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-wrap: nowrap;
}
#index-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}




.bloc1{
    background-color: #040d16;
    display: flex;
    justify-content: space-between;
}
.bloc1-donnees{
    width: 1080px;
    margin: 0 auto;
}
.bloc1-galerie{
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.bloc1-contact{
    width: 1080px;
    margin: 60px auto;
    display: flex;
    justify-content: center;
}
#li-kcorp{
    display: flex;
    color: white;
    writing-mode: vertical-lr;
    padding-left: 40px;
    justify-content: space-evenly;
}
#li-kcorp li{
    letter-spacing: 0.1rem;
}


.container-blurr{
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-right: 60px;
    z-index: +1;
}
#blurred-text {
    font-size: 5rem;
    text-align: justify;
    color: #ffffff;
    font-weight: 800;
    transition: filter 0.3s ; /* Ajoute une transition pour un effet plus doux */
    margin: auto 0;
    padding: 20px;

}
#blurred-text1 {
    font-size: 5rem;
    text-align: justify;
    color: #ffffff;
    font-weight: 800;
    transition: filter 0.3s ; /* Ajoute une transition pour un effet plus doux */
    margin: auto 0;
    padding: 20px;
}#blurred-text2 {
    font-size: 5rem;
    text-align: justify;
    color: #ffffff;
    font-weight: 800;
    transition: filter 0.3s ; /* Ajoute une transition pour un effet plus doux */
    margin: auto 0;
    padding: 20px;
}
#blurred-text3 {
    font-size: 5rem;
    text-align: justify;
    color: #ffffff;
    font-weight: 800;
    transition: filter 0.3s ; /* Ajoute une transition pour un effet plus doux */
    margin: auto 0;
    padding: 20px;
}
.background-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #00CCFF; /* Couleur bleue du cercle */
    border-radius: 50%;
    transition: width 0.5s ease-out, height 0.5s ease-out;
    top: 135%;
    left: 55%;
    transform: translate(-50%, -50%);
    filter: blur(150px); 
}
.background-circle2 {
    position: absolute;
    width: 140;
    height: 140;
    background-color: #00CCFF; /* Couleur bleue du cercle */
    border-radius: 50%;
    transition: width 0.5s ease-out, height 0.5s ease-out;
    top: 115%;
    left: 55%;
    transform: translate(-50%, -50%);
    filter: blur(150px); 
    z-index: -1;
}


.bloc2{
    display: flex;
    background-color: #00CCFF;
}
.container2{
    width: 1080px;
    display: flex;
    margin: 0 auto;
}
.container2 img{
    width: 40vw;
}
.container-text{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    text-align: justify;
    padding: 20px 0 20px 40px;
    color: #040d16;

}
.container-text h2{
    font-size: 2rem;
    text-align: left;
}

#donnees-video{
    width: 100vw;
}
.container-table{
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: solid 1px #00CCFF;
    margin-top: 20px;
}
.container-table h1{
    color: white;
    padding: 10px;
    text-align: center;
}

table{
    width: 100%;
    color: white;
}
#montableau_wrapper{
    padding-top: 20px;
    color: white;
}
#montableau{
    width: 1080px;
    padding-bottom: 10%;
    padding-top: 20px;
    color: white;
}
#montableau tr:hover{
    background-color: white;
    color: #051b30;
}
.vide{
    height: 110px;
}
.hero-gal{
    background-image: url(../images/bg-gallerie.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 70vh;
    margin-bottom: 40px;
}
#contact{
    color: white;
    width: 1080px;
    margin: 0 auto;
}
.contact-hero{
    background-image: url(../images/kcb.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 70vh;
}

.container-contact{
    display: flex;
    background-color: #040d16;
    border-radius: 13px;
}
.container-contact img{
    width: 540px ;
    height: 600px;
    border-radius: 0 13px 13px 0;
}
.form{
    margin: 20px;
}
.form h2{
    color: #00CCFF;
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
    padding-bottom: 30px;
}
.en-tete{
    display: flex;
    justify-content: space-between;
}
.champ{
    width: 48%;
}
form{
    width: 500px;
}

label{
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 5px;
}
input{
    height: 30px;
    border: 1px solid white;
    background-color: #040d16;
    color: white;
    border-radius: 4px;
}

textarea{
    height: 150px;
    border: 1px solid white;
    background-color: #040d16;
    color: white;
    border-radius: 4px;
}
input, textarea{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 8px;
    margin-bottom: 20px;
}
#envoyer{
    border: 1px solid #00CCFF;
    color: #00CCFF;
    height: 55px;
    font-size: 1rem;
    margin-bottom: 0;
}
#envoyer:hover{
    background-color: #00CCFF;
    color: white;
    cursor: pointer;
}
.alerte{
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}
.alerte2{
    font-size: 1rem;
    margin-top: 15px;
}
.erreur {
    color: #DC143C;
}

.succes {
    color: #00CCFF;
}

/* ////////////////////////////////////////////////////////////////// */

footer{
    height: auto;
    width: 100%;
    background-color: #040d16;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
}
footer img{
    width: 50px;
    padding-top: 40px;
    padding-bottom: 25px;
    filter: drop-shadow(0 0 1.10rem rgba(0, 204, 255, 0.688));
}
footer p{
    color: white;
    padding-bottom: 5px;
}
.mentions{
    display: flex;
    padding-top: 5px;
    padding-bottom: 30px;
}
.mentions p{
    color: #00CCFF;
}
.mentions a{
    color: #00CCFF;
    text-decoration: none;
}

.imgs{
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    border-bottom: 1px solid #00CCFF;
}
.imgs img{
    border-radius: 8px;
}
.images-block{
    width: calc(94% / 3);
    height: 200px; 
    overflow: hidden;
    margin-bottom: 3%;
    transition: ease-out 0.3s;
}
.gal-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.images-block:hover {
    scale: 1.1;
    transition: ease-in 0.2s ;
    filter: grayscale(100%);
}



#h1-ref{
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}
#ref{
    margin-top: 110px;
}
.bloc1-ref{
    max-width: 1080px;
    margin: 0 auto;
}
.ref-container{
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    max-height: 300px ;
    margin-bottom: 20px;
}
.ref-container img, video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}
.ref-container:hover video, .ref-container:hover img{
    filter: blur(3px) grayscale(35%);
}
.ref-container2:hover img{
    filter: blur(3px) grayscale(35%);
}
.ref-container1{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    max-height: 300px ;
    margin-bottom: 20px;
    overflow: hidden;
}
.ref-container1 img, video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}
.ref-container2{
    width: 50%;
    position: relative;
}
.source {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 80%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: #fff; /* Couleur du texte */
    font-size: 18px; /* Taille de la police */
    z-index: 1; /* Pour s'assurer que le texte est au-dessus de la vidéo */
    transition: opacity 0.3s; /* Ajout d'une transition pour l'opacité */
}
.ref-container:hover .source {
    opacity: 1;
}
.ref-container2:hover .source {
    opacity: 1;
}
.source-b{
    color: #00CCFF;
}

#tapiskc{
    margin-right: 20px;

}
#logokc{
    margin-left: 20px;
}
.img-opa{
    opacity: 0.9;
}
.bloc2-ref



#form-gal {
    width: calc(100% - 40px);
    margin: 20px auto; /* Centrer le formulaire horizontalement */
    padding: 20px;
    /* background-color: #051b30; */
    border-radius: 8px;
    margin-right: 0;
}
#image{
    height: 100%;
    width: 100%;
    opacity: 0;
}
.container-gal{
    width: 55%;
    display: flex;
    justify-content: center;
}
.input-gal{
    position: relative;
    height: 200px;
    margin-bottom: 3%;
    border-style: dashed;
    border-color: white;
    border-radius: 8px;
}
.inside-input{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    align-items: center;
    transform: translate(-50%, -50%);
    color: white;
    pointer-events: none;
}
.material-symbols-outlined{
    padding-bottom: 15px;
    scale: 1.5;
}
#test{
    text-align: center;
    padding-bottom: 20px;
}
.info .material-symbols-outlined{
    color: white;
    margin-right: 5px;
    scale: 1;
    padding-bottom: 0;
}
.info{
    display: flex;
    align-items: center;
    color: white;
    scale: 0.8;
}
#envoyer2{
    color: #00CCFF;
    height: 55px;
    font-size: 1rem;
    margin-bottom: 0;
    /* background-color: #051b30; */
    border-radius: 8px;
    border-color: #00CCFF;
}
#envoyer2:hover{
    background-color:#00CCFF;
    color: white;
    cursor: pointer;
}

.file-info {
    display: none;
}
.file-selected{
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
.file-selected img{
    width: 45px;
    margin-bottom: 20px;
}
.inside-selected{
    display:none;
}



/* /////////////////////////// PARTENAIRE //////////////////////// */
.main-part{
    width: 1080px;
    margin: 0 auto;
    color: white;
}
.principal{
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
}
.principal p{
    width: 1080px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.texte5{
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #00CCFF;
}
.line{
    width: 80%;
    height: 2px;
    max-width: 100%;
    clear: right;
    background-color: #00CCFF;
}
.line2{
    width: 70%;
    height: 2px;
    max-width: 100%;
    clear: right;
    background-color: #00CCFF;
}
.line3{
    width: 63%;
    height: 2px;
    max-width: 100%;
    clear: right;
    background-color: #00CCFF;
}
.line4{
    width: 85%;
    height: 2px;
    max-width: 100%;
    clear: right;
    background-color: #00CCFF;
}
.block_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1080px;
    margin: 30px auto;
}
.block_container2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1080px;
    margin: 30px auto;
    flex-direction: row-reverse;
}
.valentin{
    display: flex;
    align-items: center;
}
.content-container2{
    margin-left: 20px;
}
.image-container2 img{
    width: 300px;
    border-radius: 3%;
}
.titre2{
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom:5px;
}
.texte2{
    margin-bottom: 30px;
    text-align: justify;
}
.texte1{
    margin-bottom: 30px;
    text-align: justify;
}

.button{
    list-style: none;
    text-decoration: none;
    color: #00CCFF;
    border: 2px solid #00CCFF;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: ease-out 0.2s;
}
.button:hover{
    background-color: #00CCFF;
    color: #051b30;
}
.titouan{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
}
.content-container1{
    text-align: right;
    margin-right: 20px;
}
.jm{
    display: flex;
    align-items: center;
}
.thomas{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.liens{
    background-color: #00CCFF;
    height: 200px;
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
}
.container-liens{
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.liens-txt{
    width: 500px;
    color: #051b30;
}
.liens-txt p{
    margin-top: 8px;
    text-align: justify;
    width: 400px;
}
.sae106{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sae106 a{
    text-decoration: none;
    color: #051b30;
    font-weight: bold;
}
.liens-txt h2{
    font-size: 1.8rem;
}
.sae-button{
    /* background-color: #051b30; */
    padding: 12px 16px;
    margin-left: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 3px solid #051b30;
    transition: ease-out 0.2s;
}
.sae-button:hover{
    padding: 12px 16px;
    background-color: #051b30;
    border: 3px solid #051b30;
    color: #00CCFF;
}

.down{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    /* background-color: white; */
    border: 2px solid white;
    position: absolute;
    top: 90%;
    left: 50%;
}
.down img{
    width: 12px;
    top: 72%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.down:hover{
    cursor: pointer;
}

.listp{
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.listp label{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.listp input{
    width: 20px;
    margin-bottom: 10px;

}

.bloc2-ref{
    color: white;
    text-align: center;
    margin-top: 0 auto;
    margin-top: 40px;
    font-size: 1.2rem;
}
.bloc2-ref p{
    margin-bottom: 10px;
}
.bloc2-ref a{
    text-decoration: none;
    color: #00CCFF;
    border-bottom: 1px solid #00CCFF;
}