@-webkit-keyframes name {
  from {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes name {
  from {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes title {
  from {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes title {
  from {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes line {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes line {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(-359deg);
            transform: rotate(-359deg);
    opacity: 1;
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(-359deg);
            transform: rotate(-359deg);
    opacity: 1;
  }
}

@-webkit-keyframes par-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes par-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes par-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes par-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes banner {
  0% {
    margin-left: 100vw;
  }
  100% {
    margin-left: -110vw;
  }
}

@keyframes banner {
  0% {
    margin-left: 100vw;
  }
  100% {
    margin-left: -110vw;
  }
}

* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  color: white;
}

a {
  text-decoration: none;
  color: white;
  overflow: hidden;
}

.nav {
  position: fixed;
  height: 55px;
  width: 100vw;
  padding-top: 2vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
}

.nav a:hover {
  color: #f15d50;
}

.logo {
  margin-top: 30vh;
  width: 85px;
  height: auto;
  -webkit-animation: rotation 1.5s linear;
          animation: rotation 1.5s linear;
}

hr {
  border-top: 0.7px solid white;
  border-bottom: hidden;
  width: 50%;
  margin: auto;
  -webkit-animation: line 1.5s ease-in;
          animation: line 1.5s ease-in;
}

h1 {
  text-transform: uppercase;
  padding-top: 5vh;
  padding-bottom: 2vh;
  font-weight: 200;
  letter-spacing: 7px;
}

h1 strong {
  font-weight: 500;
}

h2 {
  font-weight: 600;
  font-size: 30px;
  padding-bottom: 5vh;
  text-transform: uppercase;
}

h3 {
  font-weight: 300;
  padding-top: 3vh;
  letter-spacing: 8px;
}

h4 {
  color: black;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  padding-top: 10vh;
}

h1.my-name {
  -webkit-animation: name 1.2s ease-in;
          animation: name 1.2s ease-in;
}

h3.my-title {
  -webkit-animation: title 1.5s ease-in;
          animation: title 1.5s ease-in;
}

p {
  letter-spacing: 6px;
  padding-top: 10px;
}

.parallax_container {
  height: 100vh;
  width: 100vw;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.parallax_overlay {
  height: 100vh;
  width: 100vw;
  margin: auto;
}

.one {
  background-color: rgba(0, 0, 0, 0.5);
}

.three,
.five {
  background-color: rgba(0, 0, 0, 0.2);
}

.two {
  color: black;
}

#parallax_one {
  background-color: #413c3c;
  background-image: url(static/images/computer.png);
}

#parallax_two {
  background-image: url(static/images/keyboard-coffee-left2.jpg);
}

#parallax_three {
  background-image: url(static/images/brushes-right.jpg);
}

#parallax_four {
  background-image: url(static/images/pencil-left.jpg);
}

#parallax_two,
#parallax_four {
  background-position: left;
}

.par-right {
  padding-top: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  text-align: left;
  padding-right: 20vw;
}

.dev {
  padding-right: 25vw;
}

.par-left {
  padding-top: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  float: left;
  -webkit-animation: par-left 0.5s ease-in;
          animation: par-left 0.5s ease-in;
  padding-left: 20vw;
}

.work {
  width: 100vw;
  height: auto;
  background-color: #e9e9e9;
  padding-bottom: 15vh;
}

.work h4 {
  padding-top: 12vh;
  padding-bottom: 5vh;
}

.work .exemples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-x: hidden;
}

.work .exemples p {
  max-width: 350px;
}

.work .exemples a {
  color: black;
}

.work .exemples .work-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
}

.work .exemples .work-on-scroll.appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.work .exemples .work-on-scroll.first.appear {
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}

.work .exemples .work-on-scroll.second.appear {
  -webkit-transition: 0.7s ease-in;
  transition: 0.7s ease-in;
}

.work .exemples .work-on-scroll.third.appear {
  -webkit-transition: 0.9s ease-in;
  transition: 0.9s ease-in;
}

.work .exemples .work-one {
  background-image: url(static/images/et-home.png);
}

.work .exemples .work-three {
  background-image: url(static/images/animation-photo.jpg);
}

.work .exemples .work-two {
  background-image: url(static/images/interface-postcard.jpg);
}

.work .exemples div {
  width: 350px;
  height: 350px;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  background-position: center;
  background-size: cover;
  border: 10px solid white;
}

.work .exemples div:hover {
  border: none;
}

footer h2 {
  padding-top: 10vh;
  color: #f15d50;
}

footer .bnr-bckgr {
  background-color: #f15d50;
}

footer .bnr-bckgr .banner {
  text-align: left;
  color: white;
  text-transform: uppercase;
  height: 50px;
  line-height: 35px;
  -webkit-animation: banner 15s linear;
          animation: banner 15s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

footer .bnr-bckgr .banner span {
  padding-left: 50px;
}

footer .contact {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .contact a {
  background-color: gray;
  margin-left: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

footer .contact a:hover {
  background-color: #f15d50;
}

footer .contact a .fab {
  line-height: 40px;
}

footer .contact a i {
  font-size: 20px;
}

.animations {
  width: 100vw;
  height: auto;
  padding-bottom: 10vh;
  background-color: #e9e9e9;
}

.animations h4 {
  padding-bottom: 5vh;
}

.animations .animation-container {
  margin: auto;
  overflow-y: hidden;
}

.animations p {
  color: black;
  letter-spacing: 0px;
  margin: auto;
  width: 65%;
  text-align: justify;
  padding-bottom: 20px;
}

.animations p a {
  color: #f15d50;
}

.animations video {
  width: 960px;
  padding-top: 5vh;
}

.web {
  background-color: #e9e9e9;
  width: 100vw;
  height: auto;
}

.web .websites {
  width: 65%;
  margin: auto;
}

.web .websites h5 {
  padding: 20px;
  color: #f15d50;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
}

.web .websites p {
  color: black;
  letter-spacing: 0px;
  margin: auto;
  text-align: justify;
}

.web .websites p a {
  color: #f15d50;
}

.web .websites .mockup-photo1 {
  padding-top: 20px;
  padding-bottom: 50px;
  width: 100%;
}

.web .websites .demo video {
  width: 100%;
}

.web .websites .mockup {
  width: 100%;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
}

.web .websites .mockup img {
  width: 50%;
  height: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.web .websites .mockup p {
  width: 50%;
  padding: 20px;
}

.web .websites .mockup-hor {
  width: 100%;
  margin-bottom: 50px;
}

.web .websites .mockup-hor img {
  width: 100%;
}

@media only screen and (max-width: 1115px) {
  .parallax_container {
    background-attachment: unset;
  }
  .animations p {
    width: 90%;
  }
  .animations video {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .bnr-bckgr {
    display: none;
  }
  .three {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .two,
  .four {
    background-color: rgba(255, 255, 255, 0.5);
  }
  body {
    font-weight: 500;
  }
  h3 {
    letter-spacing: 10px;
  }
  hr {
    width: 60%;
  }
  .dev {
    padding-right: 12vw;
  }
  .quality {
    padding-right: 12vw;
    width: 80%;
  }
  .web .websites {
    width: 80%;
    margin: auto;
  }
  .animations .animation-container {
    display: none;
  }
}

@media only screen and (max-height: 414px) {
  .par-left,
  .par-right {
    padding-top: 15vh;
  }
  .dev {
    padding-top: 6vh;
  }
  .quality {
    padding-right: 12vw;
    width: 60%;
  }
  .work h4 {
    padding-top: 12vh;
    padding-bottom: 1vh;
  }
}

@media only screen and (min-height: 1012px) {
  * {
    overflow-x: hidden;
  }
  .par-left,
  .par-right {
    padding-top: 30vh;
  }
  .quality {
    padding-right: 8vw;
    width: 50%;
  }
  #paralax_three {
    background-position: center;
  }
}
/*# sourceMappingURL=style.css.map */