footer {
    background-color: var(--blue-600);
}

.container-footer {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: white;
}

.container-footer>div {
    width: calc(100% / 3 - 15px);
}

.container-footer .logo-box>figure img {
    height: 80px;
}

.container-footer .logo-box>ul {
    margin-top: 20px;
}

.container-footer .logo-box>ul.contact li a {
    line-height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.container-footer .logo-box>ul.sosmed {
    display: flex;
    gap: 12px;
}

.container-footer .logo-box>ul.sosmed figure {
    height: 40px;
    width: 40px;
}

.container-footer .logo-box>ul.sosmed figure img {
    width: 100%;
    height: 100%;
}

.container-footer .menu-box ul {
    margin-top: 20px;
}

.container-footer .menu-box ul li {
    line-height: 30px;
}

.container-footer .menu-box ul li a:hover {
    color: var(--blue-500);
}


.container-footer .service-box ul {
    margin-top: 20px;
}

.container-footer .service-box ul li {
    line-height: 30px;
}

.container-footer .service-box ul li a:hover {
    color: var(--blue-500);
}

.container-footer .address-box p {
    margin-top: 20px;
    text-transform: capitalize;
}

.copyright-box {
    text-align: center;
    line-height: 40px;
    color: white;
}

@media screen and (max-width:960px) {
    .container-footer>div {
        width: calc(100% / 2 - 10px);
    }

    .container-footer>div.address-box {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:720px) {
    .container-footer .logo-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .container-footer>div {
        width: 100%;
        align-self: center;
        text-align: center !important;
    }

    .container-footer {
        width: 100%;
        padding: 20px 40px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}