footer {
    background: #f5f5f5;
    padding: 25px;
  }
  
  footer a {
    color: #0b0b0b;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  footer #footerContentWrap {
    display: flex;
    gap: 50px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
  }
  
  
  footer div#divFooterContact img {
    max-width: 150px;
    display: block;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
  }
  
  footer #divFooterLinks {
    display: flex;
    gap: 50px;
    width: 60%;
    justify-content: space-between;
}
  
  footer #divFooterLinks > div > span a {
    font-weight: 700;
    color: #959595;
  }

  section#secondFooter {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

  section#secondFooter a {
    text-decoration: none;
    color: #787878;
  }

  section#secondFooter a:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  
  section#secondFooter ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
  }

  #divSocialWrap {
    text-align: center;
  }

  div#divSocialIconWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 10px;
}

  #divSocialWrap h3 {
    color: #787878;
    font-family: "Oxygen", Sans-serif;
    font-size: 20px;
    font-weight: 600;
  }

 #divSocialIconWrap i {
    background-color: #F17435;
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
}

/* -- Media Querys -- */

@media screen and (max-width: 1200px) {
  footer #footerContentWrap{
    flex-direction: column;
    text-align: center;
  }

  div#divFooterContact img {
    margin-left: auto;
    margin-right: auto;
  }

  footer #divFooterLinks {
    width: 100%;
    flex-direction: column;
  }

  section#secondFooter {
    padding: 15px;
    box-sizing: border-box;
  }

  section#secondFooter, section#secondFooter ul {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

}


      