/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  background-color: #2a2a2a;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

#overflow {
  overflow-x: hidden;
}

p, li {
  font-family: 'Dancing Script', cursive;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2px;
  font-size: 15px;
  line-height: 22px;
  color: white;
  margin-bottom: 1em;
  text-align: justify;
}

a {
  color: white;
}

.content a {
  color: #daa32c;
}

#title {
  font-weight: bold;
}

li {
  margin-left: 10px;
}

.img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}

.img-wrapper #remcos-logo {
  width: 100vw;
  max-width: 790px;
  margin-bottom: 20px;
  border-radius: 0 0 10px 10px;
}

.content {
  max-width: 790px;
  margin: auto;
}

.content .wrapper {
  margin: 10px;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#navbar {
  width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto;
  min-height: 55px;
}

@media (max-width: 950px) {
  #navbar {
    width: 90%;
  }
}

#navbar #large {
  list-style-type: none;
}

#navbar #large > li {
  float: left;
}

#navbar #large > li > a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 100px;
  -webkit-transition: .3s;
  transition: .3s;
}

#navbar #large > li ul {
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  overflow: hidden;
  -webkit-transition: visibility 1s, opacity .6s;
  transition: visibility 1s, opacity .6s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  background-color: white;
  border-radius: 15px;
}

#navbar #large > li ul li {
  margin: 10px 5px;
}

#navbar #large > li ul li a {
  color: black;
  text-decoration: none;
  padding: 5px;
  font-size: 16px;
}

#navbar #large > li ul li a:hover {
  color: #449DD7;
}

#navbar #large > li:hover > a {
  background-color: #449DD7;
}

#navbar #large > li:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0s, opacity .3s;
  transition: visibility 0s, opacity .3s;
}

@media (max-width: 950px) {
  #navbar #large {
    display: none;
  }
}

#navbar #mobile {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 70%;
  height: 100vh;
  visibility: visible;
  opacity: 1;
  background-color: black;
  list-style-type: none;
  padding: 5%;
  -webkit-transition: .3s;
  transition: .3s;
}

#navbar #mobile.hidden {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(500px);
          transform: translateX(500px);
}

#navbar #mobile #close-icon {
  position: absolute;
  right: 30px;
  height: 30px;
}

#navbar #mobile li a {
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 17px;
}

#navbar #mobile li a:hover {
  color: #449DD7;
}

#navbar #mobile li:nth-child(2) {
  margin-top: 60px;
}

#navbar #logo img {
  width: 300px;
  max-width: 70vw;
}

#navbar .hamburger {
  height: 30px;
  display: none;
}

@media (max-width: 950px) {
  #navbar .hamburger {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */