@import url("https://fonts.googleapis.com/css2?family=Karla&display=swap");
@font-face {
  font-family: "Bigilla";
  src: url("/assets/fonts/BigillaBold.eot");
  src: url("/assets/fonts/BigillaBold.eot?#iefix") format("embedded-opentype"),
    url("/assets/fonts/BigillaBold.woff2") format("woff2"),
    url("/assets/fonts/BigillaBold.woff") format("woff"),
    url("/assets/fonts/BigillaBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bigilla";
  src: url("/assets/fonts/BigillaRegular.eot");
  src: url("/assets/fonts/BigillaRegular.eot?#iefix")
      format("embedded-opentype"),
    url("/assets/fonts/BigillaRegular.woff2") format("woff2"),
    url("/assets/fonts/BigillaRegular.woff") format("woff"),
    url("/assets/fonts/BigillaRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("/assets/fonts/Karla-Bold.eot");
  src: url("/assets/fonts/Karla-Bold.eot?#iefix") format("embedded-opentype"),
    url("/assets/fonts/Karla-Bold.woff2") format("woff2"),
    url("/assets/fonts/Karla-Bold.woff") format("woff"),
    url("/assets/fonts/Karla-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("/assets/fonts/Karla-Regular.eot");
  src: url("/assets/fonts/Karla-Regular.eot?#iefix") format("embedded-opentype"),
    url("/assets/fonts/Karla-Regular.woff2") format("woff2"),
    url("/assets/fonts/Karla-Regular.woff") format("woff"),
    url("/assets/fonts/Karla-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("/assets/fonts/Karla-BoldItalic.eot");
  src: url("/assets/fonts/Karla-BoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/assets/fonts/Karla-BoldItalic.woff2") format("woff2"),
    url("/assets/fonts/Karla-BoldItalic.woff") format("woff"),
    url("/assets/fonts/Karla-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Karla";
  src: url("/assets/fonts/Karla-Italic.eot");
  src: url("/assets/fonts/Karla-Italic.eot?#iefix") format("embedded-opentype"),
    url("/assets/fonts/Karla-Italic.woff2") format("woff2"),
    url("/assets/fonts/Karla-Italic.woff") format("woff"),
    url("/assets/fonts/Karla-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

.home-page::-webkit-scrollbar,
.home-page *::-webkit-scrollbar {
  display: none;
}
body {
  background-color: #f4f4f4;
  font-family: "Karla", sans-serif;
  color: #121212;
  overflow-anchor: none;
}

h1,
h2,
h3 {
  font-family: "Bigilla";
  font-weight: normal;
}
.dot {
  background-color: #414141;
  width: 25px;
  height: 25px;
  display: block;
  border-radius: 50%;
}
.navbar.dark .dot {
  background-color: #f4f4f4;
}
/*
Navbar
*/
.navbar {
  overflow: hidden;

  box-shadow: 0 0 30px 0 rgba(65, 65, 65, 0);
  transition: box-shadow 0.5s ease-in-out;
  z-index: 999;
}
.navbar .navbar-inner {
  height: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.navbar.fixed .navbar-inner {
  height: 60px;
}
.navbar.fixed {
  position: fixed;
  width: 100%;
  top: 0;
}
.navbar .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

.navbar.show .background {
  opacity: 1;
}
.navbar.show.dark {
  color: #f4f4f4;
}
.navbar.dark {
  color: #f4f4f4;
  background-color: #121212;
}
.navbar.dark .background {
  background-color: #121212;
}
.navbar.show.light {
  color: #121212;
}
.navbar.light .background {
  background-color: #f4f4f4;
}
.navbar .navbar-inner {
  height: 50px;
  display: flex;
  align-items: center;
}
.navbar .navbar-content {
  display: flex;

  align-items: center;
  justify-content: space-between;
}
.navbar .nav-list li {
  display: inline-block;
  margin-left: 2rem;
}
.navbar .nav-list li a {
  text-decoration: none;
  color: inherit;
}
.home-header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1150px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
.home-header h1 {
  font-size: 60px;
  margin-bottom: 4rem;
  text-align: center;
}

@media only screen and (min-width: 500px) {
  .home-header h1 {
    font-size: 80px;
  }
}

@media only screen and (min-width: 1080px) {
  .home-header h1 {
    font-size: 105px;
  }
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
.header-content a {
  font-size: 20px;
  color: inherit;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #121212;
}
.projects-list {
  background-color: #121212;
}
.projects-list > * {
  padding-top: 70px;
  padding-bottom: 40vh;
}

.about-me {
  background-color: #f4f4f4;
  min-height: 100vh;
}

.contact {
  background-color: #121212;
  min-height: 100vh;
  color: #fff;
}
.contact-list ul {
  margin: 0;
  padding: 0;
}

.contact-list a {
  font-size: 21px;
  line-height: 40px;
  color: white;
}
.contact-list a:hover,
.contact-list a:focus,
.contact-list a:active {
  color: white;
}
.project-row {
  display: flex;
}
.project-row > div {
  flex: 1;
}
.project-row > div > div {
  padding: 30px 0;
}
@media only screen and (min-width: 768px) {
  .project-row > div:first-child {
    padding-top: 100px;
  }
  .project-row > div > div {
    padding: 30px 20px;
  }
}
.project-item {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.project-item .background {
  filter: blur(0);
  transition: filter 0.3s ease-in-out;
  position: relative;
}

.project-item .background img {
  width: 100%;
  position: absolute;
  top: 0;
  height: auto;
}

.project-item:hover .background,
.project-item:focus .background,
.project-item:active .background {
  filter: blur(5px);
}
.project-item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  justify-content: center;
  transition: 0.3s opacity ease-in-out;
  color: #ffffff;
}
.project-item .content > * {
  position: relative;
  z-index: 2;
}
.project-item .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #121212;
}
.project-item:hover .content,
.project-item:active .content,
.project-item:focus .content {
  opacity: 1;
}
.project-item:hover .content::before,
.project-item:active .content::before,
.project-item:focus .content::before {
  opacity: 0.7;
}

.project-item .content h3 {
  opacity: 1;
  font-family: "Karla";
  font-size: 40px;
}
.project-item .content h6 {
  opacity: 1;
  font-size: 20px;
  text-transform: uppercase;
}

.project-item .content-animation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f4f4f4;
  opacity: 0;
}
.home-section-content {
  font-size: 18px;
  display: flex;
  padding: 2rem 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 24px;
}

.home-section-content p {
  margin-bottom: 2rem;
}

.home-section-content .subtitle {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: bold;
}
.home-section-content .title {
  font-family: Bigilla;
  font-style: normal;
  font-weight: bold;
  margin-bottom: 3rem;
  font-size: 64px;
  line-height: 64px;
}

/*
* PROJECT DETAIL
*/

.project-detail-page {
  background-color: #f4f4f4;
}

.project-detail-page .header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-bottom: 50px;
}
.project-detail-page .header h1 {
  font-size: 80px;
}
@media only screen and (min-width: 500px) {
  .project-detail-page .header h1 {
    font-size: 120px;
  }
  .project-detail-page .header {
    min-height: 70vh;

    padding-bottom: 150px;
  }
}

.project-detail-page .header h5 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}

.project-content {
  background-color: #121212;
  padding-bottom: 4rem;
}

@keyframes projectAnimate {
  0% {
    opacity: 0;
    transform: translateY(calc(30vh + 150px));
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.project-animate {
  animation: 0.3s ease-out 0s 1 projectAnimate;
}

.project-content-header {
  margin-bottom: calc(4rem - 50px);
  transform: translateY(-50px);
}
@media only screen and (min-width: 550px) {
  .project-content-header {
    margin-bottom: calc(6rem - 150px);

    transform: translateY(-150px);
  }
}
.project-content-header img,
.project-content-header video {
  width: 100%;

  height: auto;
}

.project-content .content {
  max-width: 580px;
  margin: 0 auto;
  color: #fff;
  line-height: 26px;
  font-size: 20px;
  margin-bottom: 5rem;
}
.project-content .content a {
  color: #fff;
}
.project-content .content a:hover,
.project-content .content a:focus,
.project-content .content a:active {
  color: #fff;
}
.project-content .image-content-list {
  max-width: 762px;
  margin: 0 auto;
}

.project-content .content h3 {
  font-family: "Karla";
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.25;
  line-height: 26px;
  margin-bottom: 2rem;
  font-weight: bold;
}
.project-content .content p {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .content-page {
    padding: 7rem;
  }
}
.project-detail .introduction {
  max-width: 450px;
  margin-bottom: 2rem;
}
.project-detail .introduction h2 {
  margin-bottom: 1rem;
}

.project-detail img,
.project-detail video {
  width: 100%;
  height: auto;
}
.content-page p:not(:last-child) {
  margin-bottom: 1rem;
}
/*
* GENERIC CODE
*/
.img-100 {
  width: 100%;
  height: auto;
}
.bg-image {
  width: 100%;
  min-height: 250px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.image-caption-block {
  margin-bottom: 1rem;
}

.image-caption {
  color: #c2c2c2;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.justify-content-center {
  justify-content: center;
}
.align-items-stretch {
  align-items: flex-stretch;
}
.col-3 {
  padding: 1rem;
  width: 100%;
}
.col-9 {
  padding: 1rem;
  width: 100%;
}
.col-4 {
  padding: 1rem;
  width: 100%;
}
.col-5 {
  padding: 1rem;
  width: 100%;
}
.col-6,
.col-lg-6 {
  padding: 1rem;
  width: 100%;
}

.col-8 {
  padding: 1rem;
  width: 100%;
}
.about-me-image {
  position: relative;
  padding-top: 136.08%;
}
.about-me-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.justify-content-space-between {
  justify-content: space-between;
}
@media only screen and (min-width: 900px) {
  .col-lg-6 {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.bottom-links > *:not(:last-child) {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 1rem;
}
.bottom-links > *:last-child {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.bottom-links a {
  color: white;
  display: inline-block;
  font-family: Karla;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.bottom-links span {
  font-family: Karla;
  font-size: O.8rem;
  line-height: 1rem;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}
.bottom-links span.right {
  text-align: right;
}
.bottom-links a:hover {
  text-decoration: none;
}
.bottom-links a:hover:after {
  width: calc(100% + 40px);
}
.bottom-links a:after {
  content: "";
  height: 3px;
  background-color: #ec4926;
  width: 15px;
  position: absolute;
  left: -20px;
  top: 11px;
  -webkit-transition: width 0.3s cubic-bezier(0.47, 0.24, 0.5, 0.97);
  -o-transition: width 0.3s cubic-bezier(0.47, 0.24, 0.5, 0.97);
  transition: width 0.3s cubic-bezier(0.47, 0.24, 0.5, 0.97);
}
.bottom-links a.right:after {
  left: auto;
  right: -20px;
}
@media only screen and (min-width: 768px) {
  .bottom-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 4rem;

    margin-left: -4rem;
    margin-right: -4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .bottom-links > *:not(:last-child) {
    margin-bottom: 0;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

*[data-typer] {
  opacity: 0;
}

.typer span {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.typer span.show {
  opacity: 1;
}

.scroll-block {
  width: 100%;
  height: 100vh;
  z-index: 1;
  position: relative;
}
.scroll-block.not-full-height {
  height: auto;
}
.scroll-block.fixed {
  top: 0;
  left: 0;
  position: fixed;
}
@media only screen and (min-width: 768px) {
  body.home-page {
    overflow-y: hidden;
  }
}

.error-page h1 {
  font-size: 60px;
  margin-bottom: 4rem;
  text-align: center;
}
.error-page .page-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page .page-content a {
  font-size: 20px;
  color: inherit;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #121212;
}
@media only screen and (min-width: 500px) {
  .error-page h1 {
    font-size: 80px;
  }
}
