*, html{
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  height: 100%;
}

title {
  display: none;
}

body {
    background-color: #eeeeee;
    height: 100%;
}

main {
  display: flex;
  height: 100%;
}
main.scroll {
  display: flex;
  height: auto;
}

h1 {
  font-size: 120px;
  font-weight: 100;
}

h2{
  font-weight: 300;
  font-size: 24px;
}

p {
  font-weight: 200;
  font-size: 18px;
}

a {
  color: #000000;
  font-weight: 200;
}

img{
  display: block;
}
/* ///////////////////LINKS//////////////////// */
.links p {
  font-size: 24px;
  font-weight: 100;
}


main .links {
  color: #eeeeee;
  background-color: #25303C;
  height: 100%;
  width: 45%;
  padding: 42px 52px;
  display: flex;
  flex-wrap: wrap;
  overflow-y: hidden;
}

main nav.menu {
  width: 100%;
  font-weight: 100;
  text-transform: uppercase;
  font-size: 17px;
}
main nav.menu ul li {
  display: inline-block;
  margin-right: 82px;
}

main nav.menu ul li#active {
  font-weight: 300;
  position: relative;
}
main nav.menu ul li a {
  color: #eeeeee;
  text-decoration: none;
}
main nav.menu ul li#active:after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

main .links .intro {
  max-width: 385px;
}

main nav.socials {
  margin-top: 30px;
  position: relative;
  align-self: flex-end;
}

main nav.socials ul {
  display: flex;
  list-style-type: none;
}

main nav.socials ul li {
  font-family: 'FontAwesome';
  font-size: 24px;
  margin: 0 50px 0 0;
  color: #eeeeee;
}

main nav.socials ul li a {
  color: #eeeeee;
}

/* ///////////////////RECHTS//////////////////// */

main .rechts {
  width: 55%;
  display: flex;
  overflow: hidden;
}
main .rechts article.content-1 {
  width: 50%;
}
main .rechts article.content-2 {
  width: 50%;
}

main .rechts article.content-1 div.text{
  padding: 30px;
  height: 28%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

main .rechts article.content-2 div.text{
  padding: 30px;
  height: 28%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

main .rechts article.content-1 div.img-1 {
  background-image: url(../images/cesar-foto-portfolio.JPG);
  background-size: cover;
  width: 100%;
  height: 72%;
  background-position: center;
}

main .rechts article.content-2 div.img-2 {
  background-image: url(../images/wijnen-werk.jpg);
  background-size: cover;
  width: 100%;
  height: 72%;
  background-position: center;
}



/* ///////////////////PROJECTS//////////////////// */


main .full-cover {
  background-color: #25303C;
  padding: 42px 52px;
  width: 100%;
}
main .projects {
  display: flex;
  margin: 50px 0;
  flex-wrap: wrap;
}


main .projects article.project {
    max-width: calc(25% - 100px);
    position: relative;
    margin: 50px 50px;
}

main .projects article.project h3 {
  position: absolute;
  top: 43%;
  text-align: center;
  width: 100%;
  color: #eeeeee;
  font-size: 36px;
  font-weight: 200;
}

main .projects article.project section.taggs {
  position: absolute;
  bottom: 1em;
  left: 1em;
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
}

main .projects article.project section.taggs figure {
  background-color: #25303C;
  color: #eeeeee;
  padding: .3em;
  margin: .3em .3em;
}

main .projects article.project img {
  width: 100%;
}

/* ///////////////////ABOUT ME//////////////////// */

main .links.about{
  width: 50%;
}
main .rechts.about{
  width: 50%;
}

main .links .about {
  margin-top: 50px;
}

main .rechts .about.img {
  width: 100%;
}

main .rechts .about.img img {
  margin: 30px auto;
  max-width: 72%;
}

/* ///////////////////CONTACT//////////////////// */

main .links .contact {
  margin-top: 50px;
  width: 100%;
}


main .links .contact h3{
  height: 140px;
}

main .links .contact h3{
  height: 140px;
}

main .links .contact a{
  color: #eeeeee;
}

main .links .contact #email {
  margin-top: 50px;
}

main .links .contact form {
  position: relative;
  margin-top: 40px;
}

main .links .contact form label{
  display: block;
  font-weight: 200;
  font-size: 24px;
}

main .links .contact form input, textarea {
  width: 87%;
  display: block;
  font-size: 16px;
}

main .links .contact form input#send {
  width: 130px;
    background-color: #c4c4c4;
    height: 50px;
    position: absolute;
    bottom: -41px;
    right: 4px;
    color: #fff;
    font-size: 24px;
    font-weight: 200;
}

main .links .contact .response {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #25303C;
	  color: #f0f0f0;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    border: 1px solid #f0f0f0;
}

main .links .contact .response.active {
    display: flex;
	flex-direction: row-reverse;
	gap: 1em;
	align-items: center;
}

main .links .contact .response .close-btn {
    background-color: #eeeeee;
    color: red;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    float: right;
    font-size: 16px;
}

main .rechts.contact {
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
}

/* ///////////////////MEDIA QUERIES MAIN//////////////////// */

@media screen and (max-width: 970px) {
  main .full-cover {
    padding: 20px;
  }
}

/* ///////////////////MEDIA QUERIES HOME//////////////////// */

@media screen and (max-width: 1625px) {
  main nav.menu ul li {
    margin-right: 50px;
  }
}

@media screen and (max-width: 1340px) {
  main nav.menu ul li {
    margin-right: 40px;
  }
}

@media screen and (max-width: 1255px) {
  main nav.menu ul li {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1165px) {
  main nav.menu ul li {
    margin-right: 8px;
  }
}

@media screen and (max-width: 970px) {
  main {
    flex-wrap: wrap;
  }

  main nav.menu ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }

  main nav.menu ul li {
    margin: 0 20px 0 0;
  }

  main nav.menu ul li:last-child {
    margin: 0;
  }

  main section.links {
    width: 100%;
    height: auto;
    padding: 20px 20px;
  }

  main .links .intro {
    width: 100%;
    margin-top: 85px;
    max-width: none;
  }

  main section.links nav.socials {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }

  main section.rechts {
    width: 100%;
    flex-wrap: wrap;
  }

  main .rechts article.content-1{
    width: 100%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
  }

  main .rechts article.content-2{
    width: 100%;
    height: 600px;
  }

  main .rechts article.content-1 div.img-1 {
    height: 60%;
    display: flex;
    order: 2;
  }

  main .rechts article.content-2 div.img-2 {
    height: 60%;
  }

  main .rechts article.content-1 div.text {
    height: 40%;
  }

  main .rechts article.content-2 div.text {
    height: 40%;
  }
}

@media screen and (max-width: 400px) {
  h1 {
    font-size: 80px;
  }
}

/* ///////////////////MEDIA QUERIES PROJECTS//////////////////// */


@media screen and (max-width: 1550px) {
  main .projects article.project {
    max-width: calc(32% - 100px);
  }
  main .projects article.project h3 {
    font-size: 30px;
    top: 10%;
  }
}

@media screen and (max-width: 1140px) {
  main .projects article.project {
    max-width: calc(50% - 50px);
    margin: 25px;
  }
}

@media screen and (max-width: 675px) {
  main .projects article.project {
    max-width: calc(100% - 50px);
  }
}

@media screen and (max-width: 385px) {
  main .projects article.project {
    max-width: calc(100% - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 350px) {
  main .projects article.project h3 {
    font-size: 25px;
  }
}

/* ///////////////////MEDIA QUERIES ABOUT ME//////////////////// */

@media screen and (max-width: 790px) {
  main .links.about {
    width: 100%;
  }
  main .rechts.about{
    width: 100%;
  }
}