/*
make fluid properties

@link https://www.sassmeister.com/gist/7f22e44ace49b5124eec
Example:
@include fluid-type(padding-bottom padding-top, 2em, 4em);
@include fluid-type(font-size, 14px, 18px);
Optimized for resolution 360px <---> 1920px
*/
.main_website_footer {
  display: none;
  font-family: "Gotham SSm A", "Gotham SSm B";
  font-style: normal;
  font-weight: 400;
  background-color: #26333c;
  padding: 80px 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .main_website_footer {
    display: block;
  }
}
.main_website_footer h3 {
  font-size: 14px;
  color: #59acd4;
  margin-bottom: 13px;
}
.main_website_footer ul {
  padding: 0;
  list-style: none;
}
.main_website_footer ul li {
  margin-bottom: 13px;
}
.main_website_footer ul li a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

/*# sourceMappingURL=main_website_footer.css.map */
