@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500;700&display=swap');
* {
    color: #11468F;
    box-sizing: border-box;
}

body {
    padding-top: 6em;
}

div {
    gap: 30px;
    padding-bottom: 3em;
}


body h2, .texte h3, .end .title {
    text-align: center;
    font-size: 5vh;
    font-family: "Poppins";
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
}

body p, .texte p, .end .dev {
    text-align: center;
    font-size: 3vh;
    font-family: "Montserrat";
    justify-content: center;
    align-items: center;
}

.photos {
    justify-content: center;
    align-content: center;
    width: 30%;
}
img {
    justify-self: center;
    align-items: center;
    max-width: 100%;
    width: auto;
    height: auto;
}

.texte {
    width: 70%;
}

/* FIRST PART */
#first {
    padding-right: 5em;
    display: flex;
    flex-direction: row-reverse;
}

#first .texte {
    justify-content: center;
    align-content: center;
    text-align: center;
    padding-left: 5em;
}

#first img {
    border-radius: 100px 10px 100px 10px;
}


/* SECOND PART */
#sec {
    padding-left: 5em;
    display: flex;
    flex-direction: row;
}

#sec .texte {
    justify-content: center;
    align-content: center;
    text-align: center;
    padding-right: 5em;
}

#sec img {
    border-radius: 10px 100px 10px 100px
}

.oneMoreThing {
    padding-left: 5em;
    padding-right: 5em;
}

span {
    font-weight: 700;
}

@media screen and (min-width: 1025px) {
    .toggle-icon {
        display: none; /* Cacher les icônes + et - */
    }
    .dev {
        display: block !important; /* Toujours afficher le texte associé */
    }
}

@media screen and (max-width: 763px) {
    #first, #sec {
        flex-direction: column;
        padding-left: 0em;
        padding-right: 0em;
        justify-content: center;
        align-content: center;
        text-align: center;
    }

    #first img, #sec img {
        border-radius: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #first .texte, #sec .texte {
        padding-left: 0px;
        padding-right: 0px;
    }
    .photos, .texte {
        width: 100%;
        padding-left: 5em;
        padding-right: 5em;
    }

    .oneMoreThing {
        padding: 0;
    }

    
}
