@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700");
html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

nav {
  width: 100%;
  height: 50px;
  background-color: #ef6a01;
  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;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  -webkit-transition: padding 200ms ease;
  transition: padding 200ms ease;
}

@media (max-width: 600px) {
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

nav.opened {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5em 0;
}

@media (max-width: 600px) {
  nav.opened a:not(.header) {
    margin: .5em auto;
    height: 20px;
    opacity: 1;
  }
}

@media (max-width: 600px) {
  nav.opened a.header {
    margin-top: .2em;
    margin-bottom: .3em;
  }
  nav.opened a.header::before {
    content: '▲';
  }
}

nav a {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 20px;
  margin: 0em 50px;
  position: relative;
}

@media (max-width: 963px) {
  nav a {
    margin: 0em auto;
  }
}

nav a::after {
  content: '';
  position: absolute;
  height: 2px;
  background-color: white;
  bottom: -4px;
  left: 50%;
  right: 50%;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

nav a:hover::after, nav a.selected::after {
  left: 0%;
  right: 0%;
}

@media (max-width: 600px) {
  nav a:not(.header) {
    height: 0px;
    opacity: 0;
    -webkit-transition: height, margin 200ms ease;
    transition: height, margin 200ms ease;
  }
}

@media (max-width: 600px) {
  nav a.header::after {
    height: 0px;
  }
  nav a.header::before {
    content: '▼';
    cursor: pointer;
    position: absolute;
    right: -30px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

a.up svg {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 50%;
  background: #d65f01;
  fill: white;
  cursor: default;
  opacity: 0;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

@media (max-width: 720px) {
  a.up svg {
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: 30px;
  }
}

@media (max-width: 620px) {
  a.up svg {
    right: 15px;
  }
}

@media (max-width: 420px) {
  a.up svg {
    display: none;
  }
}

a.up.show svg {
  cursor: pointer;
  opacity: 1;
}

main {
  padding: 2.5em;
}

main #description, main #types {
  width: 750px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  main #description, main #types {
    width: 500px;
  }
}

@media (max-width: 600px) {
  main #description, main #types {
    width: 300px;
  }
}

@media (max-width: 385px) {
  main #description, main #types {
    width: 100%;
  }
}

main #description article, main #types article {
  margin: 2em 0;
}

main #description article header, main #types article header {
  display: inline;
  position: relative;
  font-size: 1.8em;
}

main #description article header::after, main #types article header::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #d65f01;
  bottom: -4px;
  height: 2px;
  width: 100%;
}

main #description article div, main #types article div {
  margin-top: 1em;
}

main #description article div img, main #types article div img {
  border-radius: 5px;
  display: block;
  margin: 1.5em auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 500px;
}

@media (max-width: 1023px) {
  main #description article div img, main #types article div img {
    width: 400px;
  }
}

@media (max-width: 600px) {
  main #description article div img, main #types article div img {
    width: 250px;
  }
}

@media (max-width: 385px) {
  main #description article div img, main #types article div img {
    width: 90%;
  }
}

main #description article div img.crop, main #types article div img.crop {
  height: 350px;
}

@media (max-width: 1023px) {
  main #description article div img.crop, main #types article div img.crop {
    height: 280px;
  }
}

@media (max-width: 600px) {
  main #description article div img.crop, main #types article div img.crop {
    height: 175px;
  }
}

main #description article div p, main #types article div p {
  text-align: justify;
  line-height: 1.7em;
}
/*# sourceMappingURL=main.css.map */