.site{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.socialwrapper{
  display:flex;
  height: 22vh;
  flex-direction: row;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
}
.fab {
margin: auto;

}
.social {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.social:hover {
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
  transition: all ease 0.5s;
  -moz-transition: all ease-in 0.5s;
  -webkit-transition: all ease-in 0.5s;
  -o-transition: all ease-in 0.5s;
}

.social.facebook {
  color: #4267B2 !important;
}

.social.instagram {
  color: #E1306C !important;
}

.social.tiktok {
  color: #000000 !important;
}

.social.whatsapp {
  color: #25D366 !important;
}

.bg-ico {
  display: flex;
  background-color: #FFF;
  width: 150px;
  height: 150px;
  line-height: 90px;
  margin: 0 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
  
}
.bg-ico:hover{
     box-shadow: 0 5px 15px -5px rgba(0,0,0,0.8);
}

#facebook:hover {
  background-color: #4267B2;
}

#instagram:hover {
 background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  

}
#tiktok:hover {
    background-color: #000;
}
#whatsapp:hover {
       background-color:#25D366;
}

.facebook:hover, 
.instagram:hover, 
.tiktok:hover,
.whatsapp:hover {
 color:#fff;
 transform: scale(1.3);

}



@media (max-width: 768px) {
  .socialwrapper {
    flex-direction: row;
    height: auto;
  }

  .bg-ico {
    margin: 15px 15px; /* Adjusted margin for mobile view */
  }
}

@media (min-width: 769px) {
  .socialwrapper {
    flex-direction: row;
    height: 18vh;
  }

  .bg-ico {
    width: 150px;
    height: 150px;
    margin: 0 20px; /* Adjusted margin to reduce gap */
  }
}