:root {
    --primary: #01bdbe;
    --secondary: #f39780;
    --light: #fff;
    --shadow: 0 1px 5p rgba(104, 104, 104, 0.8);
}

.footer {
    background-color: var(--primary);
    width: 100%;
    bottom: 0;
    left: 0;
    /* padding: 20px; */
    min-height: 300px;
    /* margin-top: 80px; */
}

.footer-container {
    padding: 80px;
}

/* .footer-col {
    opacity: .6;
}

.footer-col>p {
    opacity: .4;
} */

.footer-col {
    float: left;
    width: 25%;
    color: var(--light);
}

.footer-container ::after {
    content: '';
    display: table;
    clear: both;
}

.social {
    display: flex;

}

.fab {
    font-size: 25px;
    color: var(--light);
    padding-right: 15px;
}

@media screen and (max-width: 768px) {
    .footer-col {
        display: block;
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-col:first-child {
        margin-top: 60px;
    }

    .footer {
        height: 450px;
        padding: 20px;
        margin-top: 0;
    }

    .footer-container {
        padding-bottom: 20px;
        padding: 10px;
    }

    .fab {
        margin-right: 20px;
    }

    .social {
        display: flex;
        flex-direction: row;
    }
}