/** (start) footer section **/
.footer {
    margin: 0 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
    -webkit-box-shadow: 0 -4px 2px rgba(254, 196, 1, 1);
    box-shadow: 0 -4px 2px rgba(254, 196, 1, 1);
}

footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 1rem;
    width: 100%;
    background-image: url(/images/5.png);
    background-position: center;
}

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(--primaryRed);
}

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 p {
    margin-top: 0.25rem;
    font-weight: 900;
    font-size: 1rem;
    color: var(--primaryGrey);
}

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

footer .connect-with-us .logo img {
    height: 4rem;
    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: #ffffff;
    background-color: var(--primaryRed);
    height: 2rem;
    width: 2rem;
    padding: 0.5rem;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.25rem;
    font-size: 1rem;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    border: solid 0.125rem transparent;
    transition: all 0.4s ease-in-out;
}

footer .connect-with-us .socials li a i {
    color: #fff;
}

footer .connect-with-us .socials li a:hover {
    color: var(--primaryYellow);
    background-color: #ffffff;
    border: solid 0.125rem var(--primaryYellow);
}

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

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(254, 196, 1, 1);
    box-shadow: 0 0 0.25rem rgba(254, 196, 1, 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(211, 41, 5, 1);
    box-shadow: 0 0 0.25rem rgba(211, 41, 5, 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;
}

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

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

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

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

footer .footer-contact-us li .icon {
    width: 36px;
    height: 36px;
    margin-right: 8px;
    display: flex;
    text-align: center;
    background-color: var(--primaryRed);
    border-radius: 50%;
    transition: all 0.4s;
}

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


/** (end) footer section **/

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


.copyright a {
    color: var(--primaryRed);
    font-weight: 900;
}


/*******************
*
*
* 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;
    }
}


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

@media only screen and (min-width:769px) and (max-width:1024px) {
    footer {
        flex-flow: row wrap;
    }
    footer>* {
        margin: 1rem 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;
    }
}


/********************
* 
* 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 .icon{
        width: 300px;
        height: auto;
    }
}