@import 'styles/fonts.css';
@font-face {
  font-family: "Viola";
  src: url("VIOLA.ttf") format("truetype");
}
html {
  height: 100%;
  width: 100vw;
  overflow-x: hidden;
}

html.has-scroll-smooth {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
}

body {
  margin: 0;
  min-height: 100%;
  width: 100vw;
  font-family: "Viola", sans-serif;
  color: #272727;
  overflow: visible;
  background-color: #141414;
  background-image: linear-gradient(#272727 1px, transparent 1px), linear-gradient(to right, #272727 1px, #141414 1px);
  background-size: 42px 42px;
  background-attachment: fixed;
}
body .float {
  position: fixed;
  height: 50px;
  width: 50px;
  background-color: #141414;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
body .float.circle-float {
  border-radius: 25px;
}
body .float.transparent-float {
  background-color: transparent;
  box-shadow: none;
}
body .float.scroll {
  z-index: 2;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 63px;
  width: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease-in;
}
body .float.scroll.hidden-scroll {
  height: 0;
  opacity: 0;
}
body .float.scroll .scroll-outline {
  border: 2px solid #F8F8F8;
  box-sizing: border-box;
  height: 63px;
  width: 36px;
  border-radius: 18px;
  transform: scale(0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
body .float.scroll .scroll-outline .scroll-circle {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background-color: #F8F8F8;
  transform: translateY(10px);
  -webkit-animation: scrolldown 2.5s infinite;
          animation: scrolldown 2.5s infinite;
}
@-webkit-keyframes scrolldown {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(47px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrolldown {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(47px);
  }
  100% {
    opacity: 0;
  }
}
body .float.logo {
  top: 15px;
  left: 15px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .float.logo:hover {
  cursor: pointer;
}
body .float.logo .logo-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
body .float.logo .logo-text span {
  color: #E7AF36;
  font-size: 40px;
  font-weight: 800;
  margin-left: 5px;
}
body .float.toggle-nav-cont {
  z-index: 3;
  top: 15px;
  right: 15px;
  transition: all 0.6s ease-in;
}
body .float.toggle-nav-cont.on {
  scale: 100;
}
body .float.toggle-nav {
  z-index: 5;
  top: 15px;
  right: 15px;
}
body .float.toggle-nav.on span:nth-child(1) {
  -webkit-animation: span-first-on 0.5s ease-in-out;
          animation: span-first-on 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav.on span:nth-child(2) {
  -webkit-animation: span-second-on 0.5s ease-in-out;
          animation: span-second-on 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav.on span:nth-child(3) {
  -webkit-animation: span-third-on 0.5s ease-in-out;
          animation: span-third-on 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav span {
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  background: #F8F8F8;
  border-radius: 1px;
  overflow: hidden;
  transition: all 0.3s linear;
}
body .float.toggle-nav span:nth-child(1) {
  -webkit-animation: span-first-off 0.5s ease-in-out;
          animation: span-first-off 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav span:nth-child(2) {
  -webkit-animation: span-second-off 0.5s ease-in-out;
          animation: span-second-off 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav span:nth-child(3) {
  -webkit-animation: span-third-off 0.5s ease-in-out;
          animation: span-third-off 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes span-first-on {
  0% {
    transform: translate(-50%, -300%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes span-first-on {
  0% {
    transform: translate(-50%, -300%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@-webkit-keyframes span-first-off {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -300%);
  }
}
@keyframes span-first-off {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -300%);
  }
}
@-webkit-keyframes span-second-on {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-150%, -50%) scale(0);
  }
}
@keyframes span-second-on {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-150%, -50%) scale(0);
  }
}
@-webkit-keyframes span-second-off {
  0% {
    transform: translate(-150%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes span-second-off {
  0% {
    transform: translate(-150%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes span-third-on {
  0% {
    transform: translate(-50%, 200%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes span-third-on {
  0% {
    transform: translate(-50%, 200%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes span-third-off {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 200%);
  }
}
@keyframes span-third-off {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 200%);
  }
}
body .float.toggle-nav:hover {
  cursor: pointer;
}
body nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.3s linear 0s;
}
body nav.on {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s linear 0.25s;
}
body nav a {
  font-family: "Viola", sans-serif;
  color: #F8F8F8;
  padding: 0;
  margin: 5vh;
  position: relative;
}
body nav a::before, body nav a::after {
  content: "";
  background: #E7AF36;
  position: absolute;
  top: calc(50% - 1px);
  height: 2px;
  width: 0;
}
body nav a::before {
  left: -5%;
}
body nav a::after {
  right: -5%;
  transition: width 500ms ease;
}
body nav a:hover, body nav a.active {
  color: #E7AF36;
}
body nav a:hover::before, body nav a.active::before {
  width: 110%;
  transition: width 500ms ease;
}
body nav a:hover::after, body nav a.active::after {
  width: 110%;
  background: transparent;
  transition: 0;
}
body a {
  transition: 0.3s;
  text-decoration: none;
}
body h1 {
  text-align: center;
  margin: 0;
  font-weight: bold;
  color: #F8F8F8;
}
body h1.light {
  font-weight: 200;
}
body .home-button {
  width: 14vw;
  height: 55.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #F8F8F8;
  color: #272727;
  margin-top: 70px;
}
body .home-button:hover {
  cursor: pointer;
}
body p {
  padding: 0;
  font-size: 18px;
  letter-spacing: 1px;
}
body .portfolio {
  width: 100%;
}
body .portfolio .sticky {
  width: 100%;
  height: 100vh;
}
body .portfolio .sticky .portfolio-title {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body .portfolio .sticky .portfolio-title .title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}
body .portfolio .sticky .portfolio-title .title-container h1 {
  overflow: hidden;
}
body .portfolio .sticky .img-container {
  position: absolute;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
  background-size: contain;
}
body .portfolio .sticky .img-container.big {
  height: 34vmin;
  width: 54vmin;
}
body .portfolio .sticky .img-container.normal {
  height: 21vmin;
  width: 34.5vmin;
}
body .portfolio .sticky .img-container.small {
  height: 14vmin;
  width: 21vmin;
}
body .portfolio .sticky .img-container#ic1 {
  top: 40px;
  background-image: url("./portfolio/992_desktop.png");
}
body .portfolio .sticky .img-container#ic2 {
  top: 35%;
  background-image: url("./portfolio/advantage_desktop.png");
}
body .portfolio .sticky .img-container#ic3 {
  top: 72%;
  background-image: url("./portfolio/boat-app.png");
}
body .portfolio .sticky .img-container#ic4 {
  top: 10%;
  background-image: url("./portfolio/hima_desktop.png");
}
body .portfolio .sticky .img-container#ic5 {
  top: 15%;
  background-image: url("./portfolio/denapero_desktop.png");
}
body .portfolio .sticky .img-container#ic6 {
  background-image: url("./portfolio/windcrane_map.png");
}
body .portfolio .sticky .img-container#ic7 {
  top: 30%;
  background-image: url("./portfolio/windcranego.png");
}
body .portfolio .sticky .img-container#ic8 {
  top: 75%;
  background-image: url("./portfolio/advantage-eu.png");
}
body .portfolio .sticky .img-container p, body .portfolio .sticky .img-container h3 {
  letter-spacing: normal;
  transition: all 0.3s ease-in;
  transition-delay: 0.1s;
}
body .portfolio .sticky .img-container.mobile {
  height: 25vmin;
  width: 14vmin;
}
body footer {
  color: #F8F8F8;
  width: 100%;
  padding-bottom: 50px;
}
body footer .footer-banner {
  width: 100%;
  position: relative;
  padding: 20px 0 30px 0;
  border-bottom: 2px solid #F8F8F8;
}
body footer .footer-banner .banner-content {
  position: relative;
  left: 15%;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
body footer .footer-banner h4 a {
  text-align: center;
  margin: 0;
  padding: 24px 0;
  text-transform: uppercase;
  color: #F8F8F8;
  font-family: "Viola", sans-serif;
  position: relative;
}
body footer .footer-banner h4 a::before, body footer .footer-banner h4 a::after {
  content: "";
  background: #E7AF36;
  position: absolute;
  top: calc(50% - 0.5px);
  height: 1px;
  width: 0;
}
body footer .footer-banner h4 a::before {
  left: -5%;
}
body footer .footer-banner h4 a::after {
  right: -5%;
  transition: width 500ms ease;
}
body footer .footer-banner h4 a:hover, body footer .footer-banner h4 a.active {
  color: #E7AF36;
}
body footer .footer-banner h4 a:hover::before, body footer .footer-banner h4 a.active::before {
  width: 110%;
  transition: width 500ms ease;
}
body footer .footer-banner h4 a:hover::after, body footer .footer-banner h4 a.active::after {
  width: 110%;
  background: transparent;
  transition: 0;
}
body footer .footer-content {
  position: relative;
  left: 15%;
  width: 70%;
}
body footer .footer-content span {
  font-family: "Lato", sans-serif;
}
body footer .footer-content .footer-col-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Viola", sans-serif;
}
body footer .footer-content .footer-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
  font-weight: 300;
}
body footer .footer-content .footer-cols a {
  margin-bottom: 15px;
  color: #F8F8F8;
  font-family: "Lato", sans-serif;
}
body footer .footer-content .footer-cols a:hover {
  cursor: pointer;
  color: #E7AF36;
}
body footer .footer-content .footer-cols .col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
}
body footer .footer-content .footer-cols .col i {
  margin-right: 8px;
}
body footer .footer-content .footer-cols .footer-col1 {
  margin-bottom: 10vmax;
}
body footer .footer-content .footer-cols .footer-col1 .col:first-of-type {
  margin-bottom: 4vmax;
}
body footer .footer-content .footer-cols .footer-col1 .row {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
body footer .footer-content .footer-cols .footer-col:first-of-type {
  margin-right: 10vmax;
  margin-bottom: 10vmax;
}

@media only screen and (orientation: portrait) {
  body .portfolio {
    height: 780vmax;
  }
  body .portfolio .img-container#ic1 {
    top: 40px;
    left: 130vmin;
  }
  body .portfolio .img-container#ic2 {
    top: 35%;
    left: 180vmin;
  }
  body .portfolio .img-container#ic3 {
    left: 100vmin;
  }
  body .portfolio .img-container#ic4 {
    left: 240vmin;
  }
  body .portfolio .img-container#ic5 {
    left: 210vmin;
  }
  body .portfolio .img-container#ic6 {
    top: 40%;
    left: 210vmin;
  }
  body .portfolio .img-container#ic7 {
    left: 225vmin;
  }
  body .portfolio .img-container#ic8 {
    left: 330vmin;
  }
}
@media only screen and (orientation: landscape) {
  body .portfolio {
    height: 1100vmax;
  }
  body .portfolio .img-container#ic1 {
    left: 130vw;
  }
  body .portfolio .img-container#ic2 {
    top: 35%;
    left: 180vw;
  }
  body .portfolio .img-container#ic3 {
    left: 100vw;
  }
  body .portfolio .img-container#ic4 {
    left: 210vw;
  }
  body .portfolio .img-container#ic5 {
    left: 180vw;
  }
  body .portfolio .img-container#ic6 {
    top: 35%;
    left: 210vw;
  }
  body .portfolio .img-container#ic7 {
    left: 210vw;
  }
  body .portfolio .img-container#ic8 {
    left: 270vw;
  }
}
@media only screen and (min-height: 740px) and (orientation: portrait) {
  body .portfolio {
    height: 680vmax;
  }
}
@media only screen and (min-width: 450px) and (orientation: portrait) {
  body .portfolio {
    height: 800vmax;
  }
}
@media only screen and (min-width: 550px) and (orientation: portrait) {
  body .portfolio {
    height: 900vmax;
  }
}
@media only screen and (min-width: 600px) and (orientation: portrait) {
  body .float {
    height: 60px;
    width: 60px;
  }
  body .float.circle-float {
    border-radius: 30px;
  }
  body .float.logo {
    top: 25px;
    left: 25px;
  }
  body .float.toggle-nav-cont {
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav {
    z-index: 5;
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav span {
    width: 40px;
  }
}
@media only screen and (min-width: 750px) and (min-height: 600px) and (orientation: landscape) {
  body .float {
    height: 60px;
    width: 60px;
  }
  body .float.circle-float {
    border-radius: 30px;
  }
  body .float.logo {
    top: 25px;
    left: 25px;
    min-width: 60px;
  }
  body .float.toggle-nav-cont {
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav {
    z-index: 5;
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav span {
    width: 40px;
  }
}
@media only screen and (min-width: 720px) and (orientation: portrait) {
  body .portfolio {
    height: 980vmax;
  }
}
@media only screen and (min-width: 800px) {
  body footer .footer-banner .banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 800px) and (orientation: portrait) {
  body .portfolio {
    height: 920vmax;
  }
}
@media only screen and (min-width: 944px) {
  body footer .footer-banner .banner-content {
    width: 90%;
    left: 5%;
  }
  body footer .footer-content {
    width: 90%;
    left: 5%;
  }
  body footer .footer-content .footer-cols .footer-col1 {
    margin-bottom: 0;
    width: 35%;
  }
  body footer .footer-content .footer-cols .footer-col1 .col:first-of-type {
    margin-bottom: 4vmax;
  }
  body footer .footer-content .footer-cols .footer-col1 .col {
    display: none;
  }
  body footer .footer-content .footer-cols .footer-col1 .row {
    display: flex;
  }
  body footer .footer-content .footer-cols .footer-col {
    margin-bottom: 0;
  }
  body footer .footer-content .footer-cols .footer-col:first-of-type {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1000px) and (min-height: 600px) and (orientation: landscape) {
  body .float.logo {
    left: 30px;
  }
  body .float.toggle-nav-cont {
    right: 30px;
  }
  body .float.toggle-nav {
    right: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  body footer .footer-banner .banner-content {
    width: 80%;
    left: 10%;
  }
  body footer .footer-content {
    width: 80%;
    left: 10%;
  }
  body footer .footer-content .footer-cols .footer-col1 {
    width: 40%;
  }
  body footer .footer-content .footer-cols .footer-col1 .col:first-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  body footer .footer-banner .banner-content {
    width: 70%;
    left: 15%;
  }
  body footer .footer-banner a {
    padding: 12px 0;
  }
  body footer .footer-content {
    width: 70%;
    left: 15%;
  }
}/*# sourceMappingURL=portfolio.css.map */