.header {
  align-items: flex-start;
  background-color: #222;
  display: flex;
  height: 70px;
  justify-content: space-between;
  left: 0;
  line-height: 1;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 480px) {
  .header {
    padding: 20px 0 0 0;
  }
}
.logo {
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 480px) {
  .logo {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .logo {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
  }
}

.menu-item {
  position: relative;
  text-align: right;
}
@media screen and (min-width: 480px) {
  .menu-item {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
  }
  .menu-item:last-of-type {
    margin-right: 20px;
  }
}
@media screen and (min-width: 650px) {
  .menu-item {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .menu-item {
    width: calc(16.6666666667% - 23.3333333333px);
    float: left;
    margin-left: 20px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-animation: seconds 0.1s forwards;
          animation: seconds 0.1s forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes seconds {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes seconds {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #222;
  color: #ccc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0.015em;
  line-height: 1.35;
  word-spacing: -0.02em;
  scrollbar-color: #000 #222;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
body::-webkit-scrollbar {
  background: #222;
  width: 5px;
}
body::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 4px;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 22px;
  }
}

a {
  color: #ccc;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  font-size: 1.6em;
}

main {
  margin-top: 70px;
}

::-moz-selection {
  /* Code for Firefox */
  background: #202020;
}

::selection {
  background: #202020;
}

.flickity-button {
  background: transparent;
  border-radius: 0;
  height: calc(100vh - 140px);
  opacity: 0;
}

.flickity-button:hover {
  background: transparent;
}

.flickity-button svg {
  display: none;
}

.flickity-button:focus {
  box-shadow: none;
}

.flickity-button.previous {
  width: 50%;
}
.flickity-button.previous:hover {
  cursor: url(./../../assets/images/arrow-left.svg), w-resize;
}

.flickity-button.next {
  width: 50%;
}
.flickity-button.next:hover {
  cursor: url(./../../assets/images/arrow-right.svg), e-resize;
}