footer {
    background-color: var(--black);
    padding: 35px 63px;
    position: relative;
    color: var(--white);
    font-size: var(--font-small);
}

footer .inner_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;

}

footer .left_section{
    justify-content: flex-start;
}

footer .left_section .upper {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

footer .left_section .office_details_wrapper, footer .left_section .social_media_wrapper {
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
}


footer .left_section .office_details_wrapper a {
    color: var(--white);
    text-decoration: none;
}


footer .left_section .social_media_wrapper .icon_fb, footer .left_section .social_media_wrapper .icon_ig {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn_wtsapp_m {
    display: none;
}

footer .right_section {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-direction: column;
}

/* .right_section .license_1 label, .right_section .license_2 label {
    margin-right: 5px;
} */


footer .right_section .license_1, footer .right_section .license_2 {
    margin-left: auto;
}

@media screen and (max-width: 1280px) {
    footer {
        padding: 15px 30px;
    }

    footer .inner_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    footer .left_section {
        order: 2;
    }
    
    footer .right_section {
        /* flex-direction: row; */
        order: 1;
    }

    footer .left_section .office_details_wrapper {
        order: 1;
    }
    
    footer .left_section .social_media_wrapper {
        order: 2;
    }

    footer .right_section .license_1, footer .right_section .license_2 {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .btn_wtsapp_m {
        display: block;
        position: fixed;
        bottom: 119px;
        width: 50px;
        height: 50px;
        right: 15px;
        z-index: 50;
        background-image: url('./../../../images/icon-wtsapp.svg');
        /* background-image: var(--icon-wtsapp); */
        margin-left: auto;
        /* margin-bottom: 10px; */
        cursor: pointer;
    }
    footer {
        padding: 15px 4px;
    }
}

@media screen and (max-width: 580px) {
    footer .inner_wrapper {
        gap: 13px;
    }
    
    
}