.cardSocial {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    gap: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
  }
  
  /* for all social containers*/
  .socialContainer {
    width: 52px;
    height: 52px;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
  }
/* instagram*/
.containerOne:hover {
  background-color: #E4405F;
  transition-duration: .3s;
}
/* Facebook*/
.containerTwo:hover {
  background-color: #1877F2;
  transition-duration: .3s;
}
/* Twiter*/
.containerThree:hover {
  background-color: #00acee;
  transition-duration: .3s;
}
/* Youtube*/
.containerFour:hover {
  background-color: #c4302b;
  transition-duration: .3s;
}
/* Whatsapp*/
.containerFive:hover {
  background-color: #25D366;
  transition-duration: .3s;
}
  
  .socialContainer:active {
    transform: scale(0.9);
    transition-duration: .3s;
  }
  
  .socialSvg {
    width: 17px;
  }
  
  .socialSvg path {
    fill: rgb(255, 255, 255);
  }
  
  .socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  