.footer_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('../../image/svg/background.svg');
    background-position: center center;
    background-size: cover;
    /* clip-path: polygon(0% 0%, 100% 8rem, 100% 100%, 0% 100%); */
    padding-top: 24rem;
}

.footer_section .background_image {
    background-color: var(--gray);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    bottom: 0;
    position: absolute;
}

.footer_section .background_image img {
    opacity: .6;
    width: 100%;
}

.footer_section .section_header {
    color: var(--white);
    margin-bottom: 4rem;
}

.footer_section .section_header::after {
    background-color: var(--white);
}

.footer_section .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer_section .cards {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 80%;
    background: var(--white_half_opacity);
    backdrop-filter: blur(1rem);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--box_shadow_normal);
}

.content .contact_us {
    width: calc(60% - 1rem);
    display: flex;
    flex-direction: column;
    background: var(--light_blue);
    backdrop-filter: blur(1rem);
    padding: 1rem;
    border-radius: 1rem;
    /* box-shadow: var(--box_shadow_normal); */
}

.contact_us .form_row {
    display: flex;
    flex-direction: row;
}

.content .about_us {
    width: calc(40% - 1rem);
    background: var(--light_blue);
    backdrop-filter: blur(1rem);
    padding: 1rem;
    border-radius: 1rem;
    /* box-shadow: var(--box_shadow_normal); */
}

.about_us .about_us_card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.about_us_card .top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
}

.about_us_card .logo {
    padding: 1rem;
    padding-bottom: .75rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box_shadow_normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
}

.about_us_card .logo img {
    margin-bottom: .5rem;
    height: 5rem;
}

.about_us_card .details {
    width: 100%;
}
.about_us_card .details .description {
    width: 100%;
text-align: center;
font-size: .75rem;
color: var(--blue);
margin-top: .5rem;
}

.enamd {
    padding: 1rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box_shadow_normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
}

.enamd img {
    height: 7.5rem;
}

.markets {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin: 1rem 0rem;
}

.mx_custom {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}

.market_banner {
    width: 49%;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: var(--box_shadow_normal);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.market_banner img {
    width: 60%;
    padding: .5rem;
}

.label_value span svg {
    width: 1.125rem;
    margin-left: .5rem;
    opacity: .5;
}

@media only screen and (max-width: 1140px) {
    .footer_section .cards {
        width: 90%;
    }
    .market_banner img {
        width: 80%;
    }
}

@media only screen and (max-width: 960px) {

    .footer_section .cards {
        flex-direction: column;
    }

    .content .about_us {
        width: 100%;
        margin-bottom: 1rem;
    }

    .content .contact_us {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .about_us_card .top {
        width: 100%;
    }
    .market_banner img {
        width: 50%;
    }

}

@media only screen and (max-width: 720px) {

    .footer_section .content {
        flex-direction: column;
    }

    .about_us .about_us_card {
        margin-top: 0rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .about_us_card .logo {
        /* width: 6rem; */
        /* margin: 0rem 2rem 0rem 5rem; */
        margin-bottom: 0rem;
    }

    .contact_us_form {
        width: 100%;
    }

    .footer_section {
        padding-top: 22rem;
        clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 100%);
    }

    .content .contact_us {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .content .about_us {
        width: 100%;
    }

    .about_us_card .top {
        width: 100%;
    }

    .mx_custom {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }
}

@media only screen and (max-width: 540px) {
    .about_us .about_us_card {
        flex-direction: column;
    }

    .about_us_card .logo {
        /* max-width: 6rem; */
        /* margin: 0rem 1rem; */
        margin-bottom: 0rem;
    }

    .label_value {
        justify-content: center;
    }

    .submit_button {
        width: 100%;
        margin: 1rem 0;
    }
    .contact_us .form_row {
        display: flex;
        flex-direction: column;
    }
}