/* ============== FOOTER STYLES ============== */

.footer_page {
    padding: 30px 10px;
    background-color: rgba(43, 43, 43, 1);

}

.footer_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.container_content_footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box_row_content_footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box_content_footer {
    display: flex;
    flex-direction: column;
    gap: 35px;
}


.title_content_footer{
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.box_link_text_content_footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.link_content_footer, .text_content_footer {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
    color: rgba(201, 201, 201, 1);
    transition: var(--transition-all-time);
}

.link_content_footer:hover {
    color: rgba(201, 201, 201, 1);
    text-decoration: underline;
}


.decoration_line_footer_mobile{

    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
}

.decoration_line_footer_tablet {
    display: none;
}

.box_link_bottom_footer {
    display: none;
}

.text_bottom_content_footer {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 1);
}

.text_bold_bottom_content_footer {
    font-family: var(--font-family-base);
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    text-transform: lowercase;
}

@media screen and (min-width: 768px) {
    .footer_page {
        padding: 30px 20px;
    }
    .footer_content {
        gap: 50px;
    }

    .container_content_footer {
        gap: 40px;
    }

    .decoration_line_footer_tablet {
        display: block;
        width: 100%;
        height: 1px;
        background-color: rgba(255, 255, 255, 1);
    }

    .box_row_content_footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .decoration_line_footer_mobile {
        display: none;
    }

    .container_bottom_footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .decoration_line_footer_bottom {
        display: block;
        height: 1px;
        width: 100%;
        background-color: rgba(255, 255, 255, 1);
    }

    .box_link_bottom_footer {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .box_content_bottom_footer {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .decoration_line_footer_bottom_mobile {
        display: none;
    }


    .link_bottom_footer{
        font-family: var(--font-family-base);
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
        vertical-align: middle;
        color: rgba(255, 255, 255, 1);
        transition: var(--transition-all-time);
    }

    .link_bottom_footer:hover {
        text-decoration: underline;
        color: rgba(255, 255, 255, 1);
    }

}

@media screen and (min-width: 1200px) {
    .footer_page {
        padding: 30px 50px;
    }

    .container_content_footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .decoration_line_footer_tablet {
        display: none;
    }

}


@media screen and (min-width: 1600px) {
    .footer_page {
        padding: 30px 120px;
    }
}

/* ============== /FOOTER STYLES ============== */
