body {
  background-color: black;
}

.page-home main {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.page-home main a {
  color: black;
}

.page-home main .content-top,
.page-home main .content-bottom {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes movePhraseLeft {
  from {
    -webkit-transform: translateX(-6rem);
            transform: translateX(-6rem);
  }
  to {
    -webkit-transform: translateX(-9rem);
            transform: translateX(-9rem);
  }
}

@keyframes movePhraseLeft {
  from {
    -webkit-transform: translateX(-6rem);
            transform: translateX(-6rem);
  }
  to {
    -webkit-transform: translateX(-9rem);
            transform: translateX(-9rem);
  }
}

@-webkit-keyframes movePhraseRight {
  from {
    -webkit-transform: translateX(6rem);
            transform: translateX(6rem);
  }
  to {
    -webkit-transform: translateX(9rem);
            transform: translateX(9rem);
  }
}

@keyframes movePhraseRight {
  from {
    -webkit-transform: translateX(6rem);
            transform: translateX(6rem);
  }
  to {
    -webkit-transform: translateX(9rem);
            transform: translateX(9rem);
  }
}

.page-home main h1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2.666rem;
  text-transform: uppercase;
  letter-spacing: 0.777rem;
  font-weight: 500;
  width: auto;
  text-shadow: 0 0 1.666rem black;
}

@media (min-width: 1025px) {
  .page-home main h1 .text:nth-child(1) {
    -webkit-transform: translateX(-9rem);
            transform: translateX(-9rem);
    -webkit-animation: movePhraseLeft 2.5s ease-out 1 normal forwards;
            animation: movePhraseLeft 2.5s ease-out 1 normal forwards;
  }
  .page-home main h1 .text:nth-child(2) {
    -webkit-transform: translateX(9rem);
            transform: translateX(9rem);
    -webkit-animation: movePhraseRight 2.5s ease-out 1 normal forwards;
            animation: movePhraseRight 2.5s ease-out 1 normal forwards;
  }
}

.page-home main a > *:not(:last-child) {
  margin-right: 0.444rem;
}

.page-home main a .text {
  letter-spacing: 0.111rem;
}

.page-home main a .icon {
  -webkit-transform: translateY(0.111rem);
          transform: translateY(0.111rem);
}

@-webkit-keyframes preloader {
  0% {
    opacity: 1;
    z-index: 5;
  }
  99% {
    z-index: 5;
    opacity: 0;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}

@keyframes preloader {
  0% {
    opacity: 1;
    z-index: 5;
  }
  99% {
    z-index: 5;
    opacity: 0;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}

.page-home::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  pointer-events: none;
  z-index: -1;
  -webkit-animation: preloader 3s ease-out 1 normal forwards;
          animation: preloader 3s ease-out 1 normal forwards;
}

[data-bg-lightness='dark'] header a,
[data-bg-lightness='dark'] footer a,
[data-bg-lightness='dark'] main a {
  color: white;
}

[data-bg-lightness='dark'] header a:hover,
[data-bg-lightness='dark'] header a:focus,
[data-bg-lightness='dark'] footer a:hover,
[data-bg-lightness='dark'] footer a:focus,
[data-bg-lightness='dark'] main a:hover,
[data-bg-lightness='dark'] main a:focus {
  color: #B3B3B3;
}

.pop-up-content:not(.has-content) {
  display: none;
}

.pop-up-content:not(.active) {
  right: -15rem;
}

.pop-up-content:not(.active) .pop-up-toggler {
  padding: 1.333rem 0.333rem;
}

.pop-up-content:not(.active) .pop-up-toggler .icon {
  opacity: 0;
}

.pop-up-content.active .pop-up-toggler .text {
  opacity: 0;
}

.pop-up-content {
  -webkit-transition: right 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: right 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out, right 0.5s ease-out;
  transition: transform 0.5s ease-out, right 0.5s ease-out, -webkit-transform 0.5s ease-out;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15rem;
  height: 20rem;
  background-color: black;
}

.pop-up-content .items {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.pop-up-content .pop-up-toggler {
  padding: 0.555rem 0.333rem;
  position: absolute;
  right: 100%;
  top: 0%;
  z-index: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transform: rotate(-90deg) translateY(-100%);
          transform: rotate(-90deg) translateY(-100%);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: padding 0.5s ease-out;
  transition: padding 0.5s ease-out;
}

.pop-up-content .pop-up-toggler > * {
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.pop-up-content .item {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.pop-up-content .item a {
  height: 100%;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pop-up-content .item .link h2 {
  margin-right: 0;
}

.pop-up-content .item h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 0.777rem 1.333rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background-color: rgba(0, 0, 0, 0.48);
}

.pop-up-content .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.pop-up-content .item:not(.active) {
  pointer-events: none;
  opacity: 0;
}

.pop-up-content .item::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, black 100%);
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pop-up-content .items-toggler {
  font-size: 0.777rem;
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  z-index: 2;
  padding: 1rem 1.333rem;
}

.pop-up-content .items-toggler label {
  cursor: pointer;
}

.pop-up-content .items-toggler > li:not(:last-child) {
  margin-right: 0.888rem;
}

.pop-up-content .items-toggler li:not(.active) .icon::before {
  font-weight: 500;
}

.pop-up-content .items-toggler li.active {
  pointer-events: none;
}

.pop-up-content.multi-items .item h2 {
  margin-bottom: 1.666rem;
}

footer .developer-text {
  display: block;
}

@-webkit-keyframes blinkOpacity {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

@keyframes blinkOpacity {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.pop-up-content::after {
  content: '';
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50%;
  height: 200%;
  width: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.pop-up-content:not(.active)::after {
  opacity: 0;
  -webkit-animation: blinkOpacity 1.5s linear infinite alternate forwards;
          animation: blinkOpacity 1.5s linear infinite alternate forwards;
}

.pop-up-content.active::after {
  opacity: 0;
}

@media (min-width: 1025px) {
  .content-top {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pop-up-toggler .icon {
    display: none;
  }
}

@media (max-width: 1024px) {
  .page-home main {
    overflow: hidden;
  }
  .page-home main h1 {
    font-size: 1.666rem;
  }
  .page-home main .content-top {
    position: absolute;
    top: 50%;
    width: calc(100% / 36 * 30);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-home main .content-top,
  .page-home main .content-bottom {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-home main .content-center {
    z-index: 5;
    position: static;
  }
  [data-bg-lightness='dark'] main h1 {
    text-shadow: 0 0 2.666rem black;
  }
  [data-bg-lightness='light'] main h1 {
    text-shadow: 0 0 2rem white;
  }
  .page-home a.pop-up-toggler .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pop-up-content:not(.active) {
    right: calc(100% / 36 * -30);
  }
  .pop-up-content:not(.active) .pop-up-toggler {
    padding-top: calc((100% / 36) * 3);
    padding-bottom: calc((100% / 36) * 3);
  }
  .pop-up-content {
    z-index: 5;
    width: calc(100% / 36 * 30);
    position: absolute;
  }
  .pop-up-content.active .pop-up-toggler {
    height: calc(100% / 36 * 6);
  }
  .pop-up-content::after {
    width: 100%;
  }
  .content-center::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.72);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }
  .content-center.pop-up-active::after {
    opacity: 1;
  }
  footer {
    z-index: 5;
  }
}
/*# sourceMappingURL=home.css.map */