.footer {
    padding: 3rem 0;
    background-color: #17619E;
}

.footer .container {
    max-width: 865px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer_logo {
    width: 160px;
    border-radius: 0;
}

.footer_title {
    display: inline-flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-bottom: 10px;
}

.footer_content {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.company_info{
    display: inline-flex;
    width: 50%;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5px;
}

.company_info span{
    display: inline-block;
    width: fit-content;
    margin-right: 20px;

    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0;
    color: white !important;
}

.company_info span:not(:nth-child(3), :last-child):after {
    content: "｜";
    padding-left: 10px;
    font-weight: 100;
    color: rgba(255,255,255,0.3)
}

.footer_end {
    display: inline-flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 50px;

    padding-top: 10px;
}

.footer .copyright {
    font-size: 12px;
    color: white;
}

@media screen and (max-width: 1200px) {

    .footer {
        padding: 3rem 0 5rem;
    }

    .footer .container {
        height: auto;
        margin: 0 auto 30px;
        padding: 0 50px;
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .footer_end {
        flex-direction: column-reverse;
    }

    .footer .copyright {
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 860px) {
    .footer_content {
        flex-direction: column;
        gap: 50px;
    }


    .company_info{
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .footer .container {
        padding: 0 20px 0 30px;
    }

    .footer_logo {
        width: 110px;
        margin-right: 20px;
    }

}