@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*body{
display: flex;
justify-content: flex-end;
align-items: center;
min-height: 100vh;
flex-direction: column;
background: white;
}*/

footer{
    padding-top: -20%;
    position:sticky;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: -2%;
}

footer .container .sec{
    margin-right: 30px;

}

footer .container .sec.aboutus{
    width: 18%; 
}

footer .container h2{
    color: black;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container h2::before{ /*FOOTER HEADING UNDERLINE*/
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: green ;
}

footer p{
    color: black;
}

.sci{
    margin-top: 20px;
    display: flex;
}

.sci li{
    list-style: none;
}

.sci li a{
    display: inline-block;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    color: black;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    
}

.sci li a:hover{
    background: green;
}

.quicklinks{
    width: 25%;
    margin-left: -18%;
}

.quicklinks ul li{
    list-style: none;
}

.quicklinks ul li a{
    color: black;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quicklinks ul li a:hover{
  
    color: green;
}

.info{
    width: 25%;
    margin-left: -35%;
}

.info ul li{
    list-style: none;
}

.info ul li a{
    color: black;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.info ul li a:hover{
  
    color: green;
}

.contact{
    position: relative;
    margin-left: -30%;
}

.contact .cinfo{
    position: relative; 
}

.contact .cinfo li{
    display: flex;
    margin-bottom: 16px;
}

.contact .cinfo li span:nth-child(1){
    color: black;
    font-size: 20px;
    margin-right: 10px;

}

.contact .cinfo li span{
    color: black;
}

.contact .cinfo li a{
    color: black;
    text-decoration: none;
}

.contact .cinfo li a:hover{
    color: green;
}

.copyrightText{
    width: 100%;
    background: white;
    color: black;
    padding: 8px 100px;
    text-align: center;
    margin-bottom: -2vh;
}



footer .social-icon,
footer .fmenu{
    position: relative;
    display: flex;
    justify-content: left;
    align-items:flex-start;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social-icon li,
footer .fmenu li{
    list-style: none;
}

footer .social-icon li a{
    font-size: 2em;
    color: black;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social-icon li .ic-fb{
  color: #3b5998;
}

footer .social-icon li .ic-in{
    color: #007bb6;
  }

  footer .social-icon li .ic-insta{
    color: #bc2a8d;
  }

  footer .social-icon li .ic-yt{
    color: red;
  }

footer .social-icon li a:hover{
    transform: translateY(-10px);
}

footer .fmenu li a{
    font-size: 1.1em;
    color: black;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

footer .fmenu li a:hover{
    opacity: 1;
    transform: translateY(-5px);
}

footer .paystrip{
    justify-content: center;
    align-items: center;
    margin-left: 8vw;
}

footer .paystrip li{
    list-style: none;
    display: inline-block;
    padding: 5px;
    margin-left: 8px;
    margin-top: 3vh;
    margin-bottom: 2vh;
}


footer .paystrip li img{
    width: 75px;
    height: 35px;
}




@media (max-width: 991px) {
    footer{
        padding: 40px;
    }
    footer .container{
        flex-direction: column;
    }

    footer .container .sec{
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    footer .container .aboutus{
        max-width: 75%;
    }
    
    footer .container .sec, .quicklinks, .contact, .info{
        margin-left: 10%;
    }
    
    footer .container .sec.aboutus, .quicklinks, .contact, .info{
        width: 100%;
    }
    
    .copyrightText{
        padding: 8px 100px;    
    }

    
    .paystrip img{
        width: 50%;
    }
 }

 @media (max-width: 720px){

    footer h2{
        font-size: 20px;
    }

   footer p{
        font-size: 14px;
    }

    footer a{
        font-size: 14px;
    }

    footer span{
        font-size: 14px;
    }

 }

 @media (max-width: 600px){
    footer{
        padding: 40px;
    }
    footer .container{
        flex-direction: column;
    }

    footer .container .sec{
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    footer .container .aboutus{
        max-width: 75%;
    }
    
    footer .container .sec, .quicklinks, .contact, .info{
        margin-left: 10%;
    }
    
    footer .container .sec.aboutus, .quicklinks, .contact, .info{
        width: 100%;
    }
    
    .copyrightText{
        padding: 8px 100px;
        
    }

    .paystrip img{
        width: 50%;
    }
 }
 }

