footer {
    background-color: #1C024B;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    min-height: 100vh;
}

.footer_container {
    padding-top:50px;
    width: 90%;
    margin: auto;
    padding-bottom: 100px;
}

.store_links {
    width: 100%;
    display: flex;
    margin-top: 10px;
    gap: 10px;
    justify-content: start;
}

.content_footer {
    display: flex;
    width: 80%;
    margin:auto;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer_menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer_menu a:hover {
        color: #e10055
    }

.footer_title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

hr {
    border-color: #3D3D3D;
    width: 100%;
    box-shadow: none;
    outline: none;
    border-style: solid;
    margin-bottom: 50px;
    margin-top: 50px;
}

.socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 0px;
}

.copyrights {
    width: 80%;
    margin: auto;
    color: #bcbcbc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.digital_sign{
    width: 40%;
}

.digital_sign img {
    width: 100%;
}

.logo_and_rights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 70%;
}

.rights_text {
    width: 65%;
}

.links {
    display: flex;
    gap: 10px;
}

    .links a:hover {
        color: #e10055
    }

.content_footer_mobile {
    display: none;
}

.footer_menu_inside{
    display:flex;
    gap:50px;
    width: 70%;
}

.new_footer_menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.download_apps_div{
    width: 40%;
    justify-self: flex-end;
    direction:ltr;
    display:flex;
    flex-direction:column;
}

.hide_mobile {
    display: block;
}

@media only screen and (max-width: 768px) {

    .digital_sign {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .download_apps_div {
        width: 100%;
        justify-self: center;
        direction: ltr;
        display: flex;
        flex-direction: column;
        margin-top:20px
    }

    .hide_mobile{
        display:none;
    }

    .copyrights {
        width: 100%;
        margin: auto;
        color: #b5b5b5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo_and_rights {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile_footer_logo {
        width: 100%;
        min-width:100px;
    }

    .rights_text {
        text-align: center;
        width: 90%;
        margin: auto;
    }

    .store_links {
        width: 100%;
        display: flex;
        margin-top:10px;
        gap: 10px;
        justify-content: center;
    }

    .links {
        display: flex;
        gap: 10px;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
    }

    .content_footer {
        display: none;
    }

    .content_footer_mobile {
        gap: 15px;
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        outline: none;
    }

    .accordion_head {
        display: flex;
        justify-content: space-between;
        outline: none;
        width: 100%;
    }


    .accordion {
        background-color: transparent;
        outline: none;
        border: none;
        color: white;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .accordion:active {
        background-color: transparent;
        outline: none;
        border: none;
        color: white;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

        .accordion:focus {
            background-color: transparent;
            outline: none;
            border: none;
            color: white;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }


    .accordion_title {
        font-size: 18px;
        user-select: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .panel {
        background-color: transparent;
        display: none;
        overflow: hidden;
        flex-direction: column;
        gap: 10px;
        margin-top: 5px;
        margin-left: 7px;
    }

    .divider_footer_mobile {
        width: 100%;
    }

    hr {
        border-color: #3D3D3D;
        width: 100%;
        box-shadow: none;
        outline: none;
        border-style: solid;
        margin-bottom: 10px;
        margin-top: 10px;
    }


    .hr_last {
        border-color: #3D3D3D;
        width: 100%;
        box-shadow: none;
        outline: none;
        border-style: solid;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}