footer {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;

    & p {
        margin: 0;
    }

    .footer-top,
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;

        @media only screen and (max-width: 1110px) {
            gap: 2rem;
        }
    }

    .footer-top {
        /* padding-left: var(--body-padding-lateral) !important; */
        padding-left: 7vw !important;
        /* padding-right: var(--body-padding-lateral) !important; */
        padding-right: 7vw !important;
        align-items: flex-start;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        background-color: #38579c;
        color: white;

        & a {
            text-decoration: none;
            color: white;
            transition: all ease 0.3s;

            &:hover {
                transform: translateX(1rem);
                color: #ac8d56;
            }
        }

        .footer-contacts,
        .footer-info-1,
        .footer-info-2,
        .footer-social {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            flex: 1 1 auto;

            @media only screen and (max-width: 476px) {
                & {
                    align-items: center;

                    .links,
                    & p,
                    & a {
                        align-items: center;
                        text-align: center;
                    }
                }
            }

            .links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;

                & a {
                    &:hover {
                        & {
                            color: #ac8d56;
                        }
                    }
                }
            }
        }

        .footer-info-1,
        .footer-info-2,
        .footer-social {
            & p {
                font-weight: bold;
            }
        }

        .schedule {
            & p:first-child {
                font-weight: bold;
            }
        }

        .phone {
            display: flex;
            flex-direction: column;

            & span {
                font-size: 30px;
                font-weight: bold;
            }
        }

        .title {
            text-transform: uppercase;
        }

        .button {
            font-weight: 900;
            padding: 0.8rem 2rem;
            border-radius: 3rem;
            border: 2px solid white;
            text-transform: uppercase;
            cursor: pointer;
            transition: all ease 0.3s;

            &:hover {
                background-color: white;
                /* transform: translateX(1rem); */

                a {
                    color: #38579c;
                }
            }
        }

        .footer-social {
            .links {
                flex-direction: row;

                & a {
                    width: 2rem;
                    height: 2rem;
                    background-color: white;
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-decoration: none;
                    transition: all ease 0.3s;

                    &.fa-instagram::before,
                    &.fa-facebook::before {
                        font-weight: 600;
                        font-size: 20px;
                        color: #38579c;
                    }

                    &:hover {
                        background-color: #ac8d56;
                        transform: translateY(-0.5rem);

                        &.fa-instagram::before,
                        &.fa-facebook::before {
                            color: white;
                        }
                    }
                }
            }
        }
    }

    .footer-bottom {
        flex-direction: column;

        .footer-links,
        .copyright,
        .footer-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 1.5rem 1rem;
            color: #38579c;
        }

        .footer-logo {
            padding-bottom: 1rem;

            & img {
                max-height: 2.5rem;
            }
        }

        .footer-links {
            padding-top: 0;
            font-size: 14px;
            gap: 0.5rem;
            color: #38579c;

            & a {
                color: #38579c;
                text-decoration: none;
                text-align: center;
                transition: all ease 0.3s;

                &:hover {
                    transform: translateY(-0.5rem);
                    color: #ac8d56;
                }
            }
        }

        .copyright {
            /* padding-inline: var(--body-padding-lateral) !important; */
            padding-inline: 7vw !important;
            border-top: 1px solid #38579c;
            font-size: 14px;
            text-align: center;
            justify-content: space-between;
        }
    }
}
