.footer-section{
    width: 100%;
    background: var(--primary-color);
    color: var(--text-color-wh);
}

.footer{
    width: 100%;
    padding: 2%;
}

.footer-logo{
    margin-right: 15px;
}

.address{
    padding: 3% 0 3% 5%;
}

.address a{
    text-decoration: none;
    color: var(--teritary-color);
    gap: 10px;
}

.address a i{
    font-size: 25px;
}

.address a p{
    font-size: 16px;
    letter-spacing: 1.7px;
}

.footer-links{
    /* width: 45%; */
    padding: 0 15px;
}

.footer-links ul{
    list-style: none;
}

.footer-links ul li{
    margin: 15px 0;
}

.footer-links ul li a{
    text-decoration: none;
    color: var(--text-color-wh);
}

.footer-links ul li a:hover{
    color: var(--teritary-color);
}

.footer-contact{
    gap: 15px;
    flex-wrap: wrap;
    width: 30%;
}

.footer-contact a{
    text-decoration: none;
    color: var(--teritary-color);
}

.footer-contact h4{
    text-decoration: underline;
}

.social-links{
    gap: 10px;
}

.social-links a i{
    font-size: 24px;
}

/* copyright */
.copyright{
    text-align: center;
    background: var(--secondary-color);
    color: var(--text-color-wh);
}

/* mobile - view */
@media screen and (max-width: 875px){
    .footer-section{
        padding: 3%;
        margin-top: 25%;
    }
    .footer{
        flex-wrap: wrap;
    }
    .footer-links{
        width: 35%;
    }
    .footer-contact{
        width: 100%;
        padding: 5%;
    }
}

@media screen and (max-width: 545px){
    .footer-section{
        margin-top: 35%;
    }
    .footer-links{
        width: 100%;
        padding-left: 5%;
    }
    .address a p{
        font-size: 14px;
    }
}

/* large screen - view */
@media screen and (min-width: 1540px) {
    .footer-section{
        margin-top: 5%;
    }
    .footer a{
        font-size: 20px;
    }
    .logo-img{
        width: 60px;
    }
    .logo-img img{
        width: 60px;
    }
    .logo h2{
        margin-left: 25px;
    }
}
@media screen and (min-width: 1800px) {
    .address a p{
        font-size: 1.3rem;
    }
    .footer-links ul li a,
    .footer-contact a{
        font-size: 1.3rem;
    }
    .footer-contact h4,
    .social-links a i{
        font-size: 1.5rem;
    }
}