
/* || General */

html {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  background: #fafafa;
}



/* || Menu */
.menu {
  position: fixed;
  width: 100%;
  bottom: -50px;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  background-color: #ece9e6df;
  z-index: 99;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.menu-item {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-item a {
  color: #212121;
  text-decoration: none;
  padding: 0 15px;
  text-align: center;
  -webkit-transition: 900ms ease-in-out;
    -moz-transitionn: 900ms ease-in-out;
       -o-transition: 900ms ease-in-out;
          transition: 900ms ease-in-out;
  display: inline-block;
  height: 100%;
  line-height: 50px;
}

.menu-item a:hover {
  background-color: #212121;
  color: #ece9e6;
  text-decoration: none;
  -webkit-transition: 150ms ease-out;
    -moz-transitionn: 150ms ease-out;
       -o-transition: 150ms ease-out;
          transition: 150ms ease-out;
}

#menu.addmenuanimation {
  animation: menuanimation 0.5s;
  -webkit-animation-fill-mode: forwards; /* Chrome 16+, Safari 4+ */
     -moz-animation-fill-mode: forwards; /* FF 5+ */
       -o-animation-fill-mode: forwards; /* Not implemented yet */
      -ms-animation-fill-mode: forwards; /* IE 10+ */
          animation-fill-mode: forwards; /* When the spec is finished */
}

@keyframes menuanimation {
  from {
    bottom: -50px;
  }
  to {
    bottom: 0px;
  }
}

@keyframes menuanimation-ios {
  from {
    bottom: -80px;
  }
  to {
    bottom: 0px;
  }
}



/* || Logo in top left corner */

.logo a {
  position: fixed;
  left: 9px;
  top: 5px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #7c7c7c;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  z-index: 99;
  text-shadow: 0px 2px 4px rgba(98, 98, 98, 0.1);
  text-decoration: none;
}



/* || Loading animation */

.loading-wrapper {
  width: 120px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.loading-circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #212121;
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.loading-circle:nth-child(2) {
  left: 50px;
  animation-delay: 0.2s;
}
.loading-circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
.loading-shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.loading-shadow:nth-child(4) {
  left: 50px;
  animation-delay: 0.2s;
}
.loading-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.loading-text {
  position: relative;
  top: 85px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  font-size: 15px;
  color: #212121;
  text-align: center;
  text-transform: uppercase;
}

.shapelink {
  width: 0px;
  height: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid transparent;
  display: inline-block;
  vertical-align: middle;
}



/* || Intro screen */

.intro-screen {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 100vh;
  position: relative;
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: none;
  object-position: 50% 50%;
}

#video {
  object-fit: cover;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: fade-in 0.5s;
  -webkit-animation-fill-mode: forwards; /* Chrome 16+, Safari 4+ */
     -moz-animation-fill-mode: forwards; /* FF 5+ */
       -o-animation-fill-mode: forwards; /* Not implemented yet */
      -ms-animation-fill-mode: forwards; /* IE 10+ */
          animation-fill-mode: forwards; /* When the spec is finished */
}



/* || Navigation button */

.navigation-next-section {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-65%, -50%);
}

.navigation-next-section-text {
  text-transform: uppercase;
  color: #fafafa;
  font-family: "Montserrat", sans-serif;
  letter-spacing: px;
  -webkit-animation: blink-2 2.5s ease-in-out infinite both;
  animation: blink-2 2.5s ease-in-out infinite both;
}

.navigation-next-section-text a {
  color: #fafafa;
  text-decoration: none;
}

.navigation-next-section-arrow {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 85px;
  right: 0px;
  margin-left: 10px;
  border-right: 2px solid #fafafa;
  border-bottom: 2px solid #fafafa;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  -webkit-animation: blink-2 2.5s ease-in-out infinite both;
  animation: blink-2 2.5s ease-in-out infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-5 16:39:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation blink-2
 * ----------------------------------------
 */
@-webkit-keyframes blink-2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink-2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}



/* || About screen */

.aboutscreen {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 75vh;
}

.aboutscreen-frame {
  width: calc(70vw - 0.7vw);
  height: 25vw;
  max-height: 300px;
  margin: 0;
  position: relative;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ece9e6;
}

.aboutscreen-video video {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
  width: 40%;
  right: 0;
  z-index: -1;
}

.ThumbnailNavigationHelper a {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  opacity: 0;
  z-index: 1;
}

.aboutscreen-button {
  position: absolute;
  bottom: 35px;
  left: 50px;
  z-index: 1;
  height: 50px;
  width: 100px;
}

.aboutscreen-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #212121;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.aboutscreen-button a:hover {
  background-color: #212121;
  color: #ece9e6;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.aboutscreen-title {
  position: absolute;
  font-size: 70px;
  color: #212121;
  left: 25px;
  top: -62px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.aboutscreen-text {
  position: absolute;
  width: 45%;
  top: 50px;
  left: 50px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.aboutscreen-list {
  position: absolute;
  top: 10px;
  height: calc(100% - 20px);
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutscreen-list-item {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 3px;
  font-weight: 600;
}

.aboutscreen-list-item a {
  position: relative;
  text-decoration: none;
  left: 0;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.aboutscreen-list-item:hover a {
  position: relative;
  font-size: 15px;
  left: 7px;
  letter-spacing: 4px;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

/* || About project screen */

.aboutprojectscreen {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 75vh;
}

.aboutprojectscreen-frame {
  width: calc(70vw - 0.7vw);
  height: 25vw;
  max-height: 300px;
  margin: 0;
  position: relative;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ece9e6;
}

.aboutprojectscreen-video video {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
  width: 40%;
  right: 0;
  z-index: -1;
}

.aboutprojectscreen-button {
  position: absolute;
  bottom: 35px;
  left: 50px;
  z-index: 1;
  height: 50px;
  width: 100px;
}

.aboutprojectscreen-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #212121;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.aboutprojectscreen-button a:hover {
  background-color: #212121;
  color: #ece9e6;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.aboutprojectscreen-title {
  position: absolute;
  font-size: 70px;
  color: #212121;
  left: 25px;
  top: -62px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.aboutprojectscreen-title-style {
  position: absolute;
  top: -1.3ex;
  left: 25px;
  font-size: min(max(20px, 6vw), 70px);
  color: #212121;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  transform: translateY(-100%);
  
}

.aboutprojectscreen-text {
  position: absolute;
  width: 45%;
  top: 50px;
  left: 50px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.aboutprojectscreen-list {
  position: absolute;
  top: 10px;
  height: calc(100% - 20px);
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutprojectscreen-list-item {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 3px;
  font-weight: 600;
}

.aboutprojectscreen-list-item a {
  position: relative;
  text-decoration: none;
  left: 0;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.aboutprojectscreen-list-item:hover a {
  position: relative;
  font-size: 15px;
  left: 7px;
  letter-spacing: 4px;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

/* || Button back screen */

.buttonbackscreen {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 35vh;
}

.buttonbackscreen-button {
  position: relative;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  height: 50px;
  width: 100px;
}

.buttonbackscreen-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #212121;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.buttonbackscreen-button a:hover {
  background-color: #212121;
  color: #ece9e6;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

/* || Main Gallery */

.GalleryMain {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.GalleryMain-item {
  position: relative;
  -webkit-transition: 500ms ease-in-out;
  -moz-transitionn: 500ms ease-in-out;
  -o-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
}

.GalleryMain-item img, video {
  display: block;
  width: 100%;
  height: auto;
}

.GalleryMain-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
  background-color: rgb(33, 33, 33, 0);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.GalleryMain-text {
  font-size: 1.7em;
  color: #fafafa;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.GalleryMain-text a {
  color: #fafafa;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.GalleryMain-item:hover .GalleryMain-overlay {
  background-color: rgb(33, 33, 33, 0.7);
  opacity: 1;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.GalleryMain-item:hover .GalleryMain-text {
  opacity: 1;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.GalleryMain-overlay a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* || Project Gallery */

.ProjectGallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.ProjectGallery-item {
  position: relative;
  -webkit-transition: 500ms ease-in-out;
  -moz-transitionn: 500ms ease-in-out;
  -o-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
}

.ProjectGallery-item img, video {
  display: block;
  width: 100%;
  height: auto;
}

.ProjectGallery-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  }

.ProjectGallery-text {
  font-size: 1.7em;
  color: #fafafa;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.ProjectGallery-text a {
  color: #fafafa;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.ProjectGallery-item:hover .ProjectGallery-overlay {
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.ProjectGallery-item:hover .ProjectGallery-text {
  opacity: 1;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.ProjectGallery-overlay a {
  display: inline-block;
  width: 100%;
  height: 100%;
}


/* || Contact screen */

.contactscreen {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 75vh;
}

.contactscreen-frame {
  width: calc(70vw - 0.7vw);
  height: 25vw;
  max-height: 300px;
  margin: 0;
  position: relative;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ece9e6;
}

.contactscreen-video video {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
  width: 40%;
  right: 0;
  z-index: -1;
}

.contactscreen-text {
  position: absolute;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: 1.3em;
  color: #212121;
  font-family: "Open Sans", sans-serif;
}

.contactscreen-button {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  height: 50px;
  width: 100px;
}

.contactscreen-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #212121;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.contactscreen-button a:hover {
  background-color: #212121;
  color: #fafafa;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}

.contactscreen-title {
  position: absolute;
  font-size: 70px;
  color: #212121;
  left: 25px;
  top: -62px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.contactscreen-list {
  position: absolute;
  top: 10px;
  height: calc(100% - 20px);
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactscreen-list-item {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 2px;
  font-weight: 600;
}

.contactscreen-list-item a {
  position: relative;
  text-decoration: none;
  left: 0;
  color: #212121;
  -webkit-transition: 900ms ease-in-out;
  -moz-transitionn: 900ms ease-in-out;
  -o-transition: 900ms ease-in-out;
  transition: 900ms ease-in-out;
}

.contactscreen-list-item:hover a {
  position: relative;
  font-size: 15px;
  left: 7px;
  letter-spacing: 4px;
  -webkit-transition: 150ms ease-out;
  -moz-transitionn: 150ms ease-out;
  -o-transition: 150ms ease-out;
  transition: 150ms ease-out;
}


/* || Breakpoints */

@media screen and (min-width: 960px) {

  .GalleryMain {
    width: 70vw;
    margin: 0 auto;
  }

  .GalleryMain-item {
    margin: 0.35vw;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 0.7vw); /* <-- adjusting for margin */
  }

  .ProjectGallery {
    width: 70vw;
    margin: 0 auto;
  }

  .ProjectGallery-item {
    margin: 0.35vw;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33% - 0.5vw); /* <-- adjusting for margin */
  }

  .aboutscreen {
    min-height: 480px;
  }

  .buttonbackscreen {
    min-height: 480px;
  }

  .aboutprojectscreen {
    min-height: 480px;
  }

  .contactscreen {
    min-height: 480px;
  }

}

@media screen and (min-width: 600px) and (max-width: 959px) {

  .GalleryMain {
    width: 85vw;
    margin: 0 auto;
  }

  .GalleryMain-item {
    margin: 0.35vw;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 0.7vw); /* <-- adjusting for margin */
  }

  .ProjectGallery {
    width: 85vw;
    margin: 0 auto;
  }

  .ProjectGallery-item {
    margin: 0.35vw;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33% - 0.5vw); /* <-- adjusting for margin */
  }

  .aboutscreen {
    height: 75vh;
    min-height: 480px;
  }

  .aboutscreen-frame {
    width: calc(85vw - 0.7vw);
    height: 55vw;
  }

  .aboutscreen-title {
    font-size: 50px;
    left: 20px;
    top: -44px;
  }

  .aboutscreen-text {
    top: 35px;
    left: 35px;
  }

  .aboutscreen-button {
    bottom: 35px;
    left: 35px;
  }

  .buttonbackscreen {
    height: 35vh;
    min-height: 480px;
  }

  .aboutprojectscreen {
    height: 75vh;
    min-height: 480px;
  }

  .aboutprojectscreen-frame {
    width: calc(85vw - 0.7vw);
    height: 55vw;
  }

  .aboutprojectscreen-title {
    font-size: 50px;
    left: 20px;
    top: -44px;
  }

  .aboutprojectscreen-text {
    top: 35px;
    left: 40px;
  }

  .aboutprojectscreen-button {
    bottom: 35px;
    left: 35px;
  }

  .contactscreen {
    height: 75vh;
    min-height: 480px;
  }

  .contactscreen-frame {
    width: calc(85vw - 0.7vw);
    height: 55vw;
  }

  .contactscreen-title {
    font-size: 50px;
    left: 20px;
    top: -44px;
  }

  .contactscreen-list {
    left: 35px;
  }

}

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

  .menu {
    justify-content: center;
  }

  .menu-item a {
    padding: 0 10px;
  }

  .logo a {
    left: 3vw;
  }

  .GalleryMain {
    width: 97vw;
    margin: 0 auto;
  }

  .GalleryMain-item {
    margin: 0.35vw;
    flex-grow: 1;
    flex-shrink: 1;
  }

  .ProjectGallery {
    width: 97vw;
    margin: 0 auto;
  }

  .ProjectGallery-item {
    margin: 0.35vw;
    flex-grow: 1;
    flex-shrink: 1;
  }

  .aboutscreen {
    height: 70vh;
    /* min-height: 580px; */
  }

  .aboutscreen-frame {
    width: calc(97vw - 0.7vw);
    height: 40vh;
    /* max-height: none; */
    min-height: 250px;
  }

  .aboutscreen-title {
    font-size: 40px;
    left: 10px;
    top: -35px;
  }
  
  .aboutscreen-text {
    /* height: calc(60% - 20px); */
    left: 25px;
    width: 85%;
    top: 30px;
  }

  .aboutscreen-video {
    visibility: hidden;
  }

  .aboutscreen-video video {
    object-position: 50% 50%;
    height: 50%;
    width: 100%;
    bottom: 0;
  }

  .ThumbnailNavigationHelper a {
    height: 50%;
    width: 100%;
    bottom: 0;
    top: auto;
  }

  .aboutscreen-button {
    position: absolute;
    bottom: 25%;
    left: 25px;
    z-index: 1;
    height: 50px;
    width: 100px;
  }

  .aboutprojectscreen {
    height: 70vh;
    /* min-height: 580px; */
  }

  .aboutprojectscreen-frame {
    width: calc(97vw - 0.7vw);
    margin-top: 5vh;
    height: 30vh;
    /* max-height: none; */
    min-height: 250px;
  }

  .aboutprojectscreen-title {
    font-size: 40px;
    left: 10px;
    top: -17%;
  }
  
  .aboutprojectscreen-text {
    /* height: calc(60% - 20px); */
    left: 32px;
    width: 85%;
    top: 30px;
  }

  .aboutprojectscreen-video {
    visibility: hidden;
  }

  .aboutprojectscreen-video video {
    object-position: 50% 50%;
    height: 50%;
    width: 100%;
    bottom: 0;
  }

  .aboutprojectscreen-button {
    position: absolute;
    bottom: 56%;
    left: 25px;
    z-index: 1;
    height: 50px;
    width: 100px;
  }

  .buttonbackscreen {
    height: 35vh;
    /* min-height: 580px; */
  }
  
  .contactscreen {
    height: 90vh;
    /* min-height: 600px; */
  }

  .contactscreen-frame {
    width: calc(97vw - 0.7vw);
    height: 30vh;
    /* max-height: none; */
    min-height: 200px;
  }

  .contactscreen-title {
    font-size: 40px;
    left: 10px;
    top: -35px;
  }

  .contactscreen-list {
    top: 45px;
    height: calc(45% - 20px);
    left: 25px;
  }
  
  .contactscreen-list-item {
   font-size: 18px;
   line-height: 40px;
   font-weight: 500;
  }

  .contactscreen-video {
    visibility: hidden;
  }

  .contactscreen-video video {
    object-position: 50% 50%;
    height: 50%;
    width: 100%;
    bottom: 0;
  }

  .contactscreen-list-item:hover a {
    font-size: 18px;
  }

  
  
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */ 

  .menu{
    bottom: -90px;
    height: 90px;
  }

  #menu.addmenuanimation {
    animation: menuanimation-ios 0.5s;
    -webkit-animation-fill-mode: forwards; /* Chrome 16+, Safari 4+ */
       -moz-animation-fill-mode: forwards; /* FF 5+ */
         -o-animation-fill-mode: forwards; /* Not implemented yet */
        -ms-animation-fill-mode: forwards; /* IE 10+ */
            animation-fill-mode: forwards; /* When the spec is finished */
  }
}

@keyframes menuanimation-ios {
  from {
    bottom: -90px;
  }
  to {
    bottom: 0px;
  }
}



.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-14 13:48:24
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */

 @-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
