/* START: footer */
.social-buttons {
    display: flex;
    gap: 8px;
    height: 34px;
    /* border-radius: 5px; */
  }
  a.social-icon {
    height: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    background-color: #eee;
    
  }
  hr.footer_title_border {
    width: 10%;
    text-align: left;
    margin: 10px 0px 20px 0px;
    /* margin-top: 0; */
    border-top: 3px solid #f26622;
  }
  h4.footer_title {
    margin-bottom: 0;
    font-size: 24px;
  }
  .footer_links {
    text-align: left;
  }
  .footer_links p {
    opacity: 0.8;
    cursor: pointer;
  }
  .footer_links p:hover {
    opacity: 1;
  }
  /* END: footer */
  /* START: responsiveness */
  @media only screen and (max-width: 1023px) {
    #footer .social-buttons {
        justify-content: center;
    }
    #footer hr {
        margin: 20px auto;
    }
    #footer form {
      margin: auto;
    }
    .footer_links {
      margin: auto;
      width: 50%;
    }
}
@media only screen and (max-width: 767px) {

  .footer-second-col {
    width: 100%;
  }
  .footer_links {
    margin: auto;
    width: 135px;
  }
}
  /* END: responsiveness */