footer {
    display: flex;
    justify-content: space-between;
    background-color: black;
    padding-left: 25px;
    padding-right: 25px;
}

footer p {
    text-align: left;
}

.logos_footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logos_footer img {
    width: 100px;
    height: 100px;
}

.sns2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}


.logos_footer .sns2 img {
    width: 28px;
    height: 28px;
}

.logos_footer .sns2 {
    justify-content: flex-start;
    gap: 10px;
}

.contacts {
    font-size: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contacts a {
    display: flex;
    gap: 5px;
}

.contacts p {
    margin: 0;
}

.contacts span {
    font-family: Montserrat;
    text-decoration: underline;
    font-weight: bold;
}

.contacts img {
    width: 30px;
    height: 30px;
    align-self: center;
}

footer .phone {
    display: none;
}

@media (max-width: 609px) {
    footer {
        flex-direction: column-reverse;
        align-items: center;
        padding-top: 10px;
        gap: 20px;
    }

    footer p {
        text-align: center;
    }

    .not_phone {
        display: none;
    }

    footer .phone {
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .phone img {
        width: 100px;
        height: 100px;
    }

    .sns2 {
        align-self: center;
    }
}
