body {
  font-family: 'Rubik', sans-serif;
}
nav {
  background: white;
  height: 60px;
  border-bottom: 1px solid #979797;
  position: relative;
  padding-top: 7px;
}
nav .nav-logo {
  margin: 0 auto;
  width: 60px;
  display: block;
}
nav .side-menu-icon {
  position: absolute;
  left: 10px;
  width: 31px;
  height: 31px;
  top: 15px;
  cursor: pointer;
}
.category-block {
  margin-bottom: 15px;
  max-width: 320px;
}
.category-block img {
  display: block;
  width: 100%;
}
.category-block .category-text {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.footer-logo-catalog-link {
  text-align: center;
  margin-top: 50px;
}
.footer-logo-catalog-link img {
  display: block;
  margin: 0 auto;
  width: 50px;
  margin-bottom: 8px;
}
.footer-logo-catalog-link a {
  text-decoration: none;
  color: #203C73;
  font-size: 12px;
}
section {
  width: 320px;
  margin: 0 auto;
  cursor: pointer;
}
section a {
  text-decoration: none;
  color: black;
}
footer {
  margin-top: 30px;
  padding-bottom: 15px;
  background: #203C73;
  text-align: center;
  font-size: 8px;
  color: white;
  padding-top: 15px;
}
footer img {
  display: block;
  margin: 0 auto;
  margin-top: 15px;
}
footer img.facebook-logo {
  width: 12px;
}
footer a {
  text-decoration: none;
  color: white;
}
.side-menu.active {
  animation-name: sideMenuShow;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.side-menu.hide {
  animation-name: sideMenuHide;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.side-menu {
  background: #203C73;
  height: 100%;
  width: 200px;
  position: fixed;
  top: 0;
  left: -200px;
  color: white;
  padding: 10px;
  padding-top: 25px;
}
.side-menu a {
  text-decoration: none;
  color: white;
}
.side-menu p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 25px;
}
.side-menu p.menu {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.side-menu p.contact-info {
  font-size: 10px;
  margin-top: 10px;
  margin-left: 25px;
}
.side-menu .side-menu-icon {
  position: absolute;
  right: 10px;
  width: 31px;
  height: 31px;
  top: 15px;
  cursor: pointer;
}
.side-menu-desktop {
  display: none;
}
.clear {
  clear: both;
}
@keyframes sideMenuShow {
  from {
    left: -600px;
  }
  to {
    left: 0px;
  }
}
@keyframes sideMenuHide {
  from {
    left: 0px;
  }
  to {
    left: -600px;
  }
}
@media only screen and (min-width: 600px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  nav .side-menu-icon {
    display: none;
  }
  .category-block {
    float: left;
    height: 220px;
  }
  section a:nth-child(even) .category-block {
    margin-left: 10px;
  }
  section {
    display: block;
    margin: 0 auto;
    width: calc(100% - 200px);
    padding-top: 80px;
    margin-left: 200px;
    text-align: center;
  }
  section a {
    display: inline-block;
  }
  .side-menu {
    left: 0;
    z-index: 1;
    position: fixed;
    padding-top: 80px;
    height: 100%;
  }
  .footer-logo-catalog-link {
    margin-top: 100px;
  }
  .footer-logo-catalog-link a:nth-child(2) {
    display: none;
  }
}
