* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

#sort_button {
  display: none;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  height: 100px;
}

#logo_division img {
  margin-left: 20px;
  width: 250px;
  height: 80px;
}

#nav_division {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

#nav_division a {
  margin-bottom: 20px;
  -webkit-transition: 1s;
  transition: 1s;
  text-decoration: none;
  color: black;
  font-weight: bolder;
  margin-right: 55px;
  font-size: 18px;
  letter-spacing: 0.9px;
}

#nav_division a:hover {
  color: rgba(0, 0, 0, 0.747);
}

footer p, a {
  font-size: 16px;
  color: white;
  margin-top: 35px;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: auto;
  min-height: 120px;
  background-color: rgba(0, 0, 0, 0.87);
  width: 100%;
}

#phone_number {
  margin-left: 6px;
}

@media screen and (max-width: 930px) {
  #sort_button {
    display: inline-block;
    width: 40px;
    position: absolute;
    left: 10px;
    top: 10px;
    opacity: 0.7;
    cursor: pointer;
  }
  nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 3s;
    transition: 3s;
  }
  #nav_division {
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 40%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 50px;
    z-index: 888888;
    -webkit-animation-name: nav_animation;
            animation-name: nav_animation;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    display: none;
  }
  #nav_division a {
    position: relative;
    margin: 0;
    margin-bottom: 100px;
  }
  #logo_division img {
    width: 230px;
    height: 70px;
  }
  footer {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 2px;
    padding: 20px;
  }
  footer p, a {
    margin: 15px;
    font-size: 13px;
  }
}

@media screen and (max-width: 630px) {
  #nav_division {
    width: 60%;
  }
}

@-webkit-keyframes nav_animation {
  0% {
    position: absolute;
    opacity: 0.7;
    left: -190px;
  }
  100% {
    position: absolute;
    left: 0;
    opacity: 1;
  }
}

@keyframes nav_animation {
  0% {
    position: absolute;
    opacity: 0.7;
    left: -190px;
  }
  100% {
    position: absolute;
    left: 0;
    opacity: 1;
  }
}
/*# sourceMappingURL=header_and_footer.css.map */