/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.footer_container {
    width: 100vw;
    height: 45vh;
    position: relative;
    background: #000000;
}

.comp_foot img {
    width: 50px;
}

.text_foot {
    width: 100%;
    padding: 2rem 10rem 0 10rem;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.text_foot h3 {
    color: #ccff01;
}

.text_foot a {
    color: #fff;
}

.general_foot {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.general_foot ul li {
    padding: 0.2rem 0;
}

.resources_foot ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.resources_foot ul li {
    padding: 0.2rem 0;
}

.sc_foot ul {
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: space-between;
}

.resources_foot ul li a:hover,
.general_foot ul li a:hover {
    color: #ccff01;
}

@media (max-width: 991px) {
    div{
        margin: 0.5rem 0 0 0;
    }
    .footer_container {
        width: 100vw;
        height: 100%;
        position: relative;
        background: #000000;
    }

    .text_foot {
        width: 100vw;
        padding: 1rem;
        flex-direction: column;
        color: #fff;
    }
    .general_foot {
        display: flex;
        justify-content: space-between;
    }
    .sc_foot {
        width: 25%;
    }
    .sc_foot ul {
        margin: 1rem 0 0 0;
        display: flex;
        justify-content: space-between;
    }
}