footer {
    margin-top: 3rem;
    color: white;
  }
  
  .footer1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00000077;
  }
  
  .Social {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
  }
  
  .Social .btn:hover {
    background-color: rgba(34, 58, 136, 0.822);
    transition: 0.5s ease-in;
    color: white;
    border-radius: 0.5rem;
  }
  
  .footer2 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .footer2 .row {
    justify-content: space-around;
  }
  
  .footer2_block {
    text-align: start;
  }
  
  .footer3 {
    background-color: #00000077;
    letter-spacing: 0.1rem;
  }
  
  @media screen and (max-width: 770px) {
    .footer1{
      flex-direction: column;
    }
    .Social{
      margin: 0;
      justify-content: center;
      padding: 0;
    }
    footer, .footer2 p{
      text-align: center;
    }
  }