/*
The footer bottom part stylesheet
*/

.ft_bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--main-black);
}
.ft_ul {
    display: flex;
}
.site_credits,
.ft_bottom .ft_menu_a {
    font-size: var(--fs-ft-bottom);
    color: var(--main-black);
    padding: 0 .5rem;
}
@media all and (max-width: 1400px) {
    .ft_bottom {
        padding: 1rem 0;
    }
}
@media all and (max-width: 1100px) {
    .ft_bottom {
        padding: .5rem 0;
    }
}
@media all and (max-width: 768px) {
    .ft_bottom {
        flex-direction: column;
        gap: .3rem;
    }
}
@media all and (max-width: 350px) {
    .ft_ul {
        flex-direction: column;
        align-items: center;
    }
    .ft_ul span {
        display: none;
    }
    .site_credits {
        text-align: center;
        line-height: 1.4;
    }
}