/* FOOTER STYLING */
footer {
    margin: 20px 0 0;
    padding: 15px;
    background-color: #03045E;

    color: #fff;
}

.quick-links,
.contact-us {
    margin-top: 25px;
}

.quick-links a,
.contact-us a {
    color: #fff;
}

.social-links a {
    display: inline-block;

    text-decoration: none;
    text-align: center;
    font-size: 1.7rem;
}

.social-links a:hover {
    transform: scale(1.1);

    transition: all 0.4s ease;
}

.social-links a > i {
    width: 35px;
    height: 35px;
    padding: 8px;
    margin-right: 8px;
    border-radius: 50%;
}

footer h3 {
    text-transform: uppercase;
    font-size: 1.8rem;
}

.quick-links ul {
    list-style-type: none;
    padding: 0;
}

.quick-links ul li {
    padding: 6px 0;

    font-size: 1.4rem;
}

.quick-links a {
    font-size: 1.8rem;
    text-decoration: none;
    padding-bottom: 3px;
}

.quick-links a:hover {
    border-bottom: 2px solid #fff;

    transition: border-bottom 0.4s ease;
}

.contact-us {
    display: flex;
    flex-direction: column;
}

.contact-us span {
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;

    font-size: 1.8rem;
}

footer i {
    padding-right: 8px;
}

.copyright p {
    font-size: 1.6rem;
    font-weight: 600;
}

@media screen and (min-width: 640px){
    footer {
        padding: 3rem 4.5rem 0;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: stretch;
    }

    footer>section {
        width: 25%;
    }

    .quick-links{
        margin: 0;
        margin-bottom: 2rem;
    }

    .footer-nav ul{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .company-details {
        width: 43%;
    }

    .copyright {
        width: 100%;
    }
}