/*FOOTER*/
footer{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 250px;
    font-family: "Glacial Indifference";
    flex-wrap: wrap;
}

.footer-1{
    display: flex;
    align-items: center;
    width: 30%;
    height: 100%;
}


.footerNav{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.footerNavLink{
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
    font-family: "Glacial Indifference";
    font-size: 15px;
}

.footerNavLink a{
    color: #000000bb;
    text-decoration: none;
    margin-right: 1rem;
}

.underlinedFooterLinkNav{
    width: 0;
    height: 1px;
    background-color: #000000bb;
    transition-duration: .4s;
}

.underlinedFooterLinkNav_Active{
    transition-duration: .4s;
    width: 100%;
}  

.footer-2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30%;
    height: 100%;
    border-left: 1px solid #00000085;
    border-right: 1px solid #00000085;
}

.titleFollowFooter{
    font-family: "Glacial Indifference";
    font-size: 20px;
    color: #000000bb;
    margin-bottom: 1rem;
}

.jtpFooter{
    font-family: "Brittany";
}

.boxSN{
    display: flex;
    width: 90%;
    justify-content: space-around;
}

.SNImage{
    width: 25px;
    filter: grayscale(100%);
    transition-duration: .4s;
}

.SNImage:hover{
    transform: scale(1.1);
}

.footer-3{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
}

.logoFooter{
    width: 150px;
}

.footer-4{
    border-top: 1px solid #00000085;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 80px;
}

.terms, .policy, .copyright{
    text-decoration: none;
    color: #000000bb;
    font-size: 13px;
    transition-duration: .4s;
}

.terms:hover, .policy:hover, .copyright:hover{
    color: #000;
}

.logoCopy{
    font-family: "Brittany";
}


@media (max-width: 820px) {
    .footer{
        flex-wrap: wrap;
    }

    .footerPart{
        width: 100%;
        height: auto;
        padding: 2rem 0;
    }

    .footerNavLink{
        font-size: 25px;
    }

    .titleFollowFooter{
        font-size: 25px;
    }

    .boxSN{
        justify-content: center;
        gap: 2rem;
    }

    .SNImage{
        width: 50px;
    }

    .logoFooter{
        width: 200px;
    }

    .footer-4{
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        row-gap: 1rem;
    }

    .terms, .policy, .copyright{
        font-size: 20px;
    }


}

@media (max-width: 540px) {
    .footerNavLink{
        font-size: 20px;
    }

    .footerPart{
        padding: 1rem 0;
    }

    .SNImage{
        width: 35px;
    }

    .terms, .policy, .copyright{
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .footerNavLink{
        font-size: 15px;
    }

    .titleFollowFooter{
        font-size: 20px;
    }

    .SNImage{
        width: 25px;
    }

    .logoFooter{
        width: 150px;
    }

    .terms, .policy, .copyright{
        font-size: 10px;
    }
}