/* Footer */

#footer {
    color: #971B1F;
    padding: 4em 0;
    text-align: center;
  }
  
    #footer .icons {
      margin: 0 0 4em 0;
    }
  
    #footer .menu a {
      color: inherit;
    }
  
    #footer .copyright {
      font-size: 0.8em;
    }

    .float-end {
        display: flex;
      }

    .float-end a {
        width: 50px;
        height: 50px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        background-color: #971B1F;
        box-shadow: 0 0 20px 10px rgba(0,0,0,0.05);
        margin: 0 20px;
        border-radius: 20%;
        position: relative;
        overflow: hidden;
        transition: transform 0.5s;
      }
      .float-end a .fa {
        font-size: 20px;
        line-height: 50px;
        position: relative;
        z-index: 10;
        transition: color 0.5s;
      }
      .float-end a::after {
        content: '';
        width: 100%;
        height: 100%;
        top: -90px;
        left: 0;
        background: linear-gradient(-45deg, #ec7505, #f80000);
        position: absolute;
        transition: 0.5s;
      }
    
      .float-end a:hover::after {
        top: 0;
      }
    
      .float-end a:hover .fa {
        color: #fff;
      }
      .float-end a:hover {
        transform: translateY(-10px);
      }