footer {
    position: absolute;
    bottom: 0;
    padding: 20px 0 20px 0;
    width: 100%;
    min-height: 150px;
    /* background-color: rgb(248, 248, 248); */
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    -webkit-animation: gradbar 15s ease infinite;
    -moz-animation: gradbar 15s ease infinite;
    animation: gradbar 15s ease infinite;
}


/* KEYFRAME ANIMATIONS */

@-webkit-keyframes footer {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes footer {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes footer {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

#footer-wrapper {
    display: flex;
    padding-bottom: 20px;
    font-size: 15px;
}

#copyright {
    align-content: center;
    font-size: 15px;
}

#footer-center-subscription {
    text-align: center;
    /* font-size: 12px; */
    flex: 50%;
}

#footer-social-media {
    flex: 50%;
}

#footer-social-media-icons {
    display: flex;
    text-align: center;
    justify-content: center;
}

.footer-social-media-icon img {
    width: 30px;
    margin-right: 5px;
}

input[type=email].footer-sub {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    border-radius: 25px;
}

input[type=email].footer-sub:focus {
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    box-shadow: 2px 2px 2px #ccc;
}

.messages li {
    list-style-type: none;
    text-decoration: none;
    text-align: center;
}

.messages .error {
    color: red;
}

.messages .success {
    color: blue;
}

.section-title {
    color: #5A7690;
    margin: 0 20px 20px 20px;
}

@media only screen and (max-width: 720px) {
    #footer-social-media {
        flex-basis: 100%;
    }
    #footer-center-subscription {
        flex-basis: 100%;
        padding-bottom: 20px;
    }
    #footer-wrapper {
        flex-direction: column;
    }
    /* .center_subscription {
        width: 100%;
    }
    .center_subscription input[type=email] {
        width: 100%;
    } */
}