footer .social-links a {
    margin: 0 20px;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 100ms ease-in-out;
  }

  footer .social-links a:hover{
    margin: 0 20px;
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 100ms ease-in-out;
  }

  footer {
    margin: 60px 0;
  }

  .justify-content-between {
    justify-content: space-between !important;
  }

  h4{
    font-size: 48px;
  }
  
  
  footer .email-link {
    text-decoration: none;
    color: black;
    font-size: 24px;
  }
  
  @media (min-width: 768px) {
    .d-md-flex {
      display: flex !important;
    }
  }
