@charset "UTF-8";
/* CSS Document */

#myFooter {
    background-color: rgba(167, 158, 148, 1.0);
    color: white;
}

#myFooter .footer-copyright {
    background-color: rgba(64, 60, 56, 1.0);
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
}

#myFooter .footer-copyright p {
    margin: 10px;
    color: #ccc;
}

#myFooter ul {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.7;

}

#myFooter h5 {
    font-size: 18px;
    color: white;
    font-weight: 400;
    margin-top: 30px;
}

#myFooter p {
    font-size: 0.8em;
    color: white;
    font-weight: 100;
    margin-top: 20px;
}

.myFooter p {
    font-size: 0.8em;
    color: white;
    font-weight: 100;
    margin-top: 20px;
}


#myFooter a {
    color: #d2d1d1;
    text-decoration: none;
}

#myFooter a:hover, #myFooter a:focus {
    text-decoration: none;
    color: white;
}

#myFooter .myCols {
    text-align: center;
}

#myFooter .social-networks a {
    font-size: 32px;
    margin-right: 5px;
    margin-left: 5px;
    color: #f9f9f9;
    padding: 10px;
    transition: 0.2s;
}

#myFooter .social-networks a:hover {
    text-decoration: none;

}

@media screen and (max-width: 767px) {
    #myFooter {
        text-align: left;
    }
}


/* CSS used for positioning the footers at the bottom of the page. */
/* You can remove this. */


html {
    height: 100% !important;
}

body {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    height: 100%;
}

.content {
    flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    min-height: 200px;
}

#myFooter {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
}