/* Application */

html,
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 50px;
  width: 1000px;
}

.logo {
  display: flex;
  text-decoration: none;
}

.burger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  outline: none;
  padding: 0;
  position: fixed;
  right: 20px;
  transform: scale(0.75);
  top: 20px;
  width: 35px;
  z-index: 10;
}

.burger::before,
.burger::after,
.burger-inner {
  background: #000;
  border-radius: 3px;
  content: "";
  display: block;
  height: 3px;
  margin: 7px 0;
  transition: transform 0.2s ease-in-out;
}

.burger.white::before,
.burger.white::after,
.burger.white .burger-inner,
.burger.active::before,
.burger.active::after,
.burger.active .burger-inner {
  background: #fff;
}

.burger.active::before {
  transform: translateY(10px) rotate(45deg);
}

.burger.active .burger-inner {
  transform: scale(0);
}

.burger.active::after {
  transform: translateY(-10px) rotate(-45deg);
}

.navigation {
  background: #2ba5e5;
  box-sizing: border-box;
  opacity: 0;
  padding: 20px 40px;
  position: fixed;
  right: 10px;
  top: -1000px;
  transition: opacity 0.5s ease-out;
  width: 400px;
  z-index: 5;
}

.navigation.active {
  opacity: 1;
  top: 10px;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.navigation a {
  color: #fff;
  font-family: "Graphik", sans-serif;
  font-size: 150%;
  line-height: 200%;
  text-decoration: none;
  transition: opacity 0.2s;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.navigation a:hover {
  opacity: 0.5;
}

.get-in-touch {
  padding: 15px 0;
}

.get-in-touch h4 {
  color: #fff;
  font-family: "Graphik", sans-serif;
  font-size: 125%;
  font-weight: bold;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

footer {
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  min-height: 500px;
}

footer .logo {
  display: inline-flex;
  text-decoration: none;
}

footer .heading {
  color: #242424;
  font-family: "Graphik", sans-serif;
  font-size: 450%;
  font-weight: bold;
  margin: 0;
}

footer .email {
  display: inline-flex;
  color: #242424;
  font-family: "Graphik", sans-serif;
  font-size: 225%;
}

footer .email:hover {
  color: #2f77eb;
}

/* Home */

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

.fade-in {
  animation: fadeIn ease-in 1;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.heading {
  color: #000;
  font-size: 400%;
  font-family: "Graphik", sans-serif;
  font-weight: bold;
  line-height: 121%;
  margin: 100px 0;
  margin-top: 175px;
}

.heading p:nth-child(1) {
  animation-delay: 0.7s;
}

.heading p:nth-child(2) {
  animation-delay: 1.7s;
}

.home .cards {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 50px 100px;
  justify-items: center;
  list-style: none;
  margin: 0;
  padding: 50px 0 100px;
}

.home .card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.home .card .title {
  color: #141414;
  font-family: "Graphik", sans-serif;
  font-size: 280%;
  font-weight: bold;
  line-height: 105%;
  margin: 0;
  padding: 25px 0 10px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.home .card .title a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.home .card:not(.locked):hover .title a {
  color: #0049ca;
}

.home .card .subtitle {
  color: rgba(34, 34, 34, 0.6);
  font-family: "Graphik", sans-serif;
  font-size: 130%;
  font-weight: normal;
  line-height: 135%;
  letter-spacing: -0.5px;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.home .card .subtitle a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home .card .cover {
  align-items: center;
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.home .card .cover img {
  border-radius: 10px;
  width: 100%;
}

.home .card.locked:hover {
  filter: grayscale(1);
}

.home .card.locked .cover::after {
  background: url("../assets/images/lock.svg") no-repeat;
  background-size: 100px;
  content: "";
  height: 100px;
  opacity: 0;
  position: absolute;
  width: 100px;
}

.home .card.locked:hover .cover::after {
  opacity: 1;
}

/* Work */

.work .jumbotron {
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.veho .jumbotron {
  background: #18222a;
}

.work .jumbotron .title {
  color: #242424;
  font-family: "Graphik", sans-serif;
  font-size: 512.5%;
  font-weight: bold;
  line-height: 105%;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.veho .jumbotron .title {
  color: #fff;
}

.work .jumbotron .subtitle {
  color: #242424;
  font-family: "Graphik", sans-serif;
  font-size: 150%;
  font-weight: normal;
  line-height: 135%;
  margin: 10px 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.veho .jumbotron .subtitle {
  color: #fff;
}

.about section:last-child,
.work section:last-child {
  margin-bottom: 120px;
}

.about section .heading,
.work section .heading {
  color: #141414;
  font-family: "Graphik", sans-serif;
  font-size: 300%;
  font-weight: bold;
  line-height: 105%;
  margin: 120px 0 30px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.about section .info,
.work section .info {
  color: #141414;
  font-family: "Graphik", sans-serif;
  font-size: 150%;
  font-weight: normal;
  line-height: 135%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.about section .point,
.work section .point {
  display: block;
  font-weight: 600;
  margin: 10px 0;
}

.about section figure,
.work section figure {
  margin: 120px 0;
}

.work section blockquote {
  color: rgba(20, 20, 20, 0.56);
  margin-left: 0;
  margin-right: 0;
}

.work section ul {
  list-style: "- ";
}

.work section figure:last-child {
  margin-bottom: 0;
}

.about section figure img {
  width: 400px;
}

.work section figure img {
  width: 100%;
}

.work section .hero {
  width: 100%;
}

.work section .highlight {
  padding: 5px;
}

.work section .underline {
  border-bottom: 3px solid transparent;
  box-shadow: 0 3px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

.work section a {
  color: rgba(34, 34, 34, 0.6);
}

.work section a:hover {
  color: #000;
}

.work section figcaption {
  color: rgba(20, 20, 20, 0.56);
  font-family: "Graphik", sans-serif;
  font-size: 125%;
  line-height: 150%;
  padding-top: 30px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.work .categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 30px;
}

.work .category h3 {
  color: #141414;
  font-family: "Graphik", sans-serif;
  font-size: 150%;
  font-weight: bold;
  line-height: 105%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.work .category ul li {
  color: #141414;
  font-family: "Graphik", sans-serif;
  font-size: 150%;
  font-weight: normal;
  line-height: 135%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.work .hairline {
  opacity: 0.25;
}

.work .slider {
  height: 500px;
  margin-top: 120px;
  overflow: hidden;
  width: 100%;
}

.work .scroller {
  animation: scrollFrame 120s linear infinite;
  background-image: url("../assets/images/work/Veho/sketch.jpg");
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: 0 0;
  height: 500px;
  width: 100%;
}

@keyframes scrollFrame {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2420px 0;
  }
}

.work .video {
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
  width: 100%;
}

.work .video iframe {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Utils */

.column,
.columns {
  display: grid;
  grid-gap: 20px;
}

.one {
  grid-template-columns: repeat(1, 1fr);
}

.two {
  grid-template-columns: repeat(2, 1fr);
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

/* Swiper */

.swiper {
  margin-top: 120px;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  opacity: 0.5;
  outline: 0;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

/* Progressively */

.progressive {
  background: transparent;
  display: flex;
  flex: 1;
}
