.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding-block: 2.5rem;
    font-size: 1.2rem;
    color: aquamarine;
    background-color: #111;
    margin-top: 20%;
}

.discord_logo {
    width: calc(90.92px / 2);
    height: calc(102.452px / 2);
    transition: 0.2s ease-in-out;
}

.discord_logo:hover {
    text-decoration: underline;
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.bmac {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5F7FFF;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-family: sans-serif;
    margin-top: 20px;
    transition: 0.2s;
}

.bmac:hover {
    background-color: #4469ff;
    border-radius: 8px;
    transform: scale(1.05);
    transition: 0.2s;
}

.discord_link {
    color: aquamarine;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.discord_text:hover {
    color: rgb(36, 173, 134);
    gap: 6px;
    text-decoration: underline;
    font-size: 1.2rem;
    transition: 0.2s;
}

.left_footer {
    justify-self: flex-start;
    flex-direction: row;
    text-decoration: none;
    margin-left: 2vw;
    text-align: left;
    color: #bbbbbb;
}

.left_footer a {
    color: #dfdfdf;
    text-decoration: none;
    transition: 0.2s ease;
}

.left_footer a:hover {
    color: #969696;
    text-decoration: underline;
    transition: 0.2s ease;
}

.left_footer_petit {
    justify-self: center;
    text-decoration: none;
    text-align: center;
    color: #bbbbbb;
    margin-bottom: 2%;
    text-wrap-mode: nowrap;
    text-overflow: ellipsis;
    margin-top: 2vh;
}

.left_footer_petit a {
    color: #dfdfdf;
    text-decoration: none;
    transition: 0.2s ease;


}

.left_footer_petit li {
    text-align: left;
    line-height: normal;
}

.left_footer_petit a:hover {
    color: #969696;
    text-decoration: underline;
    transition: 0.2s ease;
}

.middle_footer {
    justify-items: center;
    margin-top: 2vh;
}

.right_footer {
    justify-self: flex-end;
    justify-content: center;
    justify-items: center;
    position: static;
    margin-right: 2vw;
}

.right_footer iframe {
    box-shadow: #04229b;
    box-shadow: 1px;

}

.juridiction a {
    background-size: contain;
    position: static;
    color: white;
    margin-block: 2vh;
    text-decoration: none;
    display: inline-flex;
    gap: 20px;
    width: fit-content;
    text-underline-offset: 0.4vh;
    text-decoration: underline;
    transition: 0.2s ease;
}

.juridiction a:hover {
    color: rgb(163, 163, 163);
    transition: 0.2s ease;
}


@media (max-width: 600px) {
    *:hover {
        transition-delay: 0s;
    }

    * {
        box-sizing: border-box;
    }

    body,
    html {
        overflow-x: clip;
        height: 100%;
        width: 100%;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .footer {
        flex-direction: column-reverse;
        grid-template-columns: 1fr auto 1fr;
        justify-items: center;
        justify-content: center;
        justify-self: center;
    }

    .footer div {
        margin-bottom: 2vh;
        justify-content: center;
        justify-items: center;
        justify-self: center;
    }
    .right_footer{
        position: none;
        display: none;
        opacity: 0;
        margin-top: 100rem;
    }
}