.elementor-21078 .elementor-element.elementor-element-45b31bb{--display:flex;}.elementor-21078 .elementor-element.elementor-element-cb1af31.elementor-element{--align-self:center;}.elementor-21078 .elementor-element.elementor-element-c94c1f6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cb1af31 *//* From Uiverse.io by aadium */ 
.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  box-shadow: 0px 0px 15px #00000027;
  padding: 8px 8px;
  border-radius: 5em;
}

.social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: #fff;
  box-shadow: 0px 0px 4px #00000027;
  transition: 0.3s;
  overflow: hidden; /* ensures round border clips the image */
}

.social-button:hover {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 6px 3px #00000027;
}

.social-button img {
  height:18px;  /* icon size */
  width: auto;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hover effect for icons */
.social-button:hover img {
  transform: scale(1.2);
  opacity: 0.85;
}

/* Platform-specific colors */
.facebook {
  background-color: #fff;
}

.github {
  background-color: #fff;
}

.linkedin {
  background-color: #fff;
}

.instagram {
  background-color: #fff;
}
/* Mobile view: everything scaled to 1/2 */
@media (max-width: 800px) {
  .social-buttons {
    padding: 7px 5px;   /* half the padding */
    border-radius: 2.5em;
  }

  .social-button {
    width: 35px;   /* half of 50px */
    height: 35px;
    margin: 0 5px; /* half of 10px */
  }

  .social-button img {
    height: 15px;  /* half of 20px */
  }
}/* End custom CSS */