@media (min-width: 992px) {
    .rounded-lg-3 { border-radius: .3rem; }
  }

  #more {display: none;}

  .hero{
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  
  .social-links {
    display: flex;
  }
  .social-links a {
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    color: #971B1F;
    box-shadow: 0 0 20px 10px rgba(0,0,0,0.05);
    margin: 0 20px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
  }
  .social-links a .fa {
    font-size: 22px;
    line-height: 50px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
  }

  .social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: linear-gradient(-45deg, #ed1c1c, #ffec17);
    position: absolute;
    transition: 0.5s;
  }

  .social-links a:hover::after {
    top: 0;
  }

  .social-links a:hover .fa {
    color: #fff;
  }
  .social-links a:hover {
    transform: translateY(-10px);
  }