/* -----  Mehmet Root  --------------------------------------------- */

:root {
  --black: black;
  --white: white;
  --bg: blue;
  --archivo-light: 300;
  --archivo-reg: 400;
  --archivo-semibold: 600;
  --archivo-bold: 700;
}

/* -----  General  --------------------------------------------- */

* {
  margin: 0;
  padding: 0;
}

body{
    background: var(--white);
    padding: 0px;
    margin: 0px;
    /*font-size: 22pt;*/
    font-size: 20pt;
    font-family: 'Archivo', sans-serif;
    font-weight: var(--archivo-reg);
    color: var(--black);
    /*transform: blur(0px);*/
    transition: filter 1.2s;
    transition: -webkit-filter 1.2s;
}

a{
  color: inherit;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

.project_info_container a{
  text-decoration: underline;
}

h1{
  font-size: inherit;
  font-weight: inherit;
  padding-bottom: 30px;
}

h2{
  font-size: inherit;
  font-weight: var(--archivo-bold);
  padding-bottom: 30px;
}

h3{
  font-size: 28pt;
  font-weight: var(--archivo-bold);
  padding-bottom: 30px;
}

.semi_bold{
  font-weight: var(--archivo-semibold);
}

.header_home{
  position: fixed;
  top: 15px;
  left: 15px;
  font-weight: var(--archivo-semibold);
  line-height: 120%;
  z-index: 10;
}

.header_home p{
  padding-bottom: 0px;
}

.social_header{
  font-weight: var(--archivo-reg);
}

.info_home{
  position: fixed;
  top: 15px;
  right: 15px;
  font-weight: var(--archivo-semibold);
  z-index: 10;
}

.progress-container {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 20px;
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: var(--white);
  width: 0%;
  z-index: 10;
}


.bg_image{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.showcase_container{
  position: relative;
  display: inline-block;
  float: left;
  margin-top: 150px;
  width: 100vw;
  z-index: 5;
}

.thumb_container{
  position: relative;
  display: inline-block;
  float: left;
  width: 50%;
  padding-top: 5vw;
  padding-bottom: 5vw;
  overflow: hidden;
}


.thumb_container:nth-child(odd) .thumb{
  margin-left: 50%;
  transform: translate(-50%, 0%);
}

.thumb_container:nth-child(even) .thumb{
  margin-left: 100%;
  transform: translate(-100%, 0%);
}

.thumb{
  width: 70%;
  cursor: pointer;
}

.thumb:hover > .thumb_img{
  filter: blur(5px);
}

.thumb:hover > .thumb_title{
  display: inline;
}

.thumb_img{
  width: 100%;
  height: auto;
  transition: filter 0.5s;
  transition: -webkit-filter 0.5s;
  z-index: 2;
}

.thumb_title{
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-weight: var(--archivo-reg);
  color: var(--white);
  transform: translate(0%, -50%);
  z-index: 3;
  display: none;
}

/* -----  Project Page  --------------------------------------------- */

.project_page{
  filter: blur(50px);
  transition: filter 1.2s;
  transition: -webkit-filter 1.2s;
  z-index: 10;
}

#project_logo{
  display: none;
}

.project_info_container{
  position: relative;
  display: inline-block;
  float: left;
  width: calc(700px - 30px);
  height: calc(100vh - 30px);
  padding: 15px;
  color: var(--white);
  background: var(--bg);
  overflow-y: scroll;
  z-index: 5;
}

.project_images_container{
  position: relative;
  display: inline-block;
  float: right;
  width: calc(100% - 700px);
  height: calc(100vh - 120px);
  padding-top: 120px;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 5;
  scrollbar-color: red;
  scrollbar-width: thin;
}

p{
  padding-bottom: 30px;
}

/* width */
.project_info_container::-webkit-scrollbar {
  width: 20px;
  cursor: pointer;
}
 
/* Handle */
.project_info_container::-webkit-scrollbar-thumb {
  background: var(--white); 
}

/* width */
.project_images_container::-webkit-scrollbar {
  width: 20px;
  cursor: pointer;
}
 
/* Handle */
.project_images_container::-webkit-scrollbar-thumb {
  background: var(--bg); 
}

.img_container{
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 60px;
}

.img_container:nth-child(odd) .img_position{
  margin-left: 50%;
  transform: translate(-50%, 0%);
  /*background: red;*/
}

.img_container:nth-child(even) .img_position{
  margin-left: 100%;
  transform: translate(-100%, 0%);
}

.img_position{
  width: 70%;
}

.img_project{
  width: 100%;
  height: auto;
}

.img_caption{
  margin-top: 10px;
  font-size: 14pt;
  font-weight: var(--archivo-reg);
}

.embed{
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  /*background: red;*/
}

.embed iframe{
  width: 100% !important;
}

.related_container{
  margin-top: 120px;
}

.related_img_container{
  position: relative;
  display: inline-block;
  float: left;
  /*margin-top: 120px;*/
  width: 100%;
  max-height: 40vw;
  overflow: hidden;
  /*width: calc(100% - 700px);*/
}

.related_img_container:hover .related_img{
  filter: blur(0px);
}

.related_img_container:hover .related_title{
  display: none;
}

.related_img{
  margin-left: -5%;
  margin-bottom: -10%;
  width: 110%;
  height: auto;
  filter: blur(5px);
  transition: filter 0.5s;
  transition: -webkit-filter 0.5s;
  z-index: 2;
}

.related_title{
  position: absolute;
  top: 55%;
  width: 100%;
  color: var(--white);
  font-size: 40pt;
  font-weight: var(--archivo-semibold);
  text-align: center;
  transform: translate(0%, -50%);
  z-index: 5;
}

/* -----  About Page  --------------------------------------------- */

.exit_about{
  position: fixed;
  top: 15px;
  right: 15px;
  color: var(--white);
  font-weight: var(--archivo-semibold);
  z-index: 10;
}

.about_text_container{
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  z-index: 5;
}

.about_text_container .col1{
  width: calc(50% - 30px);
  padding: 15px;
  color: var(--white);
  background: var(--bg);
}

.about_text_container .col2{
  width: 50%;
  overflow: hidden;
}

.about_event_container{
  position: relative;
  display: inline-block;
  float: left;
  width: 100%;
  font-weight: var(--archivo-reg);
  z-index: 5;
}

.about_event_container p{
  padding-bottom: 0px;
}

.event_container{
  position: relative;
  display: inline-block;
  float: left;
  width: calc(100% - 30px);
  padding: 15px;
  border-bottom: 1px solid var(--bg);
}

.event_container:hover{
  color: var(--white);
  background: var(--bg);
}

.event_container .col1{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
  width: calc(30% - 15px);
}

.event_container .col3{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
  width: calc(25% - 15px);
}

.event_container .col2{
  position: relative;
  display: inline-block;
  float: left;
  width: 15%;
}

/* -----  Floater  --------------------------------------------- */

.floater{
  position: fixed;
  width: 25vw;
  height: auto;
  top: 0px;
  left: 0px;
  cursor: pointer;
  z-index: 10;
  display: none;
  transition: filter 0.5s;
  transition: -webkit-filter 0.5s;
}

.floater:hover{
  filter: blur(5px);
}

#floater1{
  display: none;
}

#floater2{
  display: none;
  transform: rotate(-10deg);
}

.footer{
  display: inline-block;
  width: calc(100% - 30px);
  padding: 15px;
  padding-bottom: 60px;
  /*background: red;*/
}

/* -----  Splash Page  --------------------------------------------- */

.splash_container{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 20;
}

.splash_text{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: auto;
  transform: translate(-50%, -50%);
}

/* -----  Audio Interaction  --------------------------------------------- */

audio{
  display: none;
}

.audio_text_container{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  z-index: 1000;
  display: none;
}

.audio_text{
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 800px;
  width: calc(100% - 60px);
  text-align: center;
  transform: translate(-50%, -50%);
}

/* -----  Optimisation  --------------------------------------------- */

@media only screen and (max-width: 1200px) {
  .project_exit{
    color: var(--white);
  }

  #project_logo{
    display: inline;
  }

  .project_info_container {
    /*float: right;*/
    width: calc(100% - 30px);
    height: auto;
    overflow-y: hidden;
    /*padding-top: 90px;*/
  }

  .project_images_container {
    /*float: right;*/
    width: 100%;
    height: auto;
    overflow-y: hidden;
  }

  .related_img_container{
    max-height: 70vw;
  }
}

@media only screen and (max-width: 1100px) {
  .floater{
    width: 40vw;
  }

  .event_container .col1{
    width: calc(50% - 15px);
  }

  .event_container .col3{
    width: calc(50% - 15px);
  }

  .event_container .col2{
    width: 50%;
  }
}

@media only screen and (max-width: 900px) {
  .about_text_container{
    position: relative;
    display: inline-block;
    float: left;
  }

  .about_text_container .col1{
    position: relative;
    display: inline-block;
    float: left;
    width: calc(100% - 100px);
    padding-right: 100px;
  }

  .about_text_container .col2{
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 60vw;
  }

  .project_exit {
    color: var(--white) !important;
  }
}

@media only screen and (max-width: 820px) {
  .splash_text{
    width: calc(100vw - 30px);
  }

  .floater{
    width: 50vw;
  }

  .thumb_container {
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .event_container .col1{
    width: calc(100% - 15px);
  }

  .event_container .col3{
    width: calc(100% - 15px);
  }

  .event_container .col2{
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  body {
    font-size: 14pt;
  }

  .img_caption {
    font-size: 10pt;
  }

  .related_title {
    font-size: 24pt;
  }

  h3{
    font-size: 19pt;
  }
 
  .floater{
    width: 60vw;
  }

  .related_container{
    margin-top: 60px;
  }
}