.footer {
    background-color: var(--color-4);
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    padding-bottom: 60px;
}

.footer p {
    margin: 0.5rem;
}
@media screen and (min-width: 1024px) {
    .footer{
        margin-bottom: 0;
    }

}

@media screen and (min-width: 480px) {
    .footer p {
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;

    }

}

.footer-container{
    display: flex;  
    justify-content: center;
    flex-direction: column;
}

.footer-title{
    color: var(--white);
    font-size: 1.5rem;
}

.footer-title-logo{
    display: flex;  
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.footer-logo{
    display: flex; 
    align-items: center;
    margin-right: 0.5rem;
}

.footer-section {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-direction: column;
}

@media screen and (min-width: 480px) {
    .footer-section {
        flex-direction: row;
    }
}

.footer-service-title {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin: 1rem;
}

.footer-contact-title {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin: 1rem;
}

.footer-contact {
    margin-top: 0.5rem;
}


@media screen and (min-width: 480px) {
    .footer-service {
        width: 50%;
    }

    .footer-contact {
        width: 50%;
        margin-top: 0;
    }
}

.footer-sub-service {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-sub-contact {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-contact-email {
    margin-top: 2rem;
}

.service-category {
    width: 52%;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 480px) {
    .service-category {
        width: 50%;
        display: flex;
        justify-content: center;
    }
}

.contact-category {
    display: flex;
    justify-content: center;
    margin: 0.5rem;
}

@media screen and (min-width: 480px) {
    .contact-category {
        margin: 1rem;
    }
}

.separator-container{
    display: flex;
    justify-content: center;
}

.separtator-footer{
    width: 20%;
    height: 1px;
    background-color: white;
    margin-top: 0.8rem;
}

/* .contact-content{
    color: var(--white);
} */

.footer-sub-contact > a{
    color: var(--white);
}