.footer {
    position: relative;
    width: 100%;
    background-color: #375977;
    text-align: center;
    padding: 10px 0;
    margin-top: 8%;
}

.footer-text {
    color: white;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.foot-logo {
    width: 25%;
}

.foot-expand {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 30px 0;
}

.social-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facebook, .youtube {
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube {
    margin: 10px 10px 0 0;
}

.facebook span, .youtube span {
    color: white
}

.fa-facebook-square, .fa-youtube {
    font-size: 40px;
    color: rgb(255 255 255);
    margin-right: 15px;
}

.foot-span {
    width: 40%;
    color: white;
    text-align: start;
}

.foot-span p {
    margin: 0;
}


@media screen and (max-width:900px) {
    .foot-logo {
        width: 20%;
    }

    .foot-span {
        width: 50%;
    }

    .facebook, .youtube {
        flex-direction: column;
        margin: 0;
    }

    .facebook span, .youtube span {
        margin-top: 10px;
    }
}

@media screen and (max-width:400px) {
    .foot-expand {
        flex-direction: column;
    }

    .foot-logo {
        width: 80%;
    }

    .foot-span {
        width: 90%;
        margin: 20px auto;
    }

    .foot-span p {
        font-size: 14px;
    }

    .footer-text {
        margin-top: 30px;
    }

    .facebook, .youtube {
        flex-direction: row;
        margin: 0;
    }

    .youtube {
        margin: 5px 10px 0 0;
    }

}