@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

main {
    width: 100%;
}

footer {
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #0c96e2;
    box-shadow: 0 16px 70px -8px rgba(0, 0, 0, 0.25);
    border-radius: 20px 20px 0 0;
    transition: background 0.3s linear;
}

.foot-container {
    max-width: 1240px;
    padding: 30px 40px;
    margin: auto;
}

.content_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.profil .logo_area {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profil .logo_area img {
    height: 132px;
    width: 300px;
    border-radius: 10px;
}

.logo_area .logo_name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 1rem;
    color: #000;
}

.desc_area {
    max-width: 320px;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.desc_area p {
    color: #fff;
    font-weight: 400;
    line-height: 28px;
}

.service_area {
    display: flex;
    margin-right: 10px;
}

.service_header {
    margin-right: 140px;
}

li.service_name {
    color: #c51f30;
    font-weight: 600;
}

.service_header li a {
    color: #fff;
    padding-bottom: 1px;
    font-weight: 400;
}
             
.service_header li a:hover {
    color: #fff;
}

.service_header li {
    margin-bottom: 10px;
}

.service_header i:hover{
    color: #fff;
}

hr{ 
    height: 1px;
    border: none;
    background-color: #fff;
    margin-bottom: 1rem;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.copy_right {
    color: #fff;
    display: flex;
    align-items: center;
}

.copy_right span{
    margin-left: 8px;
    font-weight: 400;
    letter-spacing: 0.135rem;
}

.tou a {
    color: #aeaeae;
    margin-left: 1.5rem;
}

.tou a:hover {
    color: #fff;
}

/*-------Media Screen Dimension--------*/

@media (max-width: 768px) {
    .content_footer {
        flex-direction: column;
        align-items: center;
    }

    .profil .logo_area {
        align-items: center;
        text-align: center;
    }

    .logo_area .logo_name {
        font-size: 1.25rem;
        margin: 0;
    }

    .service_header {
        margin-right: 0;
        text-align: center;
    }

    .footer_bottom {
        flex-direction: column;
        align-items: center;
    }

    .tou {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .foot-container {
        padding: 20px;
    }

    .profil .logo_area img {
        height: auto;
        max-width: 200px;
    }

    .logo_area .logo_name {
        font-size: 1rem;
    }

    .desc_area {
        max-width: 100%;
        text-align: center;
    }

    .service_area,
    .service_header {
        flex-direction: column;
        align-items: center;
        margin: 0;
        text-align: center;
    }

    .footer_bottom {
        font-size: 0.75rem;
    }
}