.menu-btn {
  position: absolute;
  z-index: 3;
  right: 35px;
  top: 35px;
  cursor: pointer;
  transition: all 0.5s ease-out; }
  .menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0 0 5px 0;
    background: #fff;
    transition: all 0.5s ease-out; }
  .menu-btn.close {
    transform: rotate(180deg); }
    .menu-btn.close .btn-line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px); }
    .menu-btn.close .btn-line:nth-child(2) {
      opacity: 0; }
    .menu-btn.close .btn-line:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px); }

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.9;
  visibility: hidden; }
  .menu.show {
    visibility: visible; }
  .menu-branding, .menu-nav {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    float: left;
    width: 50%;
    height: 100vh;
    overflow: hidden; }
  .menu-nav {
    margin: 0;
    padding: 0;
    background: #373737;
    list-style: none;
    transform: translate3d(0, -100%, 0);
    transition: all 0.5s ease-out; }
    .menu-nav.show {
      transform: translate3d(0, 0, 0); }
  .menu-branding {
    background: #444;
    transform: translate3d(0, 100%, 0);
    transition: all 0.5s ease-out; }
    .menu-branding.show {
      transform: translate3d(0, 0, 0); }
    .menu-branding .portrait {
      width: 250px;
      height: 330px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url("../img/portret.jpg");
      border-radius: 50%;
      border: solid 3px #eece1a; }
  .menu .nav-item {
    transform: translate3d(600px, 0, 0);
    transition: all 0.5s ease-out; }
    .menu .nav-item.show {
      transform: translate3d(0, 0, 0); }
    .menu .nav-item.current > a {
      color: #eece1a; }
  .menu .nav-link {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease-out; }
    .menu .nav-link:hover {
      color: #eece1a; }

.nav-item:nth-child(1) {
  transition-delay: 0.1s; }

.nav-item:nth-child(2) {
  transition-delay: 0.2s; }

.nav-item:nth-child(3) {
  transition-delay: 0.3s; }

.nav-item:nth-child(4) {
  transition-delay: 0.4s; }

.nav-item:nth-child(5) {
  transition-delay: 0.5s; }

* {
  box-sizing: border-box; }

/* npm run sass */
body {
  background: #444;
  color: #fff;
  height: 100%;
  margin: 0%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5; }

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400; }
  h1.lg-heading,
  h2.lg-heading,
  h3.lg-heading {
    font-size: 4rem; }
  h1.sm-heading,
  h2.sm-heading,
  h3.sm-heading {
    margin-bottom: 2rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    background: rgba(73, 73, 73, 0.5); }

a {
  color: #fff;
  text-decoration: none; }

header {
  position: fixed;
  z-index: 2;
  width: 100%; }

.text-secondary {
  color: #eece1a; }

main {
  padding: 4rem;
  min-height: calc(100vh - 60px); }
  main .icons {
    margin-top: 1rem; }
    main .icons a {
      padding: 0.4rem; }
      main .icons a:hover {
        color: #eece1a;
        transition: all 0.5s ease-out; }
  main#home {
    overflow: hidden; }
    main#home h1 {
      margin-top: 20vh; }

.about-info {
  display: grid;
  grid-gap: 30px;
  grid-template-areas: 'bioimage bio bio'
 'job1 job2 job3';
  grid-template-columns: repeat(3, 1fr); }
  .about-info .bio-img {
    grid-area: bioimage;
    margin: auto;
    border-radius: 50%;
    border: #eece1a 3px solid; }
  .about-info .bio {
    grid-area: bio;
    font-size: 1.5rem; }
  .about-info .job-1 {
    grid-area: job1; }
  .about-info .job-2 {
    grid-area: job2; }
  .about-info .job-3 {
    grid-area: job3; }
  .about-info .job {
    background: #515151;
    padding: 0.5rem;
    border-bottom: #eece1a 5px solid; }

.schilderij-info {
  z-index: 1;
  width: 90vw;
  height: 80vh;
  position: fixed;
  top: 70px;
  left: -100vw;
  align-self: center;
  margin: auto;
  border: 3px solid #eece1a;
  background: rgba(17, 17, 17, 1); }
  .schilderij-info a {
    position: relative;
    font-size: 1.5rem;
    float: right;
    margin-right: 15px; }
    .schilderij-info a:hover {
      font-weight: 4000;
      color: #eece1a;
      transition: all 0.5s ease-out; }
  .schilderij-info .achtergrond {
    width: 90%;
    height: 90%;
    margin: auto;
    margin-top: 30px; }
    .schilderij-info .achtergrond .img-info {
      max-height: 100%;
      max-width: 100%;
      margin-bottom: 30px; }
    .schilderij-info .achtergrond .img-info2 {
      max-height: 100%;
      max-width: 80vw; }
    .schilderij-info .achtergrond p {
      text-align: left; }
    .schilderij-info .achtergrond .beschrijving {
      display: grid;
      grid-template-columns: 1fr 9fr; }
      .schilderij-info .achtergrond .beschrijving #waardes {
        margin-left: 10px; }
      .schilderij-info .achtergrond .beschrijving .btn-light {
        width: auto;
        height: 60px;
        grid-column: 1/3; }
      .schilderij-info .achtergrond .beschrijving a {
        color: #000; }
  .schilderij-info.show {
    left: 5vw; }

.serie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.7rem; 
  text-align: center;

}
  .serie h2 {
    margin-top: 1rem; 
    text-align: left;
  }
  .serie .btn-dark, .serie .btn-light {
    text-align: left;
  }
  .serie img {
    max-width: 100%;
    border: 3px #fff solid; }
    .serie img:hover {
      opacity: 0.5;
      border-color: #eece1a;
      transition: all 0.5s ease-out; }

form {
  width: 80vw;
  margin: auto; }
  form .inputs {
    display: block;
    width: 100%;
    margin-bottom: 0.3rem; }
    form .inputs label {
      display: block;
      width: 100%;
      text-align: left; }
    form .inputs input,
    form .inputs textarea {
      display: block;
      width: 100%;
      border: none;
      padding: 0.3rem; }
  form #contact-submit {
    width: 90px;
    margin: 0px 5px; }

.btn, .btn-dark, .btn-light {
  display: block;
  padding: 0.5rem 1rem;
  border: 0;
  margin-bottom: 0.3rem; }
  .btn:hover, .btn-dark:hover, .btn-light:hover {
    background: #eece1a;
    color: #000; }

.btn-dark {
  background: black;
  color: #fff; }

.btn-light {
  background: #c4c4c4;
  color: #333; }

.btn-dark-form {
  background: black;
  color: #fff;
  display: block;
  margin-bottom: 0.3rem; }

.btn-dark-submit {
  background: black;
  padding: 0.5rem 1rem;
  border: 0;
  color: #fff;
  width: 100%;
  line-height: 1.5;
  font-size: 1rem;
  text-align: left; }
  .btn-dark-submit:hover {
    background: #eece1a;
    color: #000; }

.btn, .btn-dark, .btn-light {
  padding-left: 1.5rem;
  margin-top: 0; }

#main-footer {
  text-align: center;
  padding: 1rem;
  background: #2b2b2b;
  color: #fff;
  height: 60px; }

@media screen and (min-width: 1171px) {
  .achtergrond {
    display: grid;
    grid-template-columns: 3fr 330px; }
    .achtergrond div {
      margin-left: 10px; }
  .serie {
    grid-template-columns: repeat(4, 1fr); }
    .serie img {
      height: calc(25vw - 2.1rem - 4rem); }
  .nav-link {
    font-size: 2em;
    padding: 1em 0; }
  form {
    width: 40vw;
    margin: 0; }
    form .inputs {
      display: grid;
      grid-template-columns: 100px 1fr; }
      form .inputs input,
      form .inputs textarea,
      form .inputs label {
        display: inline; } }

@media screen and (min-width: 769px) and (max-width: 1170px) {
  .achtergrond {
    display: grid;
    grid-template-columns: 3fr 330px; }
    .achtergrond div {
      margin-left: 10px; }
  .nav-link {
    font-size: 2em;
    padding: 1em 0; }
  .serie {
    grid-template-columns: repeat(3, 1fr); }
    .serie img {
      height: calc(33vw - 1.4rem - 4rem); }
  form {
    width: 40vw;
    margin-left: 0; }
    form .inputs {
      display: grid;
      grid-template-columns: 100px 1fr; }
      form .inputs input,
      form .inputs textarea,
      form .inputs label {
        display: inline; } }

@media screen and (max-width: 768px) {
  main {
    align-items: center;
    text-align: center; }
    main .lg-heading {
      line-height: 1;
      margin-bottom: 1rem; }
  ul.menu-nav,
  div.menu-branding {
    float: none;
    width: 100%;
    min-height: 0; }
    ul.menu-nav.show,
    div.menu-branding.show {
      transform: translate3d(0, 0, 0); }
  .menu-nav {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
    font-size: 24px; }
  .nav-link {
    font-size: 2rem;
    padding: 0.5rem 0; }
  .menu-branding {
    height: 25vh;
    transform: translate3d(100%, 0, 0); }
    .menu-branding .portrait {
      margin: 1em 0;
    }
  .about-info {
    grid-template-columns: 1fr;
    grid-template-areas: 'bioimage'
 'bio'
 'job1'
 'job2'
 'job3'; }
  .serie {
    grid-template-columns: repeat(2, 1fr); }
    .serie p{
      height: 4rem;
    }
    .serie img {
      height: calc(50vw - 0.7rem - 4rem); }
  form {
    width: 80vw;
    margin: auto; }
    form .inputs {
      display: grid;
      grid-template-columns: 100px 1fr; }
      form .inputs input,
      form .inputs textarea,
      form .inputs label {
        display: inline; } }

@media screen and (max-width: 500px) {
  .lg-heading {
    margin-top: 1rem;
    font-size: 3rem; }
  main {
    margin: auto;
    padding: 1rem; }
  .nav-link {
    font-size: 2rem;
    padding: 0.5rem 0; }
  .container {
    margin-top: 50px; }
  main#home h1 {
    margin-top: 10vh; }
  .serie {
    grid-template-columns: 1fr; }
    .serie img {
      height: calc(100vw - 2rem); }
    .serie .btn-dark-submit {
      width: 100%;
      margin: 0;
      padding: 0.5rem 1rem; }
  form {
    width: 80vw;
    margin: auto; }
    form .inputs {
      display: block;
      width: 100%; }
      form .inputs label {
        display: block;
        width: 100%; }
      form .inputs input,
      form .inputs textarea {
        display: block;
        width: 100%; }
    form #contact-submit {
      width: 100%; } }
