

footer{
    width: 100%;
    background: #232323;
    position: relative;
}

footer .inner-container{
    padding: 70px 0px;
    max-width: 1300px;
    align-items: flex-start;
}

footer .brand{
    flex-shrink: 0;
    width: 100px;
}

footer .footer-group .heading{
    margin-bottom: 50px;
    position: relative;
}

footer .subscribe-heading h2,
footer .footer-group .heading h2{
    font-weight: var(--fw-medium);
    font-size: var(--fs-large);
    color: var(--white);
}

footer .footer-group .heading::before{
    content: "";
    position: absolute;
    width: 20%;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 0;
}

footer ul li{
    list-style-type: none;
    padding: 14px 0px;
    display: flex;
    align-items: center;
}

footer ul li a,
footer .subscribe-heading p{
    font-size: 12px;
    color: var(--white);
    font-weight: var(--fw-light);
}

footer ul li a:hover{
    color: var(--primary);
}

footer .social-links{
    margin: 25px auto;
    gap: 15px;
}

footer .social-links .social{
    width: 45px;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    transition: 0.5s;
}

footer .social-links .social:hover{
    scale: 1.3;
    background-color: transparent;
    border: 1.65px solid var(--white);
}

footer .social-links .social.twitter{
    padding: 10px;
}

footer .subscribe-heading{
    padding: 15px 0px;
}

footer .subscribe-heading p{
    margin-top: 10px;
}

footer .subscribe{
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    min-width: 300px;
    max-width: 400px;
    margin: 10px 0px;
    background: var(--white);
    padding: 3px;
}

footer .subscribe input{
    width: 100%;
    height: 45px;
    outline: none;
    border: none;
    background: transparent;
    padding-left: 20px;
    font-weight: 500;
}

footer .subscribe ::placeholder{
    color: var(--txt-light-black);
    font-weight: var(--fw-medium);
    font-size: 12px;
}

footer .subscribe button{
    width: 150px;
    height: 45px;
    border-radius: 50px;
    font-size: var(--fs-small);
}

footer .copyright{
    width: 100%;
    border-top: 1px solid rgba(153, 153, 153, 0.1);
}

footer .copyright .inner-container{
    padding: 20px 0px;
}

footer .copyright p{
    font-size: 10px;
    font-weight: 400;
    color: var(--white);
}

footer .copyright p:last-child{
    text-decoration: underline;
    cursor: pointer;
}



@media screen and (max-width: 970px) {


    footer{
        width: 95%;
    }
    
    .copyright{
        padding: 8px 25px;
    }
    
    footer footer-section:first-child{
        display: none;
    }
    
    
}





@media screen and (max-width: 700px) {


    footer{
        flex-wrap: wrap;
        padding: 30px 0px 50px 0px;
    }
    

    footer .brand h1,
    footer .brand h1 span{
        font-size: 23px;
    }
    

    footer footer-section:first-child{
        display: block;
        width: 100%;
        flex-shrink: 0;
        margin-bottom: 30px;
    }

    footer footer-section:nth-child(2),
    footer footer-section:nth-child(3){
        width: 50%;
    }

    footer footer-section:nth-child(4){
        width: 100%;
        margin-top: 20px;
    }

    .subscribe{
        width: 100%;
        min-width: unset;
    }

    .copyright{
        padding: 8px 15px;
    }

}