.button {
    align-items: center;
    background-color: var(--mColor);
    color: var(--white);
    display: flex;
    font-family: var(--ffMBo);
    font-size: var(--fsCorpsLess);
    gap: .5625rem;
    letter-spacing: -.03125rem;
    justify-content: center;
    padding: 1.125rem 1.5625rem .75rem 1.5625rem;
    text-transform: uppercase;
    width: fit-content;
}
.button__arrow {
    margin-top: -.2rem;
}
.button--white {
    background-color: var(--whiteBis);
    border: .0625rem solid var(--mColor);
    color: var(--mColor);
}
.button__arrow--hovered {
    display: none;
}
.button--full {
    width: 100%;
}
.button--filter {
    align-items: start;
    background-color: var(--mColor);
    bottom: 10svw;
    color: var(--white);
    display: flex;
    font-family: var(--ffMBo);
    font-size: var(--fsCorpsLess);
    gap: var(--fsCorpsLess);
    justify-content: center;
    left: 8.5vw;
    padding: 1.125rem 1.5625rem .75rem 1.5625rem;
    position: fixed;
    text-transform: uppercase;
    width: 83vw;
    z-index: 2;
}
.button__contain {
    display: flex;
    flex-direction: column;
    gap: 7.5vw;
}
.button--sColor {
    border-color: var(--sColor);
    color: var(--sColor);
    font-family: var(--ffMRe);
    font-size: var(--fsTitleH3);
    line-height: 1.4375rem;
    padding-block: .9rem .45rem;
    width: 100%;
}
.button--sColor > img {
    margin-top: .1875rem;
}

@media screen and (min-width: 575.98px) {
    .header--agencies .button--full {
        width: 85%;
    }
    .button__contain {
        gap: 5.5vw;
    }
}

@media screen and (min-width: 767.98px) {
    .header--agencies .button--full {
        width: 65%;
    }
    .button__contain {
        gap: 4vw;
        margin-top: 1vw;
    }
}

@media screen and (min-width: 991.98px) {
    .button {
        padding-inline: 2.5rem;
        gap: var(--fsCorpsLess);
        transition: all .25s linear;
    }
    .button:hover {
        background-color: var(--tColorLight);
        border: .0625rem solid var(--mColor);
        color: var(--mColor);
    }
    .button--white:hover {
        background-color: var(--mColor);
        border: .0625rem solid var(--tColorLight);
        color: var(--tColorLight);
    }
    .button:hover {
        gap: 2rem;
        padding-inline: 2rem;
        transition: all .25s linear;
    }
    .button--sColor:hover {
        background-color: var(--white);
        border-color: var(--sColor);
        color: var(--sColor);
        font-family: var(--ffMRe);
        font-size: var(--fsTitleH3);
        line-height: 1.4375rem;
        padding-block: .9rem .45rem;
        width: 100%;
    }
    .button:hover > .button__arrow:not(.button__arrow--hovered) {
        display: none;
    }
    .button:hover > .button__arrow--hovered {
        display: block;
    }
    .button--contact {
        margin-top: 1vw;
    }
    .button--casualDesktop {
        width: fit-content;
    }
    .button--filter {
        display: none;
    }
    .button__contain {
        gap: 3vw;
    }
    .button--sColor {
        width: 100%;
    }
    .button--sColor > img {
        margin-top: -0.25rem;
    }
    .header--join .button--full {
        width: 80%;
    }
}

@media screen and (min-width: 1399.98px) {
    .button__contain {
        gap: 2vw;
    }
}

@media screen and (min-width: 1919.98px) {
    .button--contact {
        margin-top: 2vw;
    }
    .button__contain {
        gap: 1.25vw;
    }
}