#site-logo {
  position: fixed;
  width: 157px;
  height: 80px;
  opacity: 1;
  transition: opacity 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/global/logo_h.png");
  background-size: 30px;
  background-position: left center;
  top: calc(50vh - 40px);
  left: 60px;
  z-index: 7;
  overflow: hidden;
}
#site-logo.fadeOut {
  opacity: 0;
}
#site-logo:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  left: -5%;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/global/logo_text.png");
  transition: all 0.3s ease;
  pointer-events: none;
}
#site-logo.white {
  background-image: url("../img/global/logo_h_white.png");
}
#site-logo.white:before {
  background-image: url("../img/global/logo_text_white.png");
}
#site-logo:hover:before, #site-logo.active:before {
  opacity: 1;
  left: 0;
}
#site-logo a {
  width: 100%;
  height: 100%;
  display: block;
}

#title-area {
  width: 100%;
  min-height: 50vh;
  background-color: #47B99F;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
}

.title {
  position: relative;
  font-size: 120px;
  font-family: "Tungsten-black";
  line-height: 0.85;
  text-transform: uppercase;
  z-index: 1;
  letter-spacing: 0.02em;
}
.title.t90 {
  font-size: 90px;
}

button.h-btn {
  font-weight: 300;
  padding-bottom: 11px;
}

.h-btn {
  min-width: 145px;
  padding: 11px 20px 0;
  min-height: 45px;
  display: inline-block;
  border: 2px solid;
  font-size: 14px;
  text-align: center;
  border-radius: 22.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.h-btn.btn-common {
  color: #000000;
}
.h-btn.btn-common.white {
  color: #ffffff;
}
.h-btn.btn-common:hover {
  color: #E60000 !important;
  border-color: #E60000 !important;
}
.h-btn.btn-uline {
  min-width: auto;
  border: none;
  display: inherit;
  text-decoration: underline;
  padding: 0;
  padding-right: 5px;
}

.scroll-direction {
  position: absolute;
  width: 20px;
  height: 60px;
  top: calc(100vh - 100px);
  left: 75px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/global/arrow_long.svg");
  transition: opacity 0.3s ease;
}
.scroll-direction.white {
  background-image: url("../img/global/arrow_long_white.svg");
}
.scroll-direction.anim {
  animation: scrollDir 3s ease-in-out 1s infinite;
}
.scroll-direction.fadeOut {
  opacity: 0;
}

@keyframes scrollDir {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(20px);
  }
  60% {
    transform: translateY(20px);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scrollDirHor {
  0% {
    transform: translateX(0) rotate(-90deg);
  }
  25% {
    transform: translateX(0) rotate(-90deg);
  }
  40% {
    transform: translateX(20px) rotate(-90deg);
  }
  60% {
    transform: translateX(20px) rotate(-90deg);
  }
  75% {
    transform: translateX(0) rotate(-90deg);
  }
  100% {
    transform: translateX(0) rotate(-90deg);
  }
}

/*# sourceMappingURL=small-blocks.css.map */
