h2 {
  font-size: 190px;
  line-height: 0.85;
  font-family: "Tungsten-black", serif;
  color: #E60000;
  text-transform: uppercase;
}
h2::selection {
  background-color: rgba(255, 255, 255, 0.4);
  color: #E60000;
  -webkit-text-stroke: 0 #E60000;
}
h2.green {
  color: #AAFA96;
}
h2.t-smaller {
  font-size: 160px;
}

@supports (text-stroke: 2px red) or (-webkit-text-stroke: 2px red) {
  h2 {
    color: transparent;
    -webkit-text-stroke: 1px #E60000;
    text-stroke: 1px #E60000;
    letter-spacing: 2px;
  }
  h2 span {
    color: #E60000;
    -webkit-text-stroke: 0px #E60000;
    text-stroke: 0px #E60000;
  }
  h2.green {
    -webkit-text-stroke: 1px #AAFA96;
    text-stroke: 2px #AAFA96;
    color: transparent;
  }
  h2.green span {
    color: #AAFA96;
  }
}
.scroll-direction {
  position: fixed;
  width: 20px;
  height: 60px;
  top: calc(100vh - 100px);
  left: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/global/arrow_long.svg");
  transition: opacity 0.3s ease;
  z-index: 7;
}
.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, .scroll-direction.disable {
  opacity: 0;
}
@media (max-width: 991.98px) {
  .scroll-direction {
    left: 15px;
    top: calc(100vh - 120px);
  }
}

.x-btn {
  display: inline-block;
  padding: 11px 42px;
  border-radius: 22px;
  font-size: 14px;
  color: #E60000;
  border: 2px solid;
  transition: 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}
.x-btn:hover {
  background-color: #FFFFFF;
}
.x-btn.btn-red {
  color: #FFFFFF;
  background-color: #E60000;
}
.x-btn.disable {
  opacity: 0.4;
  pointer-events: none;
}

#menu {
  display: flex;
  position: fixed;
  right: 0;
  top: 0;
  min-width: 975px;
  width: 50vw;
  height: 100vh;
  padding: 60px 60px;
  background-color: #05101A;
  align-items: center;
  justify-content: flex-start;
  flex-direction: inherit;
  left: -120vw;
  transition: left 0.5s ease;
  color: #FFFFFF;
  text-transform: uppercase;
  z-index: 8;
}
#menu .menu-items-container {
  margin-left: 20%;
}
#menu .menu-list {
  font-size: 50px;
  line-height: 1;
}
#menu .menu-list li {
  margin-bottom: 30px;
}
#menu .menu-list li:last-child {
  margin-bottom: 0;
}
#menu.active {
  left: 0;
}
#menu a:hover {
  color: #EC536B;
}
#menu .info-pages {
  font-size: 16px;
  position: absolute;
  bottom: 60px;
}
@media (max-width: 991.98px) {
  #menu {
    width: 100%;
    align-items: center;
    font-size: 30px;
    min-width: auto;
    padding: 15px;
  }
  #menu .menu-items-container {
    margin-left: 0;
  }
  #menu .menu-list {
    font-size: 30px;
  }
  #menu .menu-logo {
    position: absolute;
    top: 30px;
    right: 15px;
  }
}

#page-name {
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 64px;
  font-size: 16px;
  color: #ffffff;
  z-index: 7;
}
#page-name.fadeOut {
  opacity: 0;
}

#sidebar {
  position: fixed;
  display: flex;
  top: 220px;
  right: 0;
  width: 383px;
  height: 412px;
  z-index: 3;
  transition: transform 0.3s ease;
  transform: translateX(calc(100% - 45px));
}
#sidebar .sidebar-controller {
  position: relative;
  display: flex;
  align-items: center;
  width: 45px;
  height: 100%;
  background-color: #000000;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 1;
}
#sidebar .sidebar-controller:before {
  content: "";
  width: 45px;
  height: 245px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/global/btn_sidebar.svg");
  transition: transform 0.3s ease;
}
#sidebar .sidebar-content {
  width: calc(100% - 45px);
  height: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
#sidebar.active {
  transform: translateX(0);
}
#sidebar.active .sidebar-controller:before {
  transform: rotate(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);
  }
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 575.98px) {
  .x-btn {
    font-size: 11px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*# sourceMappingURL=elements.css.map */
