@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,800&display=swap');

footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    margin-top: 20px;
    background: #111;
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    margin-top: 150px;
}

.footer-container{
    width: 100%;
}

.sec{
    margin-right: 30px;
}

.sec.aboutus{
    width: 75%;
}

h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

h2:before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-blue);
}

footer p{
    color: #999;
    line-height: 25px;
}
.sci{
    margin-top: 20px;
    display: flex;
    padding: 0;
}

.sci li{
    list-style: none;
}

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

.sci li a:hover{
    background: var(--color-blue)
}

.sci li a i{
    color: #fff;
    font-size: 20px;
}

.quickLinks{
    position: relative;
    width: 45%;
    
}

.quickLinks ul{
    padding-left: 0;
}

.quickLinks ul li {
    list-style: none;
    margin-bottom: 5px;
}

.quickLinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
.quickLinks ul li a:hover{
    color: #fff;
}

.contact{
    width: 35%;
}

.contact .info{
    position: relative;
    padding-left: 0;
}

.contact .info li{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    /* line-height: 20px; */
}

.contact .info li span:nth-child(1){
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact .info li span{
    color: #999;
}

.contact .info li a{
    color: #999;
    text-decoration: none;
}

.contact .info li a:hover{
    color: #fff;
}

.copyrightText{
    width: 100%;
    background: #181818;
    padding: 8px 100px;
    text-align: center;
    color: #999;
}


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

    .quickLinks ul li {
        margin-right: 0;
        margin-bottom: 12px;
        
    }

    .footer-container .sec.aboutus,
    .quickLinks,
    .contact{
        width: 100%;
    }

}









































