// ------------  [footer]  ------------
.footer {
    background-color: $primary;
    width: 100%;
    height: 1100px;
    margin-top: -50rem;
    position: relative;
    z-index: 1;

    &__content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        &--logo {
            margin-top: 53rem;
            width: 26rem;
            height: 4rem;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        &--social {
            margin-top: 5.5rem;
            display: flex;
            gap: 1rem;

            i {
                font-size: 3.4rem;
                color: $black;
            }

        }

        &--text {
            max-width: 70rem;
            width: 100%;
            margin: 0 auto;
            margin-top: 4.5rem;
            text-align: center;
            img {
                width: 9rem;
                height: 9rem;
                object-fit: contain;
                margin-bottom: 4.5rem;
            }

            p {
                font-weight: 400;
                font-size: 1.5rem;
                line-height: 2.3rem;

            }
        }
    }
    &__image{
        position: absolute;
        bottom: 2rem;
        right:0;
        max-width: 70rem;
        width: 100%;

        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}