
/* footer ----------------------------------------------------------------------*/

footer {
    /* position: absolute;
    bottom: 0;
    left: 0;
    right: 0; */
    background-color: #111111;
    height: auto;
    padding-top: 40px;
    width: 100%;
    color: white;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

footer h3 {
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
}

footer p {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
}

footer .socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

footer .socials li {
    margin: 0 10px;
}

footer .socials li a {
    text-decoration: none;
    color: #ffffff;
    border: 1.1px solid #ffffff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 20%;
    display: inline-block;
}

footer .footer-menu {
    margin-bottom: 20px;
}

footer .footer-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-menu ul li {
    padding-right: 10px;
    display: block;
}

footer .footer-menu ul li a {
    color: #cfd2d6 ;
    border: 1.3px solid #ffffff;
    border-radius: 50px;
    padding: 6px 15px;
    text-decoration: none;
}

footer .footer-menu ul li a:hover {
    color: #27bcda ;

}

footer .footer-bottom {
    background-color: #000000;
    margin-top: 10px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

footer .footer-bottom p {
    text-align: center;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

footer .footer-bottom a {
    color: #44bae8;
    font-size: 16px;
    text-decoration: none;
}

.social-icon {
    width: 100%;
}

@media (max-width: 650px) {
    footer .footer-menu ul {
        flex-direction: column;
    }
    footer .footer-menu li {
        margin-bottom: 20px;
    }
}