#footer {
    background-color: #343A40;
    color: white;
    padding-top: 30px;
}

#footer .footer-copyright {
    background-color: #3c3d41;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
}

#footer .row {
    margin-bottom: 60px;
}

#footer .navbar-brand {
    margin-top: 45px;
    height: 65px;
}

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

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

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

#footer h2 a{
    font-size: 50px;
    text-align: center;
    color: #fff;
}

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

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


#footer .social-networks a {
    font-size: 17px;
    color: #f9f9f9;
    padding: 1px;
    transition: 0.2s;
}

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

#footer .facebook:hover {
    color: #0077e2;
}

#footer .google:hover {
    color: #ef1a1a;
}

#footer .twitter:hover {
    color: #00aced;
}

#footer .vk:hover {
    color: #4c75a3;
}
#footer .ok:hover {
    color: #ee7808;
}

#footer .linkedin:hover {
    color: #0077B5;
}

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

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;
}

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

