.contactsSection{
  
  justify-items: left;
    padding: 20px;
    max-width: 90%;
    margin: 20px;
    margin-bottom: 120px;
    
    
  }

  .contacts {
    
    gap: 15px;
    margin-top: 15px;
    display: flex;
    justify-items: center;
  }
  
  .contact {
    width: 60px;
    height: 60px;
    background-color: rgb(63, 78, 79);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-items: center;
    align-items: center;
    
  }
  
  .contact img {
    
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    display: flex;
    justify-items: center;
    align-items: center;
    
  }
  @media (min-width: 1024px) {
    .contactsSection .contacts{
        padding-bottom: 250px;
    }

    .contacts {
        
        gap: 20px; 
      }
      
      .contact img {

        max-width: 40px;
        max-height: 40px;
        border-radius: 50%;
      }
  }
 