.footer {
    width: 100%;
    min-height: 200px ;
    background-color: var(---colorOnPrimary);
    padding: 0 20px;
    margin-top: 4rem;

}

.row{
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
    align-items: center;
}

.footer .footer_bg{
    margin-bottom: 2rem;
    border-radius: 10px;
}

.footer .init {
    display: flex;
    flex-direction: column;
}

.footer .about {
    gap: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.init .branded_text {
    color: var(---colorOnSecondary);
}

.about span {
    font-size: 20px;
    color: #fff;
}

.about .logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100px;
    gap: 1rem;
}

.logo img{
    width:100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
}
.about p {
    font-size: 16px;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    color: #f1f1f1;
}
.about .contact_details {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.about .contact_details div {
    display: flex;
    flex-direction: row;
    height: 30px;
    align-items: center;
    font-size: 15px;
    gap: 0.5rem;
}
.about .contact_details div a {
    display: flex;
    flex-direction: row;
    height: 30px;
    align-items: center;
    font-size: 15px;
    gap: 0.5rem;
    color: var(---colorOnSecondary);
}

.about .contact_details i {
    height: 30px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    color: var(---colorOnSecondary);
}

.about .contact_details p {
    display: flex;
    /* background-color: aquamarine; */
    height: 30px;
    margin: 0;
    flex-direction: column;
    justify-content: center;
}
.footer a {
    color: #f1f1f1;
}

.about .contact_details i {
    height: 30px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    color: var(---colorOnSecondary);
}

.about .follow_text {
    margin-bottom: 0rem;
}
.about .socials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
}
.socials i {
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    font-size: 15px;
}
.links {
    display: flex;
    flex-direction: column;
    gap:2rem;
    justify-content: space-between;
}
.footer .links .important-links {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.important-links h6 {
    color: #f1f1f1;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.important-links a {
    color:#cecece;
    font-size: 14px;
}
.important-links div {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.footer .base{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.base .follow{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;

}

.follow_text{
    font-size: 18px;
    color: #f1f1f1;
}

.follow .socials{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;

}

.socials i{
    font-size: 20px;
    color: #f1f1f1;
}
.footer .copyright {
    max-width: 280px;
    font-size: 14px;
    margin-top: 2rem;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;

}

@media screen and (min-width: 1024px){

    .footer{
        padding: 0 4rem;
    }

    .footer .init {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .init .about {
        width: 35%;
    }

    .init .branded_text {
        font-size: 13px;
    }

    .links {
        width: 65%;
    }

    .links {
        display: flex;
        flex-direction: row;
        margin-top: 2rem;
        justify-content: space-between;
    }

    .footer .base{
        min-height: 100px;
        flex-direction: row;
        margin-top: 2rem;
        border-top: 1px solid #505050;
        justify-content: space-between;

    }

    .footer .copyright {
        max-width: none;
        border-top: none;
        margin-top: 0;
    }

    .base .follow{
        margin-top: 0;
    }

    .follow_text{
        display: none;
    }

    .about .logo {
       width: 100%;
    }

    .links{
        justify-content: flex-end;
        gap: 2rem;
        margin-left: 4rem;
    }

    .socials i{
        font-size: 22px;
    }

    
    .footer .links .important-links{
        min-width: 120px;
    }

}

@media screen and (min-width:1200px){
    .footer{
        width: 100%;
        padding: 0 6rem;
    }

    .links{
        gap: 4rem;
        margin-left: 2rem;
    }


}
