@import "style.css";

footer {
    padding: 0 100px;
    background: var(--dark-variant-main);
    color: var(--white);
}

footer ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .top {
    padding-top: 50px;
    text-align: center;
}

footer .top img {
    height: 60px;
}

footer .top h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 400;
}

footer .top p {
    text-align: center;
    width: 80%;
    padding-left: 20%;
}

footer .top .socials {
    /* max-width: 450px; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 50px;
}

footer .top .socials i {
    font-size: 3.6rem;
    padding: 0 50px;
}

footer .top .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer .top .menu li {
    font-size: 2.4rem;
    padding: 0 30px;

}

footer .bootom {
    padding: 10px 0;
    margin-top: 30px;
    border-top: 1px solid var(--light-grey);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer .bootom ul li {
    padding: 10px;
    color: var(--white);
}

footer .bootom .copyright li {
    border-right: 1px solid var(--white);
}

footer .bootom .copyright li:nth-child(3) {
    border-right: none;
}

@media screen and (max-width:768px) {
    footer {
        padding: 0 50px;
    }

    footer .top p {
        width: 100%;
        padding-left: 0;
    }

    footer .bootom {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width:480px) {
    footer {
        padding: 0 30px;
    }

    footer .top .menu {
        display: none;
    }
}