.footer {
    margin: 10px 0 20px 0;
    /* color: red; */
    background-color: rgba(182, 182, 219, 0.816);
}

.footBody {
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

    .body {
        max-width: 400px;

        h5 {
            font-size: larger;
            margin: 5px;
        }
    }
}

.footerLinks {
    padding: 5px;
    padding-inline-start: 10px;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;

    li+li {
        margin: 15px 0;
    }
}

.footerLink {
    width: 150px;
    display: inline-block;
    text-decoration: none;
    padding: 5px;
    background-color: #3092cf53;
    border-radius: 5px;
    color: rgb(25, 19, 10);

    &:hover {
        text-decoration: underline;
        background-color: #3092cfba;
        color: ivory;
    }
}

.SocialImg {
    width: 30px;
    display: inline-block;
    /* background-color: #0d5bed7d; */
    height: calc(30px - 0px);
    border-radius: 5px;
    padding: 5px;

    img {
        height: 30px;
    }

    &:hover {
        background-color: #679bcb9c;
    }
}

.socialIcons {
    display: flex;
}

.footerfoot {
    width: calc(100% - 10px);
    background-color: #000000;
    text-align: center;
    color: white;
    font-weight: bolder;
    padding: 5px;
}

/* //////////////////////////////////////////////////// */
@media screen and (max-width: 950px) {

    .footBody {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: space-around;

        .body {
            width: 100%;
        }

        .footerLink {
            width: calc(100% - 10px);
        }
    }
}