@import url(./style.css);

/* FOOTER */
.footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* border-top: 1.5px solid var(--dark1); */
    padding: 3rem;
}
.footer .logo .title{
    font-size: 3rem;
}
.footer h3{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.footer i{
    font-size: 2.5rem;
}
.footer p a:hover{
    text-decoration: underline;
}

.footer .div1{
    text-align: left;
}
.footer .div1 p{
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
    margin: 1.5rem 0;
}
.footer .socials h3{
    margin-bottom: 0;
}
.footer .socials i{
    margin-right: 1.5rem;
}
.footer .socials i:hover{
    opacity: .7;
}

.footer .div .apps{
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.footer .div .apps .app{
    width: 100%;
    max-height: 5rem;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1.5px solid darkgreen;
    padding: .5rem 1rem;
}
.footer .div .apps img{
    max-width: 2.5rem;
    margin-right: .5rem;
}
.footer .div .p{
    opacity: .7;
}
.footer .div .apps p{
    font-size: 1rem;
}
.footer .div .apps h4{
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
}

.footer .div .payment{
    margin-top: 2rem;
}
.footer .div .payment p{
    opacity: .7;
}
.footer .div .payment .logos{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0;
}
.footer .div .payment .logos img{
    width: 5rem;
    height: 3rem;
    border-radius: 2.5px;
    margin: 0;
}

.copyright{
    text-align: center;
    padding: 1rem;
}
.copyright p{
    font-family: var(--font2);
    font-size: 1.1rem;
    opacity: .8;
}
.copyright span{
    color: blue;
}

/* FOOTER MEDIA */
@media (max-width: 1239px) {
    .footer{
        grid-template-columns: repeat(2, 1fr);
    }
    .footer .div{
        margin-bottom: 2.5rem;
    }
}
@media (max-width: 650px) {
    .footer{
        grid-template-columns: repeat(1, 1fr);
    }
    .footer .div{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer .div1{
        text-align: center;
    }
    .footer .div .payment{
        text-align: center;
    }
}
@media (max-width: 360px) {
    .footer .div .apps img{
        max-width: 2rem;
        margin-right: .5rem;
    }
    .footer .div .apps p{
        font-size: .8rem;
    }
    .footer .div .apps h4{
        font-size: 1.3rem;
    }
}