@font-face {
  font-family: 'mb-plus-icons';
  src: url("../fonts/mb-plus-icons.eot?y60gem");
  src: url("../fonts/mb-plus-icons.woff?y60gem") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'mb-plus-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-sheep:before {
  content: "\e900";
}

.icon-horse:before {
  content: "\e901";
}

.icon-turkey:before {
  content: "\e902";
}

.icon-pig:before {
  content: "\e903";
}

.icon-cow:before {
  content: "\e904";
}

.icon-chicken:before {
  content: "\e905";
}

.icon-home:before {
  content: "\e906";
}

.icon-close:before {
  content: "\e907";
}

.icon-pin:before {
  content: "\e908";
}

.icon-mail:before {
  content: "\e909";
}

.icon-phone:before {
  content: "\e90a";
}

.icon-linkedin:before {
  content: "\e90b";
}

.icon-facebook:before {
  content: "\e90c";
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-family: 'Rubik', sans-serif;
}

html, body {
  min-height: 100vh;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header {
  width: 70%;
  padding: 0 15%;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px #6b6b6b;
          box-shadow: 0px 0px 10px #6b6b6b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
}

header .mobile-menu {
  height: 80px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .mobile-menu .menu-item {
  padding: 8px 15px;
  margin-right: 50px;
  margin-left: 20px;
  text-transform: uppercase;
  text-align: center;
  background-color: #1799D8;
  color: white;
  cursor: pointer;
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

header .menu .menu-item {
  padding: 8px 15px;
  margin-left: 20px;
  text-transform: uppercase;
}

header .menu .menu-item.feedback {
  background-color: #1799D8;
  color: white;
  cursor: pointer;
}

header .menu .menu-item div {
  padding: 5px 0;
}

header .menu .menu-item.active div {
  border-bottom: 2px solid #1799D8;
}

section.mobile-menu-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

section.mobile-menu-drawer .open-menu {
  height: 80px;
  width: 80px;
  background-color: #1799D8;
  cursor: pointer;
  position: fixed;
  right: 0px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

section.mobile-menu-drawer .open-menu .nav-icon {
  margin: 1em;
  width: 40px;
}

section.mobile-menu-drawer .open-menu .nav-icon:after,
section.mobile-menu-drawer .open-menu .nav-icon:before,
section.mobile-menu-drawer .open-menu .nav-icon div {
  background-color: #fff;
  border-radius: 3px;
  content: '';
  display: block;
  height: 5px;
  margin: 7px 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

section.mobile-menu-drawer .open-menu.open .nav-icon:before {
  -webkit-transform: translateY(12px) rotate(135deg);
          transform: translateY(12px) rotate(135deg);
}

section.mobile-menu-drawer .open-menu.open .nav-icon:after {
  -webkit-transform: translateY(-12px) rotate(-135deg);
          transform: translateY(-12px) rotate(-135deg);
}

section.mobile-menu-drawer .open-menu.open .nav-icon div {
  -webkit-transform: scale(0);
          transform: scale(0);
}

section.mobile-menu-drawer .mobile-menu-drawer {
  padding-top: 80px;
  position: fixed;
  right: -250px;
  top: 0;
  width: 250px;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #1799D8;
  z-index: 20;
}

section.mobile-menu-drawer .mobile-menu-drawer.open {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-box-shadow: 0px 0px 20px #000000c2;
          box-shadow: 0px 0px 20px #000000c2;
}

section.mobile-menu-drawer .mobile-menu-drawer .menu-item {
  padding: 15px 20px;
  margin-right: 0;
  text-transform: uppercase;
  text-align: center;
  background-color: #1799D8;
  color: white;
  cursor: pointer;
}

section.mobile-menu-drawer .mobile-menu-drawer .menu-item.active {
  border-left: 2px solid white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #03A9F4;
}

section.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background-color: #1799D8;
  color: white;
  margin-top: 0;
  width: 70%;
  padding: 15px 15%;
}

section.footer > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

section.footer .rights {
  margin-right: 10px;
}

section.footer .site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.footer .site-map .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 10px;
}

section.footer .site-map .col a {
  margin: 4px;
  margin-left: 0;
}

section.footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
}

section.footer .social i:first-child {
  margin-right: 10px;
}

section.footer .author {
  font-size: 15px;
}

section.footer .author span {
  font-size: 16px;
}

section.overlay {
  position: fixed;
  top: 100vh;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 15;
  margin-top: 0;
}

section.overlay.open {
  opacity: 0.3;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 1300px) {
  section.footer {
    width: 85%;
    padding: 10px 7.5%;
  }
  header {
    width: 85%;
    padding: 0 7.5%;
  }
  header .menu .menu-item {
    margin-left: 10px;
    padding: 8px 10px;
  }
}

@media only screen and (max-width: 980px) {
  section.mobile-menu-drawer {
    display: block;
  }
  header .menu {
    display: none;
  }
  header .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  section.footer {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 10px;
  }
  section.footer .rights {
    margin-right: 0;
  }
  section.footer > * {
    width: 50%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 850px) {
  section.footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    padding-top: 15px;
  }
  section.footer > * {
    width: 50%;
    margin-bottom: 15px;
  }
  section.footer .site-map .col a {
    margin: 10px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 600px) {
  header .mobile-menu > a {
    display: none;
  }
  section.footer > * {
    width: 100%;
  }
  section.footer .social, section.footer .author {
    width: 50%;
  }
}
/*# sourceMappingURL=common.css.map */