@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes translationY {
  0% {
    content: "";
  }
  100% {
    transform: translateY(50px);
  }
}
@keyframes dot-flashing {
  0% {
    background-color: #ffffff;
  }
  50%, 100% {
    background-color: rgba(152, 128, 255, 0.2);
  }
}
#main-content #menu-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  margin: 0;
  margin-top: 80px;
}
#main-content #menu-container #menu {
  margin: 0;
  padding: 0;
  align-self: end;
  font-family: "Switzer";
  font-weight: 400;
  display: flex;
}
#main-content #menu-container #menu a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.8s;
}
#main-content #menu-container #menu a:hover {
  letter-spacing: 2px;
}
#main-content #menu-container #menu li {
  list-style-type: none;
  margin-left: 16px;
  margin-right: 16px;
}
#main-content #menu-container #menu li:first-child {
  margin-left: 0;
}
#main-content #menu-container #menu li:last-child {
  margin-right: 0;
}

#menu-icon {
  display: none;
  position: fixed;
  height: 30px;
  width: 35px;
  right: 40px;
  top: 35px;
  transition: all 0.4s;
}
#menu-icon:hover {
  cursor: pointer;
}
#menu-icon .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.6666666667);
}
#menu-icon .bar:first-child() {
  top: 0;
  transform: translateY(0);
}
#menu-icon .bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#menu-icon .bar:last-child {
  bottom: 0;
  transform: translateY(0);
}
#menu-icon.open .bar:first-child {
  transform: translateY(14px) rotate(45deg);
}
#menu-icon.open .bar:nth-child(2) {
  opacity: 0;
}
#menu-icon.open .bar:last-child {
  transform: translateY(-14px) rotate(-45deg);
}

@media screen and (max-width: 950px) {
  #menu-icon {
    display: block;
    z-index: 10;
  }
  #main-content #menu-container {
    position: fixed;
    top: 0;
    background-color: rgb(0, 0, 0);
    display: flex;
    width: 100vw;
    height: 100vh;
    transform: translateX(50vw);
    z-index: 3;
    margin-top: 0;
    transition: all 0.4s;
  }
  #main-content #menu-container.open {
    transform: translateX(-50vw);
  }
  #main-content #menu-container #menu {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  #main-content #menu-container #menu li, #main-content #menu-container #menu li:first-child, #main-content #menu-container #menu li:last-child {
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 50px;
  }
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #000000;
  color: #ffffff;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Switzer";
}
body.nomove {
  overflow-y: hidden;
}

#main-container {
  overflow-x: hidden;
}

.ovhid {
  overflow: hidden;
}

#title {
  font-family: "MuseoModerno";
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  color: #ffffff;
  margin-top: 50px;
  font-weight: 300;
}

#loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(19, 19, 19);
  z-index: 10;
  /**
  * ==============================================
  * Dot Flashing
  * ==============================================
  */
}
#loading #wip {
  display: block;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
}
#loading .dot-flashing {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
  left: 50%;
  transform: translateX(-50%);
  top: 60%;
}
#loading .dot-flashing::before, #loading .dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
#loading .dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}
#loading .dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #ffffff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}
#loading #load_logo {
  width: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#loading.remove {
  transition: all 0.5s;
  transform: translateY(-100%);
  /*width:0vw;
  height:0vh;
  border-radius: 50%;*/
}
#loading.remove .loader {
  transition: all 0.5s;
  opacity: 0;
}
#loading.remove #title {
  opacity: 0;
  padding-top: 50px;
}
#loading.remove #load_logo {
  opacity: 0;
}
#loading .loader {
  width: 48px;
  height: 48px;
  border: 3px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
#loading .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #FF3D00;
}

#main-content {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}
#main-content #logo {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 80px;
  top: 67px;
  width: 150px;
}
#main-content #small-pres {
  font-family: "Switzer";
  display: block;
  position: absolute;
  font-weight: 400;
  margin: 0;
  width: 350px;
  left: 360px;
  top: calc(50% - 50px);
  transform: translateY(calc(-50% + 50px));
  font-size: 36px;
  line-height: 47px;
  letter-spacing: 0.54px;
}
#main-content #small-pres.a {
  animation: 1s ease-in-out translationY forwards;
}
#main-content h2 {
  font-weight: 300;
}
#main-content #overlay {
  z-index: -1;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#main-content #vid {
  height: 100%;
  position: absolute;
  overflow-x: hidden;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
}
#main-content #previous-jobs {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  max-width: 720px;
  height: 70px;
  width: 100%;
  list-style-type: none;
  z-index: 2;
  position: absolute;
  left: 50%;
  bottom: 87px;
  transform: translateX(-50%);
}
#main-content #previous-jobs li img {
  height: 100%;
  filter: contrast(0.2);
  transition: all 0.6s;
}
#main-content #previous-jobs li img:hover {
  filter: contrast(1);
}
#main-content #previous-jobs li img#rolex {
  width: 106px;
}
#main-content #previous-jobs li img#gobelins {
  width: 106px;
}
#main-content #previous-jobs li img#ubisoft {
  width: 66px;
}
#main-content #previous-jobs li img#unige {
  width: 160px;
}

.giga-separator {
  width: 100%;
  height: 500px;
  background: url("./../../images/water-shape.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.giga-separator.alternate-sep {
  background: url("./../../images/white V2.jpg") no-repeat center center fixed !important;
}

@media screen and (max-width: 1280px) {
  #main-content #small-pres {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media screen and (max-width: 960px) {
  #main-content #logo {
    width: 50px;
    left: 40px;
    top: 19px;
  }
}
@media screen and (max-width: 890px) {
  #main-content #small-pres {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #main-content #previous-jobs {
    flex-direction: column;
    margin: 0 auto;
    height: auto;
    bottom: 0;
  }
  #main-content #previous-jobs li {
    margin: 0 auto;
    margin-bottom: 15px;
  }
  #main-content #previous-jobs li img {
    max-height: 40px;
  }
}/*# sourceMappingURL=index.css.map */