/*Footer Styles*/
footer{
    background-color: var(--bg-body2);
    /* background-image: linear-gradient(to left,#0fe3ff, #0fffdb,#0fffdf,#0ffbff); */
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer-inside {
    width: 100%;
    max-width: var(--common-width);
    display: flex;
   
    padding: 0px 30px;
}
.footerCol1, .footerCol2, .footerCol3{
    margin: 30px 0px;
    width: 33.33%;
    height: 100%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    

}
footer a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}
footer a:active{
    color: crimson;
}
/*Footer Styles*/
.copyrightContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: linear-gradient(to left,#0fe3ff, #0fffdb,#0fffdf,#0ffbff); */
    background-color: var(--bg-body2);
    padding: 0 20px;
}
.copyrightContainer-inside{
    padding: 0 30px;
    width: var(--common-width);
    height: 120px;
    
    font-weight: 600;
    
    color: white;
    
}

/*Socials Container*/




@media screen and (max-width: 1080px){
        /* FOOTER  */

        .footer-inside {
            width: 100%;
            display: flex;
            padding: 0px 30px;
            flex-direction: column;
            
        }
    
        .footerCol1, .footerCol2, .footerCol3 {
            margin: 30px 0px;
            width: 100%;
            padding-right: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }
    
    
        /* FOOTER  */
}