footer{
    color: #d8d5d5;
    padding-top: 50px;
    margin-top: 100px;
}
.footer-content{
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    justify-content: space-between;
    > div{
        width: 25%;
    }
}
.Navigation,
.Contact_info,
.popular_course{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    > div>  ul > li {
        gap: 10px;
        display: flex !important;
        align-items: center !important;
        justify-content: start !important;
        margin-top: 15px;        
        /* contact info */
        >p{ 
            margin: 0%;
        }
    }
}
.f_title {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 20px;
}
/* admission care logo section */
.footer-logo {
    cursor: pointer;
    color: #e9e3e3;
    font-size: 25px;
    font-weight: 900;
    font-family: "Oswald", serif;
    line-height: 20px;
}
.footer-desc{
    font-size: 15px;
    margin-top: 20px;
}
/* social icons */
.social{
    gap: 20px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    > .social-link{
        padding: 10px;
        padding-bottom: 9px;
        display: flex;
        color: #fff;
        align-items: center;
        justify-content: center;
        background-color: #3B3B44;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        -o-border-radius: 100px;
        > i{
            font-size: 20px;
        }
    }
    > .social-link:hover{
        background-color: #03A19E;
    }
}
/* admission care logo section */

/* Navigation */
.navigate-link{
    color: #d8d5d5;
    margin-left: -8px;
    margin-top: 2px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.navigate-link:hover{
    color: #03A19E;
}
/* Navigation */


.popular_course{
    > div>  ul > li {
        font-family: "Noto Sans Bengali", serif;
    }
}
.payment{
    margin-top: 30px;
    padding-bottom: 10px;
    > img{
        max-height: 50px;
        width: 100%;
    }
}
.footer_bottom{
    color: #d8d5d5;
    font-size: 13px;
    background-color: #3B3B44
}

@media (max-width: 850px){
    /* footer */
    footer > div {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        > div{
            min-width: 100%;
        }
    }
    .Contact_info,
    .Navigation,
    .popular_course{
        margin-top: 35px;
        align-items: start !important;
    }
    .footer_bottom{
        font-size: 12px;
    }
}