#footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #363636;
  color: white;
}

#footer a {
  -webkit-transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1); /* ease (default) */
}

#footer a:hover {
  color: #08758d;
}

.footer-grid {
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-grid h3 {
  font-weight: 500;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin: 10px 0;
}

.footer-grid a {
  text-decoration: none;
  color: white;
  font-size: 0.9em;
}

.footer-grid p {
  color: white;
  font-size: 0.9em;
}

.footer-name,
.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-underline {
  width: 60px;
  background-color: #08758d;
  border: 0;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  margin: 5px auto 1rem 0;
  float: left;
}

.footer-name {
  width: 400px;
}

#footer > .fas {
  font-size: 1.15em;
  margin-right: 10px;
}

#footer > .fab {
  font-size: 1.25em;
}

.dark-footer {
  width: 100%;
  height: auto;
  background-color: #242424;
}

.footer-other {
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
}

.footer-other > .other ul {
  list-style: none;
  overflow: hidden;
}

.footer-other > .other li {
  float: left;
}

.footer-other > .other li a {
  display: block;
  margin: 0 16px 0 0;
  font-size: 0.75em;
}

.copyright {
  font-size: 0.75em;
}

.footer-other a {
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  text-decoration: none;
}

/*Desktop */
@media screen and (min-width: 1224px) {
  .footer-grid {
    width: 1000px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    grid-gap: 50px;
  }

  .footer-other {
    width: 1000px;
  }
}
/*Tablet */
@media screen and (max-width: 1224px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-name,
  .footer-links,
  .footer-contact,
  .footer-social {
    margin: 15px 0px;
    text-align: center;
  }

  #footer-fishinn-title:after {
    content: "";
    display: block;
    margin: 0 auto 10px auto;
    width: 36%;
    border-bottom: 3px solid #08758d;
  }

  #footer-links-title:after {
    content: "";
    display: block;
    margin: 0 auto 10px auto;
    width: 100%;
    border-bottom: 3px solid #08758d;
  }

  #footer-contact-us-title:after {
    content: "";
    display: block;
    margin: 0 auto 10px auto;
    width: 45%;
    border-bottom: 3px solid #08758d;
  }

  #footer-social-media-title:after {
    content: "";
    display: block;
    margin: 0 auto 10px auto;
    width: 100%;
    border-bottom: 3px solid #08758d;
  }

  .footer-underline {
    display: none;
  }

  .footer-other {
    width: 80%;
  }
}
