/* Déclaration des variables de couleur */
:root {
    --primary-color: #ff9800;
    --secondary-color: #002245;
    --text-color: #1C1C1C;
    --white-color: #ffffff;
    --gray-color: #adadad;
}

/* Utilisation des variables de couleur */
.accueil {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("image/imgbg3.jpg");
}

.logoPage {
    width: 15vw;
    margin-bottom: 30px;
    clip-path: ellipse(45% 35%);
}

.underlogo {
    font-size: 3vw;
    font-weight: 700;
    color: var(--white-color);
}

.presentation {
    padding-top: 2%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    width: 75%;
}

.competences {
    padding: 30px 25px;
    position: relative;
    margin-top: 40px;
}

.contact {
    padding: 50px 25px;
    position: relative;
}

@media screen and (max-width: 600px) {
    .contact {
        height: 121vh;
        padding: 380px 25px;
        position: relative;
    }
}

@media screen and (max-width: 370px) {
    .contact {
        height: 180vh;
        padding: 700px 25px;
        position: relative;
    }
}

.transitiondiv.rightone {
    position: absolute;
    width: 30vw;
    height: 100px;
    background-color: var(--primary-color);
    top: -50px;
    right: 5%;
}

.transitiondiv.leftone {
    position: absolute;
    width: 30vw;
    height: 100px;
    background-color: var(--primary-color);
    bottom: -50px;
    left: 5%;
}

.title {
    color: var(--text-color);
    display: inline;
    box-shadow: inset 0 -20px 0 var(--primary-color);
}

.title.white {
    color: var(--white-color);
}

.realisations {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    background-image: url(image/imgbg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.webreal {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.titlereal {
    color: var(--white-color);
    margin-top: 70px;
    margin-bottom: 20px;
}

.img_real {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txtb {
    width: 100%;
    border-bottom: 2px solid var(--gray-color);
    position: relative;
    margin: 30px 0;
}

.txtb input,
.txtb textarea {
    position: relative;
    font-size: 15px;
    color: black;
    border: none;
    background: none;
    width: 100%;
    padding: 5px;
    height: auto;
    z-index: 3;
    outline: none;
    resize: none;
}

.form_btn {
    padding: 10px 60px;
    display: block;
    text-align: center;
    margin: 20px 0;
}

.message_input {
    height: 100px;
}

.formcontact {
    margin: 0 auto;
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 5%;
}

.btn_mail {
    padding: 10px 40px;
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    margin: 0 auto;
    transition: all ease 0.2s;
}

.btn_mail:hover {
    background: var(--primary-color);
}

.quisuisjetext {
    display: block;
    line-height: normal;
    font-size: 20px;
    margin: 20px 0;
}

textarea.input_login {
    resize: none;
}

.item_realisations {
    min-height: 100vh;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titre_real {
    text-align: center;
}

.inner_real {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.photos_real {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
}

.real_text {
    margin-top: 25px;
}

.real_gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.texte_real > .title {
    margin: -15px 0;
}

.texte_real {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.photos_real > img {
    width: 100%;
    margin-bottom: 50px;
}

@media screen and (max-width: 900px) {
    .logo {
        width: 25vw;
    }
    .underlogo {
        font-size: 4vw;
    }
    .quisuisjetext {
        font-size: 20px;
    }
    .presentation {
        width: 100%;
        padding-bottom: 20%;
    }
    .inner_real {
        margin-top: 50px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .item_realisations {
        padding: 100px 0;
    }
    .photos_real {
        flex-basis: 90%;
    }
    .texte_real {
        flex-basis: 90%;
    }
}

@media screen and (max-width: 800px) {
    .logo {
        width: 40vw;
    }
    .underlogo {
        font-size: 6vw;
    }
    .webreal {
        align-items: center;
        justify-content: center;
    }
    .transitiondiv.rightone {
        width: 50%;
    }
    .transitiondiv.leftone {
        width: 50%;
    }
    .quisuisjetext {
        display: block;
        font-size: 15px;
        margin: 15px 0;
    }
}

.cvbutton {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 1vw 1vw;
    margin-top: 1vw;
    margin-right: 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.cvbutton:hover {
    background-color: var(--primary-color);
}

.filters {
    display: flex;
    margin: 15px 0;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.filter {
    color: var(--primary-color);
    padding: 5px 20px;
    border: var(--primary-color) 1px solid;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
}



.filter.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.webreal .active{
    width: 100%;
}

.webreal .delete{
    display: none;
}


.filter:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


    
.embedresize {
    max-width: 560px;
    margin: auto;
}
    
.embedresize div{
    position: relative;
    width: 100%;
}


.embedresize video {
width: 100%;
height: 100%;
}

.embedresize img {
    width: 100%;
    height: 100%;
}

.donnee{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}