/*=====================================
    FOOTER
======================================*/

#footer {

    width: 100%;

    background: var(--color-light-background);

    color: var(--color-black);

}


/*=====================================
    FOOTER CONTENT
======================================*/

.footer-content {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 250px;

    padding: 40px 20px 25px;

}


/*=====================================
    MAILING CARD
======================================*/

.mailing-card {

    width: 426px;

    min-height: 188px;

    padding: 20px 24px 12px;

    border-radius: 24px;

    background: var(--color-white);

}


/*=====================================
    MAILING CARD HEADER
======================================*/

.mailing-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 12px;

}

.mailing-card-header h2 {

    margin: 0;

    color: var(--color-black);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.2;

}


/*=====================================
    MAILING ICONS
======================================*/

.mailing-icons {

    display: flex;

    align-items: center;

    gap: 16px;

}

.mailing-icons button {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 35px;

    height: 35px;

    border-radius: 50%;

    color: var(--color-black);

    font-size: 18px;

}

.mailing-icons button:first-child {

    background: #b14db1;

    color: var(--color-white);

}


/*=====================================
    MAILING FORM
======================================*/

.mailing-form {

    display: flex;

    align-items: center;

    width: 100%;

    height: 49px;

    padding: 4px;

    border: 1px solid #cbd4e2;

    border-radius: 30px;

    background: var(--color-white);

}

.mailing-form input {

    flex: 1;

    min-width: 0;

    height: 100%;

    padding: 0 12px 0 12px;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--color-black);

    font-family: var(--font-primary);

    font-size: 15px;

}

.mailing-form input::placeholder {

    color: #9b9b9b;

}

.mailing-form button {

    flex-shrink: 0;

    width: 70px;

    height: 40px;

    border-radius: 24px;

    background: #cbd5e4;

    color: var(--color-white);

    font-size: 12px;

    font-weight: 700;

}


/*=====================================
    DISCLAIMER
======================================*/

.mailing-disclaimer {

    margin-top: 7px;

    color: #737373;

    font-size: 7.5px;

    line-height: 1.25;

}


/*=====================================
    MAILING CARD BOTTOM
======================================*/

.mailing-card-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 3px;

    color: #777;

    font-size: 8px;

}

.laylo-brand {

    display: flex;

    align-items: center;

    gap: 3px;

    font-size: 10px;

    font-weight: 700;

}

.laylo-brand i {

    font-size: 12px;

}

.drop-link {

    display: flex;

    align-items: center;

    gap: 8px;

}

.drop-link i {

    font-size: 9px;

}


/*=====================================
    FOOTER BOTTOM
======================================*/

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 275px 40px;

}


/*=====================================
    FOOTER SOCIALS
======================================*/

.footer-socials {

    display: flex;

    align-items: center;

    gap: 25px;

}

.footer-socials a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 17px;

    height: 17px;

    color: var(--color-black);

    font-size: 15px;

    transition: opacity 0.2s ease;

}

.footer-socials a:hover {

    opacity: 0.5;

}


/*=====================================
    COPYRIGHT
======================================*/

.footer-copyright {

    color: var(--color-black);

    font-size: 13px;

    font-weight: 700;

    line-height: 1;

}


/*=====================================
    RESPONSIVE
======================================*/

@media (max-width: 1100px) {

    .footer-bottom {

        padding-left: 80px;

        padding-right: 80px;

    }

}


@media (max-width: 700px) {

    .footer-content {

        min-height: 220px;

        padding: 35px 15px 25px;

    }

    .mailing-card {

        width: 100%;

        max-width: 426px;

    }

    .footer-bottom {

        padding: 0 20px 30px;

    }

}


@media (max-width: 450px) {

    .mailing-card {

        padding-left: 18px;

        padding-right: 18px;

    }

    .mailing-card-header h2 {

        font-size: 13px;

    }

    .footer-socials {

        gap: 17px;

    }

}