html,
body {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #000000;
}

.content {
    padding: 100px 10px 10px;
    margin: auto;
    width: 619px
}

.contact-page .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.contact-page .contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

p,
.graphisme {
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.33em;
    color: #1D8C39;
}

a {
    //text-decoration: none;
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.33em;
    color: #1D8C39;
}

h1 {
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.667em;
    color: #1D8C39;
}

h2 {
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.667em;
    color: #1D8C39;
}

h3 {
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.667em;
    color: #1D8C39;
}

.logoheader svg {
    fill: #f1f1f1;
    transition: color 0.3s ease;
    //background-color: #fff;
}

.logoheader svg:hover {
    fill: #1D8C39;
}

.topbar {
    background-color: #000;
    /* Fond noir */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    /* Centrer le contenu horizontalement */
    align-items: center;
    /* Centrer verticalement le contenu */
    padding: 0 10px;
    height: 70px;
    /* Ajuste si nécessaire */
    z-index: 1000;
}

.topbar-inner {
    display: flex;
    align-items: center;
    padding: 0 10px;
    /* marges de 10px à gauche et droite */
    height: 70px;
    width: 100%;
}

.spacer {
    flex: 1;
}

.topbar a {
    color: #f1f1f1;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar a:hover {
    color: #1D8C39;
}

.logoheader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}


.ma_photo {
    position: relative;
    cursor: pointer;
}

.ma_photo_cachee {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    width: 20vw;
}

.ma_photo:hover .ma_photo_cachee {
    opacity: 1;
}

.dropdown {
    max-width: 48vw;
    max-height: fit-content;
    overflow: hidden;
}

/* Bouton */
.btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1D8C39;
    padding: 014, 0, 0, 0;
}

.btn svg {
    width: 11px;
    height: 11px;
    transition: transform 0.3s ease;
    display: block;
}

.dropdown_content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.dropdown.active .dropdown_content {
    max-height: fit-content;
    opacity: 1;
}

.dropdown.active .btn svg {
    transform: rotate(45deg);
}

.carrousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48vw;
    /* S'adapte à la taille des enfants */
    margin-left: 0;
    /* Aligné à gauche */
    background-color: #1b1b1b;
}

.carrousel-images {
    display: flex;
    //background-color: #f1f1f1;
    width: fit-content;
    /* S'adapte aux SVG */
    height: fit-content;
}

.carrousel-image {
    width: 35vw;
    height: auto;
    display: none;
}

.carrousel-image.active {
    display: block;
}

button {
    background-color: transparent;
    color: #1D8C39;
    border: none;
    font-size: 3rem;
    padding: 0 1rem 0 1rem;
    /* Marge horizontale pour les flèches */
    cursor: pointer;
    z-index: 10;
    position: static;
    /* <-- plus de position absolue */
}

button:hover {
    color: #f1f1f1;
}

.carte {
    display: inline-block;
    width: 20vw;
}

.video_alignement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2vw;
}

.width_video {
    width: 10vw;
}

.lino_aeb {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 48vw;
}

.largeur {
    display: flex;
    gap: 20px;
    /* espace entre les images */
    margin-bottom: 40px;
}

.largeur img {
    width: 22vw;
}

.b-a-ba_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.width_b-a-ba {
    width: 15.3vw;
}

.width {
    width: 48vw;
}


.projet {
    padding: 80px 10px 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cover_prozaczopixan {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 4em;
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.667em;
    color: #1D8C39;
}