:root{
    --primary-color: #DE5B15;
    --secondary-color: #5C5C5C;
    --white: #ffffff;
}

*{
    margin: 0;
    padding: 0;
}

.footer{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 0px 0;
}

.footer-block{
    width: 90vw;
    height: 100px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#footer-block1{
    height: 400px;
}

.f1-block{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;

}

.footer-logo{
    height: 100px;
}

.f1-p1{
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-socials{
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 200px;
}

.footer-socials > a{
    color: #DE5B15;
    font-size: 30px;
}

.f1-block > ul > li{
    list-style-type: none;
}

#f1-block2{
    justify-content: flex-start;
    padding: 30px 0;

}

#f1-block2 > ul{
    display: flex;
    gap: 20px;
    flex-direction: column;
}

#f1-block2 > ul > li > a{
    color: var(--secondary-color);
}

.f1-block2-h1{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.b1-h1{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}



#f1-block4{
    justify-content: flex-start;
    padding: 30px 0;
    gap: 30px;
}

#f1-block4 > ul{
    display: flex;
    flex-direction: column;
    gap: 20px;

}

#f1-block4 > ul > li > a{
    color: var(--secondary-color);

}

.footer-lower{
    height: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-lower-p{
    margin: auto;
    color: white;
}

.footer-lower-p > a{
    color: white;
}

@media screen and (max-width: 900px) {
    .footer{
        height: auto;
        width: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 20px;

    }

    .footer-block{
        flex-direction: column;
        height: fit-content;
        width: 90%;
        justify-content: space-evenly;

    }

    .f1-block{
        width: 100%;
        height: auto;
        text-align: center;
        gap: 50px;
    }

    #footer-block1{
        height: auto;
    }

    .footer-socials{
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-lower-p{
        font-size: 12px;
    }

    
}