/*
--------------------------------------------------
base
--------------------------------------------------
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'GothamCity';
  src: url('../fonts/GothamCity-Bold.woff2') format('woff2'), url('../fonts/GothamCity-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GothamCity';
  src: url('../fonts/GothamCity-Light.woff2') format('woff2'), url('../fonts/GothamCity-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GothamCity Book';
  src: url('../fonts/GothamCity-Book.woff2') format('woff2'), url('../fonts/GothamCity-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GothamCity';
  src: url('../fonts/GothamCity-Medium.woff2') format('woff2'), url('../fonts/GothamCity-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*
--------------------------------------------------
layout
--------------------------------------------------
*/
html {
  margin: 0;
  padding: 0;
}

body {
  -webkit-animation: fade-in 1s;
  -moz-animation: fade-in 1s;
  -ms-animation: fade-in 1s;
  -o-animation: fade-in 1s;
  animation: fade-in 1s;
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Montserrat', sans-serif;
}

nav {
  font-weight: 300;
}

.nav-link {
  margin: 0 20px;
  font-size: 0.90em;
  color: #fff;
}

.nav-link:hover   { color: #777 }
.nav-link:active  { color: #fff }
.nav-link:focus   { color: #777 }

input[name='nav-button'] {
  z-index: 3;
  position: relative;
  border-radius: 100px;
  opacity: 0;
}

.logo h1, nav {
  font-family: 'GothamCity';
}

.logo {
  z-index: 3;
  position: relative;
  transition: all 0.3s ease;
}

.logo:hover {
  color: #777!important;
}

.logo h1 {
  font-size: 1.3em;
  letter-spacing: 0.3em;
}

.search-button {
  z-index: 3;
  position: relative;
}

.hero {
    min-height: 60vh;
  }

.container {
}

.hero h2 {
  max-width: 800px;
}
/*
--------------------------------------------------
media
--------------------------------------------------
*/
@media (min-width: 761px) {
  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 760px) {
  .nav-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    right: 30px;
    justify-content: space-between!important;
  }
}

@media screen and (max-width: 767px) {
  .nav {
    opacity: 0;
    display: flex;
    position: fixed;
    background-color: #000;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    pointer-events: none;
  }

  .nav-link {
    font-size: 1.6em;
    line-height: 2em;
  }

  .nav li {
    transition: all 1s ease;
  }

  .nav li:nth-child(1) { transform: translateY(100px); opacity: 0; transition-delay: 50ms; }
  .nav li:nth-child(2) { transform: translateY(100px); opacity: 0; transition-delay: 75ms; }
  .nav li:nth-child(3) { transform: translateY(100px); opacity: 0; transition-delay: 100ms; }
  .nav li:nth-child(4) { transform: translateY(100px); opacity: 0; transition-delay: 125ms; }
  .nav li:nth-child(5) { transform: translateY(100px); opacity: 0; transition-delay: 150ms; }

  input[name='nav-button']:checked + .nav li:nth-child(1) { transform: translateY(0); opacity: 1; }
  input[name='nav-button']:checked + .nav li:nth-child(2) { transform: translateY(0); opacity: 1; }
  input[name='nav-button']:checked + .nav li:nth-child(3) { transform: translateY(0); opacity: 1; }
  input[name='nav-button']:checked + .nav li:nth-child(4) { transform: translateY(0); opacity: 1; }
  input[name='nav-button']:checked + .nav li:nth-child(5) { transform: translateY(0); opacity: 1; }

  label[for='nav-button'] {
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    box-shadow: 0 0 10px rgba(0,0,0,0.09);
  }

  label[for='nav-button'] .nav-bars {
    display: block;
  }

  label[for='nav-button'] .nav-bars:before {
    top: -5px;
    width: 10px;
    height: 2px;
    position: relative;
    display: block;
    content: '';
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 100px;
  }

  label[for='nav-button'] .nav-bars:after {
    top: 5px;
    width: 10px;
    height: 2px;
    position: relative;
    display: block;
    content: '';
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 100px;
  }

  input[name='nav-button'] {
    top: 30px;
    right: 30px;
    z-index: 3;
    position: fixed;
    border-radius: 100px;
    opacity: 0;
  }

  input[name='nav-button']:checked
  + label[for='nav-button'] .nav-bars {
    transform: rotate(90deg);
  }

  .nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
    display: flex!important;
    flex-direction: column;
    transform: scale(1);
  }

  input[name='nav-button']:checked
  + .nav {
    opacity: 1;
    pointer-events: all;
  }
}
/*
--------------------------------------------------
keyframes
--------------------------------------------------
*/
@keyframes         fade-in { from { opacity: 0 } to { opacity: 1 } }
@-o-keyframes      fade-in { from { opacity: 0 } to { opacity: 1 } }
@-ms-keyframes     fade-in { from { opacity: 0 } to { opacity: 1 } }
@-moz-keyframes    fade-in { from { opacity: 0 } to { opacity: 1 } }
@-webkit-keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }

@keyframes scrolling-x-left { to { background-position-x: -200% } }
@keyframes scrolling-x-right  { from { } to { background-position-x:  200% } }