/* Variables */

:root{
   --black: #000000;
   --blue: #0000FF;
   --white: #FFFFFF;
}

@font-face {
   font-family: Ultralight;
   src: url("/assets/fonts/Helvetica_Neue_Ultralight.ttf");
}

@font-face {
   font-family: Ultralight_IT;
   src: url("/assets/fonts/Helvetica_Neue_Ultralight_IT.ttf");
}

@font-face {
   font-family: Thin;
   src: url("/assets/fonts/Helvetica_Neue_Thin.ttf");
}

/* Root */

html {
   scroll-behavior: smooth;
 }

body{
   margin: 0px;
   width: 100vw;
   overflow-x: hidden;
   overflow-y: scroll;
}

a{
   text-decoration: none;
}


/* Custom elements */

.nl_logo_container{
   max-width: 1600px;
   width: 100%;
   margin: 0px auto 0px auto;
   position: sticky;
   top: 20vh;
   position: -webkit-sticky;
   height: 0px;
   overflow-y: display;
   z-index: 3;
}

.nl_section{
   position: relative;
   width: 100%;
   height: auto;
   background-image: none;
   background-position: right center;
   background-size: cover;
   background-repeat: no-repeat;
   display: flex;
}

.nl_container_third{
   height: 820px;
   width: 100%;
   flex-grow: 1;
   background-image: none;
   background-position: right center;
   background-size: cover;
   background-repeat: no-repeat;
}

.nl_third_desc{
   margin-top: 40px;
   margin-right: 40px;
   font-family: Thin;
   font-size: 64px;

   text-align: right;
   color: var(--white);
}

.nl_container{
   max-width: 1600px;
   width: 100%;
   margin: 220px auto 220px auto;
   display: flex;
}

.nl_project{
   display: block;
   height: 0;
   overflow: hidden;
   z-index: 2;
}

.nl_open_project{
   width: 57px;
   height: 57px;
   margin-top: 32px;
   margin-right: 32px;
   border-radius: 29px;
   border: 2px solid var(--blue);
   display: flex;
   justify-content: center;
   align-items: center;

   float: right;

   background-image: url(/assets/UI/nl_plus.svg);
   background-position: center;
   background-size: contain;
}

.nl_open_project_white{
   border: 2px solid var(--white) !important;
   background-image: url(/assets/UI/nl_plus_white.svg)
}

.nl_close_project{
   width: 57px;
   height: 57px;
   margin-left: auto;
   margin-bottom: 64px;

   border-radius: 29px;
   border: 2px solid var(--white);
   display: flex;
   justify-content: center;
   align-items: center;

   background-image: url(/assets/UI/nl_cross.svg);
   background-position: center;
   background-size: contain;
}

.nl_about_project{
   max-width: 1600px;
   width: 100%;
   margin: 120px auto 120px auto;
   display: flex;
   flex-wrap: wrap;
   z-index: 1;
}

.nl_workcontainer{
   width: 100%;
   height: 400px;
   display: flex;
   justify-content: right;
   column-gap: 50px;
   margin-top: 64px;
}

.nl_work_showcase{
   width: 40%;
   height: 400px;
   background-image: none;
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
}

.nl_project_year{
   width: 144px;
   height: 57px;
   margin-top: 32px;
   border-radius: 29px;
   border: 2px solid var(--blue);
   display: flex;
   justify-content: center;
   align-items: center;

   font-family: Thin;
   font-size: 32px;
   color: var(--blue);
   float: right;
}

.nl_project_white{
   border: 2px solid var(--white) !important;
   color: var(--white);
}

.nl_logo{
   height: 101px;
   width: 582px;

   background-image: url(../assets/branding/nl_logo_blue.svg);

   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
}

.nl_container_50{
   width: 50%;
   flex-grow: 1;
}

.nl_container_30{
   width: 35%;
}

.nl_container_70{
   width:65%;
}

.nl_client_container{
   width: 90%;
   height: 100%;
   display: grid;
   grid-template-columns: 33% 33% 33%;
   grid-template-rows: 50% 50%;
}

.nl_client_logo{
   width: 200px;
   height: auto;
   justify-self: center;
   align-self: center;
}

.nl_h1{
   font-family: Ultralight;
   font-size: 128px;

   text-align: right;
   color: var(--blue);
}

.nl_h1_it{
   font-family: Ultralight_IT;
}

.nl_h2{
   margin-top: 120px;
   font-family: Thin;
   font-size: 64px;

   text-align: right;
   color: var(--blue);
}

.nl_h2_menuitem{
   margin-top: 10px;
   font-family: Thin;
   font-size: 64px;
   color: var(--blue);
   cursor: pointer;
}

.container_big{
   margin: 360px auto 360px auto;
}

.footer_container{
   max-width: 1600px;
   width: 100%;
   margin: 48px auto 48px auto;
   display: flex;
   justify-content: space-between;
}

.footer_text{
   font-family: Thin;
   font-size: 32px;
   color: white;
}

/* Media Queries */

@media only screen and (max-width: 1800px){

   .footer_container{
      max-width: 1200px;
   }

   .nl_work_showcase{
      width: 40%;
      height: 300px;
   }

   .nl_about_project{
      max-width: 1200px;
   }

   .nl_third_desc{
      font-size: 48px;
   }

   .nl_container_third{
      height: 540px;
   }

   .nl_section{
      background-position: center;
   }

   .nl_logo_container{
      max-width: 1200px;
      width: 100%;
      margin: 0px auto 0px auto;
      position: sticky;
      top: 20vh;
      position: -webkit-sticky;
      height: 0px;
      overflow-y: display;
      z-index: 3;
   }

   .nl_container{
      max-width: 1200px;
      width: 100%;
      margin: 200px auto 200px auto;
      display: flex;
   }

   .nl_h1{
      font-family: Ultralight;
      font-size: 94px;
   
      text-align: right;
      color: var(--blue);
   }
   
   .nl_h1_it{
      font-family: Ultralight_IT;
   }
   
   .nl_h2{
      margin-top: 120px;
      font-family: Thin;
      font-size: 48px;
   
      text-align: right;
      color: var(--blue);
   }
   
   .nl_h2_menuitem{
      margin-top: 10px;
      font-family: Thin;
      font-size: 48px;
      color: var(--blue);
      cursor: pointer;
   }
}

@media only screen and (max-width: 1300px){

   .nl_close_project{
      width: 48px;
      height: 48px;
      margin-bottom: 48px;
   
      border-radius: 24px;
   }

   .nl_open_project{
      width: 48px;
      height: 48px;
      margin-top: 32px;
      margin-right: 32px;
      border-radius: 24px;
   }

   .nl_project_year{
      width: 120px;
      height: 48px;
      margin-top: 32px;
      border-radius: 24px;
      font-size: 24px;
   }

   .nl_workcontainer{
      width: 100%;
      height: 200px;
   }

   .nl_logo{
      width: 35vw;
      height: 8vw;
   }
 
   .nl_about_project{
      max-width: 90%;
   }

   .footer_container{
      max-width: 90%;
   }

   .nl_logo_container{
      width: 80%;
   }

   .nl_container{
      width: 80%;
      margin: 160px auto 160px auto;
   }

   .nl_h1{
      font-size: 6vw;
   }
   
   .nl_h2{
      margin-top: 100px;
      font-size: 3vw;
   }
   
   .nl_h2_menuitem{
      margin-top: 10px;
      font-size: 3vw;
   }

   .nl_work_showcase{
      width: 40%;
      height: auto;
   }

   .footer_text{
      font-size: 3vw;
   }

   .nl_client_container{
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 33% 33% 33%;
      grid-template-rows: 50% 50%;
   }
   
   .nl_client_logo{
      width: 120px;
      height: auto;
      justify-self: center;
      align-self: center;
   }
}

@media only screen and (max-width: 950px){

   .nl_client_container{
      width: 90%;
      height: 100%;
      display: grid;
      grid-template-columns: 50% 50%;
      grid-template-rows: 33% 33% 33%;
   }
   
   .nl_client_logo{
      width: 70%;
      height: auto;
      justify-self: center;
      align-self: center;
   }

   .nl_about_project{
      margin: 60px auto 60px auto;
   }

   .nl_logo_container{
      width: 300px;
      height: 250px;
      margin: 0;
      position: sticky;
      padding-top: 40px;
      padding-left: 40px;
      padding-bottom: 20px;
      top: 0;
      left: 0;
      position: -webkit-sticky;
      z-index: 3;
      background-color: var(--blue);
   }

   .nl_container{
      width: 90%;
      margin: 80px auto 80px auto;
   }

   .nl_h1{
      font-size: 52px;
   }
   
   .nl_logo{
      background-image: url(../assets/branding/nl_logo_white.svg);
      width: 250px;
      height: 70px;
   }

   .nl_h2{
      margin-top: 100px;
      font-size: 36px;
   }
   
   .nl_h2_menuitem{
      margin-top: 10px;
      font-size: 36px;
      color: white;
   }

   .nl_container_50{
      width: 100%;
   }
   
   .nl_container_30{
      width: auto;
      flex-grow: 1;
   }
   
   .nl_container_70{
      width:100%;
      flex-grow: 1;
   }

   .nl_third_desc{
      font-size: 36px;
   }

   .nl_container_third{
      width: 100%;
      height: 250px;
   }

   .nl_section{
      flex-wrap: wrap;
   }

   .nl_project_year{
      width: 125px;
      height: 50px;
      border-radius: 25px;
      font-size: 4vw;
      margin-top: 3vw;
   }

   .nl_close_project{
      width: 50px;
      height: 50px;
      margin-bottom: 48px;
      border-radius: 25px;
   }

   .nl_open_project{
      width: 50px;
      height: 50px;
      margin-top: 3vw;
      margin-right: 3vw;
      border-radius: 25px;
   }
   
   
}

@media only screen and (max-width: 500px){

   .nl_client_container{
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 50% 50%;
      grid-template-rows: 33% 33% 33%;
   }
   
   .nl_client_logo{
      width: 70%;
      height: auto;
      justify-self: center;
      align-self: center;
   }

   .nl_section{
      flex-wrap: wrap;
   }

   .client_header{
      display: block;
      width: 90vw;
      order: -1;
      text-align: left;
   }

   .client_header_text{
      text-align: center;
      margin-bottom: 50px;
   }

   .no_flex{
      display: flex;
      flex-wrap: wrap;
   }

   .nl_about_project{
      margin: 10vw auto 10vw auto;
   }

   .nl_close_project{
      border: 1.5px solid var(--white);
      margin-bottom: 36px;
   }

   .nl_project_year{
      border: 1.5px solid var(--blue);
      font-size: 32px;
   }

   .nl_open_project{
      border: 1.5px solid var(--blue);
   }

   .nl_workcontainer{
      margin-top: 5vw;
      column-gap: 48px;
   }

   .nl_work_showcase{
      width: 47.5%;
   }

   .nl_h1{
      font-size: 46px;
   }
   
   .nl_h2{
      margin-top: 100px;
      font-size: 24px;
   }
   
   .nl_h2_menuitem{
      margin-top: 10px;
      font-size: 36px;
      color: white;
   }

   .nl_logo{
      background-image: url(../assets/branding/nl_logo_white.svg);
      width: 170px;
   }

   .nl_third_desc{
      font-size: 36px;
   }

   .footer_container{
      margin: 24px auto 24px auto;
      display: block;
   }

   .footer_text{
      font-size: 16px;
      width: 100%;
      margin: 8px 0px 8px 0px;
   }

   .nl_logo_container{
      display: block;
      width: 200px;
      background-color: var(--blue);
      height: auto;
      top: 0;
      left: 0;
      padding-top: 5vw;
      padding-left: 5vw;
      padding-bottom: 5vw;
   }
}