@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto';
  overflow: hidden;
}

body a {
  text-decoration: none;
}

#header {
  height: 15vh;
  background: #f9f9f9;
  width: 100%;
}

#header #navbar {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}

#header #navbar .logo {
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#header #navbar .logo .h-c-icon {
  width: 30px;
  fill: #414549;
  position: absolute;
  left: 20px;
}

#header #navbar .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#header #navbar .logo .logo_text {
  color: #757575;
  font-size: 30px;
  margin-left: 10px;
}

#header #navbar .header_side_nav {
  display: none;
}

#header #navbar .header_side_nav .maia-aux #talk {
  color: #4285f4;
  font-weight: 500;
  margin: 0 10px;
  text-transform: uppercase;
}

#header #navbar .header_side_nav .maia-aux #app {
  padding: 10px 20px;
  background: #4285f4;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
}

#menu {
  height: 100vh;
  width: 25vw;
  padding: 20px 10px;
  margin: 0 !important;
  overflow-x: hidden;
  background: #fff;
  position: absolute;
  top: 0;
  left: -100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#menu .toggle-nav {
  display: none;
}

#menu .desktop-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#menu .desktop-nav li {
  list-style: none;
  text-transform: uppercase;
  position: relative;
}

#menu .desktop-nav li a {
  color: #414549;
}

#menu .desktop-nav li .header_side_nav .maia-aux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#menu .desktop-nav li .header_side_nav .maia-aux #talk {
  margin: 30px 0;
  color: #4285f4;
}

#menu .desktop-nav li .header_side_nav .maia-aux #app {
  padding: 10px 20px;
  background: #4285f4;
  color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.75);
}

#menu .mobile-nav {
  display: none;
}

.overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  top: 0;
  margin: 0 !important;
  z-index: 9;
}

.active {
  left: 0 !important;
  z-index: 15;
}

#container {
  height: 100vh;
  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;
}

#container #card {
  height: 80%;
  width: 80%;
  background: #fff;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#container #card .card_body {
  height: 100%;
  width: 50%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 75% 25%;
      grid-template-rows: 75% 25%;
  overflow: hidden;
}

#container #card .card_body .top {
  overflow: hidden;
}

#container #card .card_body .top img {
  max-width: 100%;
}

#container #card .card_body .bottom {
  padding: 10px 20px;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#container #card .card_body .bottom h2 {
  margin: 0;
  font-size: 1.6em;
  color: #2b2b2b;
}

#container #card .card_body .bottom h4 {
  font-size: 1.3em;
  margin: 0;
  color: #2b2b2b;
}

#container #card .card_body .bottom h6 {
  margin: 0;
  font-size: 1.2em;
  color: #8a8a8a;
}

#container svg {
  position: absolute;
  pointer-events: none;
}

#container svg path {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

@media (max-width: 720px) {
  #header {
    height: 15vh;
  }
  #header #navbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header #navbar .header_side_nav {
    display: none;
  }
  #header #navbar .logo {
    margin-left: 10px;
  }
  #header #navbar .logo .h-c-icon {
    display: block;
    position: absolute;
    left: 20px;
  }
  #header #navbar .logo a svg {
    width: 80px !important;
  }
  #header #navbar .logo a .logo_text {
    font-size: 25px;
  }
  #menu {
    height: 100vh;
    position: fixed;
    width: 80vw;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    top: 0;
    left: -100%;
    margin: 0 !important;
    z-index: 10;
  }
  #menu .desktop-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 10px !important;
  }
  #menu .desktop-nav li .header_side_nav {
    display: block;
  }
  #menu .desktop-nav li .header_side_nav .maia-aux {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #menu .desktop-nav li .header_side_nav .maia-aux #talk {
    margin: 15px 0;
    color: #4285f4;
  }
  #menu .desktop-nav li .header_side_nav .maia-aux #app {
    padding: 10px 15px;
    background: #4285f4;
    color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.75);
            box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.75);
  }
  #menu .desktop-nav li::after {
    display: none !important;
  }
  #card .card_body {
    height: 80% !important;
    width: 98% !important;
    -ms-grid-rows: 70% 30% !important;
        grid-template-rows: 70% 30% !important;
  }
  #card .card_body .top img {
    max-width: 100%;
  }
  #card .card_body .bottom {
    padding: 10px 10px !important;
    letter-spacing: 2px !important;
  }
  #card .card_body .bottom h2 {
    font-size: 1.3em !important;
  }
  #card .card_body .bottom h4 {
    font-size: 1.3em !important;
  }
  #card .card_body .bottom h6 {
    font-size: 1.1em !important;
  }
  svg {
    height: 100%;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */