.custom-footer {
    background-size: cover;
    padding: 12rem 0 4rem 0;
    background-repeat: no-repeat;
}

.newsletter-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;

    h3 {
        margin: 0;
        color: #3f2c75;
        font-weight: 700;
        font-size: 46px;

        @media (max-width: 1200px) {
            font-size: 35px;
        }
    }

    p {
        margin: 0;
        color: #3f2c75;
        font-size: 21px;
    }

    form {
        display: flex;
        gap: 1.6rem;

        input {
            background: #fff;
            height: 55px;
            border-radius: 12px;
        }

        button {
            height: 55px;
            background: #d83764;
            border-radius: 99px;

            svg {
                width: 14px;
            }
        }
    }
}

@media (max-width: 1200px) {
    .newsletter-footer {
        padding: 0 2rem;

        h3 {
            font-size: 32px;
            text-align: center;
        }

        p {
            font-size: 18px;
            text-align: center;
        }

        form {
            flex-direction: column;
            width: 100%;
            max-width: 400px;
            gap: 1rem;

            input {
                width: 100%;
            }

            button {
                width: 100%;
            }
        }
    }
}

@media (max-width: 768px) {
    .newsletter-footer {
        h3 {
            font-size: 24px;
        }

        p {
            font-size: 16px;
        }

        form {
            max-width: 100%;
        }
    }

    @media (max-width: 1200px) {
        .infos-footer {
            flex-direction: column;
            gap: 2rem;
            margin: 3rem 2rem;
            padding: 2rem 0 0 0;

            div {
                width: 100%;
            }

            .info-section1 img {
                width: 50px;
            }

            .info-section2 img {
                width: 70px;
            }

            .info-section3 {
                p,
                a {
                    text-align: center;
                    font-size: 14px;
                }
            }
        }
    }

    @media (max-width: 768px) {
        .infos-footer {
            margin: 2rem 1.5rem;
            gap: 1.5rem;

            .info-section1 img {
                width: 40px;
            }

            .info-section2 img {
                width: 60px;
            }

            .info-section3 {
                p,
                a {
                    font-size: 12px;
                }
            }
        }
    }
}

.infos-footer {
    display: flex;
    gap: 1.6rem;
    justify-content: space-between;
    padding: 3rem 0 0 0;
    border-top: 1px solid #c3c3c3;
    margin: 4rem;

    div {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 0.8rem;
        justify-content: center;
    }

    .info-section1 {
        img {
            width: 42px;
            object-fit: contain;
        }
    }

    .info-section2 {
        img {
            width: 60px;
            object-fit: contain;
        }
    }

    .info-section3 {
        p,
        a {
            margin: 0;
            color: #3f2c75;
            font-size: 13px;
        }

        a {
            text-decoration: underline;
            cursor: pointer;
            font-weight: 600;
        }
    }
}
