/* ==========================================================================
   Variables
========================================================================== */
/* Infinite rotate */
@keyframes infinite-rotate {
  to {
    transform: rotate(360deg); } }

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 -10px -10px; }
  @media screen and (min-width: 768px) {
    .social-icons {
      justify-content: unset;
      margin: 0 0 -24px -24px; } }
  .social-icons__item {
    padding-left: 10px;
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .social-icons__item {
        padding-left: 24px;
        margin-bottom: 24px; } }
  .social-icons__icon, .social-icons__icon::before {
    width: 32px;
    height: 32px; }
    @media screen and (min-width: 768px) {
      .social-icons__icon, .social-icons__icon::before {
        width: 40px;
        height: 40px; } }
  .social-icons__link {
    display: block;
    line-height: 0;
    position: relative;
    z-index: 10; }
    @media screen and (min-width: 768px) {
      .social-icons__link::after {
        content: "";
        display: block;
        position: absolute;
        width: 32px;
        height: 32px;
        top: calc(50% - 16px);
        left: calc(50% - 16px);
        opacity: 0;
        border-radius: 100%;
        z-index: -1;
        transition: all ease-in-out 400ms;
        transform-origin: center;
        background-color: #eadaee; } }
    @media screen and (min-width: 768px) {
      .social-icons__link:hover::after {
        transform: scale(2);
        opacity: 1;
        } }
