#myFooter {
  background-color: #232323;
  color: white;
  padding-top: 70px;
  margin-top: -50px;
  font-size: 16px;
  border-top: 4px solid rgb(20,20,20);
}

@media (min-width: 576px) {
  #myFooter {
    padding-top: 100px;
  }
}

@media (min-width: 1200px) {
  #myFooter .col-xl-auto {
    max-width: 20% !important;
  }
}

#myFooter .footer-copyright {
  background-color: rgb(20,20,20);
  padding-top: 5px;
  margin-top: 10px;
  padding-bottom: 3px;
  text-align: center;
}

#myFooter .footer-copyright p {
  font-size: 14px;
  line-height: 1.4;
  margin: 10px;
  color: #ccc;
}

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

#myFooter li {
  margin-bottom: 15px;
}

#myFooter h2 {
  font-size: 28px;
  text-shadow: 0px 0px 5px black;
  color: #73a0ed;
}

#myFooter h3 {
  font-size: 18px;
  line-height: 1.4;
  color: #8fb5f0;
  font-weight: bold;
  text-shadow: 0px 0px 5px black;
}

#myFooter a {
  color: #c3c3c3;
  text-decoration: none;
  transition: all .3s;
}

#myFooter a:hover, #myFooter a:focus {
  text-decoration: none;
  color: rgb(255,0,0);
  transition: all .3s;
}

#myFooter .social-networks {
  text-align: center;
}

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

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

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

#myFooter .youtube:hover {
  color: #ef1a1a;
}

#myFooter .instagram:hover {
  color: #ff00e6;
}

#myFooter .btn {
  color: white;
  background-color: #b40000;
  border-radius: 5px;
  border: none;
  transition: all .3s;
  padding: 10px 20px;
  min-width: 200px;
}

#myFooter .btn:hover {
  background-color: #ff0000;
  transition: all .3s;
  color: white;
}

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

