/** (start) footer section **/

.footer {
    margin: 0 0;
    width: 100%;
    background-image: url(/images/background2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
}

footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 4rem 2rem;
    width: 100%;
    -webkit-box-shadow: 0 -4px 2px rgba(180, 154, 74, 1);
    box-shadow: 0 -4px 2px rgba(180, 154, 74, 1);
}

footer h3 {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    margin: 1rem 0;
    margin-bottom: 2rem;
    font-family: var(--montserrat);
    font-size: 20px;
}

footer h3::before {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 5rem;
    height: 0.125rem;
    background: var(--metallic-sunburst);
}

footer li {
    list-style: none;
    font-weight: 600;
}

footer a {
    text-decoration: none;
    font-weight: 600;
}

footer .connect-with-us {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

footer .connect-with-us .logo {
    padding: 8px 0;
}

footer .connect-with-us .logo img {
    height: 6rem;
    width: auto;
}

footer .connect-with-us .socials {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}

footer .connect-with-us .socials li {
    padding: 8px;
    list-style: none;
}

footer .connect-with-us .socials li a {
    text-decoration: none;
    color: var(--metallic-sunburst);
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
    border-radius: 50px;
    -webkit-box-shadow: 0 0 0.25rem rgba(169, 141, 64, 1);
    box-shadow: 0 0 0.25rem rgba(169, 141, 64, 1);
}

footer .connect-with-us .socials li a i {
    color: var(--metallic-sunburst);
}

footer .connect-with-us .socials li img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    -webkit-box-shadow: 0 0 0.25rem rgba(180, 154, 74, 1);
    box-shadow: 0 0 0.25rem rgba(180, 154, 74, 1);
    transition: all 0.4s ease-in-out;
}

footer .connect-with-us .socials .facebook img,
footer .connect-with-us .socials .linkedIn img {
    -webkit-box-shadow: 0 0 0.25rem rgba(59, 89, 152, 1);
    box-shadow: 0 0 0.25rem rgba(59, 89, 152, 1);
}

footer .connect-with-us .socials .twitter img {
    -webkit-box-shadow: 0 0 0.25rem rgba(29, 161, 242, 1);
    box-shadow: 0 0 0.25rem rgba(29, 161, 242, 1);
}

footer .quick-links li {
    line-height: 2;
    display: flex;
    align-items: center;
}

footer .quick-links li img {
    height: 28px;
    width: 28px;
    margin: 0 4px;
}

footer .quick-links li a {
    color: var(--black);
    font-size: 18px;
}

footer .contact-us li {
    display: flex;
    flex-flow: row nowrap;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 8px;
}

footer .contact-us li img {
    height: 36px;
    width: 36px;
    margin-right: 4px;
}

footer .contact-us li a {
    color: var(--black);
}


/** (end) footer section **/

.copyright {
    width: 100%;
    color: var(--black);
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 1rem;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
}

.copyright .glass1 {
    margin: 4px 0;
}


/*******************
*
*
* Responsive CSS
*
*
********************/


/********************
* 
* extra large screens, tv 
*
*********************/

@media only screen and (min-width:1200px) {
    footer {
        flex-flow: row wrap;
    }
    footer>* {
        margin: 1rem auto;
    }
}


/********************
* 
* desktop, large screens 
*
*********************/

@media only screen and (min-width:1025px) and (max-width:1200px) {
    footer {
        flex-flow: row wrap;
    }
    footer>* {
        margin: 1rem auto;
    }
    footer .connect-with-us .logo img {
        height: 4rem;
        width: auto;
    }
}


/********************
* 
* small screens, laptops 
*
*********************/

@media only screen and (min-width:769px) and (max-width:1024px) {
    footer {
        flex-flow: row wrap;
    }
    footer>* {
        margin: 1rem auto;
    }
    footer .connect-with-us .logo img {
        height: 4rem;
        width: auto;
    }
}


/********************
* 
* Ipads, tablets 
*
*********************/

@media only screen and (min-width:481px) and (max-width:768px) {
    footer {
        flex-flow: row wrap;
        width: 98%;
    }
    footer>* {
        margin: 1rem auto;
    }
    footer .connect-with-us .logo img {
        height: 4rem;
        width: auto;
    }
}


/********************
* 
* Mobile devices 
*
*********************/

@media only screen and (min-width:320px) and (max-width:480px) {
    footer {
        flex-flow: row wrap;
        width: 98%;
        padding: 2rem;
    }
    footer>* {
        margin: 1rem auto;
    }
    footer .connect-with-us .logo img {
        width: 300px;
        height: auto;
    }
    footer .connect-with-us .logo img {
        height: 3rem;
        width: auto;
    }
}