.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;
}
.ft_li:first-child .ft_menu_a {
border-right: 1px solid black;
}
.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_li:first-child .ft_menu_a {
border-right: none;
}
.site_credits {
text-align: center;
line-height: 1.4;
}
}