@font-face {
  src: url(/font/font/hacked-font/Hacked-KerX.ttf);
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0.15;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 3s ease-in-out;
}

@keyframes ease {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.ease-in {
  animation: ease 3000ms ease;
}

.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 300ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 300ms ease-in-out forwards;
}

@keyframes twitch {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(1px);
  }
  75% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(0px);
  }
}
.twitch {
  animation: twitch 0.1s;
  animation-iteration-count: 100;
}

@keyframes pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation: pulse 3s;
}

@keyframes slider {
  from {
    margin-right: -50px;
  }
  to {
    margin-right: 50px;
  }
}
@keyframes smoothSlider {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
.smoothSlider {
  animation: smoothSlider 1.5s;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::after, *::before {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  line-height: 1.3;
  font-size: 1.125rem;
  color: white;
  font-weight: 300;
  min-height: 200vh;
  overflow-x: hidden;
  background: black;
}
body.noScroll {
  overflow: hidden;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: 300;
  font-size: 2.3rem;
  line-height: 1.15;
  color: white;
}

@media (min-width: 64em) {
  p {
    font-size: 1.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

a, a:visited, a:hover {
  text-decoration: none;
}

.container {
  padding-left: 1.625rem;
  padding-right: 1.625rem;
  padding-bottom: 2.25rem;
  padding-top: 2.25rem;
  max-width: 70rem;
  margin: 0 auto;
}
.container--dark {
  background-color: #0b0b0b;
  color: #ff0080;
}
.container--light {
  color: #0b0b0b;
  background-color: #ff0080;
}
.container--pall {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--py {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }
}
.container--pt {
  padding-top: 4.25rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 5.75rem;
  }
}
.container--pb {
  padding-bottom: 4.25rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 5.75rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}
.container--pr {
  padding-right: 1.5rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button, .button {
  padding: 0.875rem 2.1875rem;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ff0080;
  color: white;
  font-weight: 200;
  display: inline-block;
}
button:hover, .button:hover {
  background: linear-gradient(to right, #ff0080, #086c6c);
  font-weight: bold;
  border: 1px solid white;
}

@media (max-width: 63.9em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.header {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.749);
}
.header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  height: 12%;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(0, 128, 128, 0.249), rgba(255, 28, 115, 0.557));
  color: white;
}
.header nav {
  padding-top: 0.1625rem;
  padding-bottom: 0.1625rem;
  width: 100%;
  position: relative;
}
.header h3 {
  font-family: "Staatliches", cursive;
  color: #ff0080;
}
.header h3:hover {
  animation: twitch 0.1s;
  animation-iteration-count: 100;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ff0080;
  transition: all 300ms ease-in-out;
  transform-origin: 5.5px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 3px;
}
.header__menu {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.803);
  box-shadow: 0px 0px 10px teal;
  padding: 1.625rem;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1.5rem;
  border-radius: 5px;
}
.header__menu a {
  display: block;
  color: white;
  letter-spacing: 5px;
  padding: 0.625rem;
  text-align: center;
}
.header__links a {
  position: relative;
  height: 26px;
  font-size: 1.125rem;
  color: #ff0080;
  transition: color 300ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 36px;
}
.header__links a:hover {
  cursor: pointer;
  box-shadow: 0px 1px 50px 5px #086c6c;
}
.header__cta {
  font-size: 0.75rem;
  color: aqua;
}
.header__cta:hover {
  background: linear-gradient(to right, #ff0080, #086c6c);
  font-weight: bold;
  border: 1px solid white;
}

.hero {
  height: 60%;
  padding-bottom: 200px;
  padding-top: 200px;
}
.hero h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
}
@media (min-width: 64em) {
  .hero .hero-container {
    display: flex;
    align-items: center;
    background-color: black;
  }
}
.hero__image {
  position: relative;
  background-image: url("../images/aron-visuals-bZZp1PmHI0E-unsplash.jpg");
  background-position: center 100%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 27.5rem;
}
@media (min-width: 40em) {
  .hero__image {
    min-height: 27rem;
    background-position: center 60%;
  }
}
@media (min-width: 64em) {
  .hero__image {
    flex: 3;
    order: 2;
    height: 100%;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 2;
    order: 1;
    text-align: left;
  }
}
.hero__text h1 {
  font-weight: 600;
  font-size: 2.375rem;
  line-height: 1.15;
  color: #00fefe;
  text-shadow: 0px 3px hotpink;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}
@media (min-width: 64em) {
  .hero__text h1 {
    font-size: 3.25rem;
    text-align: left;
    margin-bottom: 0.5em;
  }
}
.hero__text p {
  line-height: 1.35;
  padding-bottom: 1.25rem;
  color: #ff0080;
}
@media (min-width: 64em) {
  .hero__text p {
    text-align: left;
    padding-bottom: 2.25rem;
  }
}
.hero__cta {
  font-size: 1.125rem;
  margin-top: 100px;
  color: aqua;
  transition: opacity 300ms ease-in-out;
}

.image-slider {
  position: relative;
}
.image-slider__content {
  width: 100%;
  flex-direction: column;
}
.image-slider__item {
  display: none;
  height: 32rem;
  border-radius: 0.3125rem;
  overflow: hidden;
  background-color: linear-gradient(rgba(3, 57, 57, 0.249), rgba(255, 28, 115, 0.557));
  box-shadow: 0px 3px 12px #ff0080;
  transition: all 150ms ease-in-out;
}
@media (min-width: 40em) {
  .image-slider__item {
    width: 45rem;
  }
}
.image-slider__item-hidden {
  display: none;
}
.image-slider__item:hover {
  transform: scale(1.05);
}
.image-slider__item-visible {
  display: block;
  display: flex;
}
.image-slider__image {
  display: flex;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.image-slider__cta {
  margin-bottom: 3rem;
  margin-left: 5rem;
}
.image-slider__actions {
  top: 50%;
  position: absolute;
  width: 90%;
}
@media (min-width: 64em) {
  .image-slider__actions {
    width: 45rem;
  }
}
@media (min-width: 40em) {
  .image-slider__actions {
    width: 40rem;
  }
}
.image-slider button {
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.536);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: grey;
  padding-left: 2rem;
}

.feature {
  background-color: #ff0080;
  text-align: center;
  width: 100%;
}
@media (min-width: 40em) {
  .feature {
    text-align: left;
    max-width: 2000px;
  }
}
.feature__intro {
  margin-bottom: 3.75rem;
}
@media (min-width: 64em) {
  .feature__intro {
    width: 70%;
  }
}
@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 64em) {
  .feature__grid {
    display: flex;
    flex-wrap: nowrap;
  }
}
.feature__item {
  padding: 1.9375rem;
}
@media (min-width: 64em) {
  .feature__item {
    font-size: 1rem;
    max-width: 25%;
  }
}
@media (min-width: 40em) {
  .feature__item {
    flex: 0 0 50%;
  }
}
.feature__icon {
  margin-bottom: 1.75rem;
}
@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.15;
  color: #264348;
  margin-bottom: 1rem;
}
.feature__title h2 {
  font-size: 1.5rem;
  color: #0beafa;
}
@media (min-width: 64em) {
  .feature__title h2 {
    font-size: 1rem;
  }
}
@media (min-width: 64em) {
  .feature__title {
    margin-bottom: 1.5rem;
  }
}
.feature__description {
  font-size: 0.875rem;
  line-height: 1.5;
}

.articles {
  background-color: #0b0b0b;
}
.articles h2 {
  padding-bottom: 3rem;
  color: #ff0080;
}

.article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 40em) {
  .article__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .article__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.article__item {
  border-radius: 0.3125rem;
  overflow: hidden;
  background-color: linear-gradient(rgba(3, 57, 57, 0.249), rgba(255, 28, 115, 0.557));
  box-shadow: 0px 3px 12px #ff0080;
  transition: all 150ms ease-in-out;
}
.article__item:hover {
  transform: scale(1.05);
}
.article__image {
  height: 12.5rem;
  width: 100%;
  background-size: cover;
  background-origin: center center;
}
.article__author {
  font-size: 0.625rem;
  margin-bottom: 1rem;
}
.article__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
}
@media (min-width: 40em) {
  .article__text {
    padding: 1.875rem 1.5625rem;
    color: #ff0080;
  }
}
.article__title {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #00fcfc;
}
.article__description {
  font-size: 0.81rem;
  color: white;
}

.footer {
  background-color: #ff0080;
  padding: 2.5rem;
  text-align: center;
  color: white;
}
.footer img {
  border-radius: 50px;
  box-shadow: 2px 5px 5px #ff0080 inset;
}
@media (min-width: 64em) {
  .footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr), 2fr;
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "logo links1  links2 cta" "social links1 links2 copyright";
    gap: 1rem;
    justify-items: start;
  }
}
.footer h3 {
  font-family: "Staatliches", cursive;
  line-height: 2rem;
  color: black;
  text-shadow: 0px 0px 3px #9f31ff;
}
.footer h3:hover {
  animation: twitch 0.1s;
  animation-iteration-count: 100;
}
.footer a {
  color: white;
}
.footer__logo {
  margin-bottom: 1.875rem;
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
@media (max-width: 63.9em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 87.45em) {
  .footer__social {
    grid-area: social;
    align-self: top;
  }
}
.footer__social a {
  display: inline-block;
  height: 1.25rem;
}
.footer__social a:not(:last-child) {
  margin-right: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9375rem;
}
@media (min-width: 64em) {
  .footer__links {
    align-items: middle;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
.footer__links.col2 {
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
.footer__links a {
  line-height: 2.25;
  transition: color 150ms ease-in-out;
  color: white;
  text-shadow: 0px 0px 3px #01ffff;
}
.footer__links a:hover {
  color: white;
  transform: scale(1.5);
  text-shadow: 0px 0px 5px #01ffff;
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
.footer__cta a.button {
  border: 4px solid #9f31ff;
}
@media (max-width: 63.9em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}
.footer__copyright {
  font-size: 0.8125rem;
  color: #b0c4de;
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: middle;
    justify-self: end;
  }
}
.footer .attribution {
  font-size: 0.875rem;
}

.imageBlock {
  height: 60%;
  margin: 5rem 0;
}
@media (min-width: 64em) {
  .imageBlock .imageBlock-container {
    display: flex;
    align-items: center;
  }
}
.imageBlock__image {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=871&q=80");
  background-position: center 100%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 27.5rem;
}
@media (min-width: 40em) {
  .imageBlock__image {
    min-height: 27rem;
    background-position: center 60%;
  }
}
@media (min-width: 64em) {
  .imageBlock__image {
    flex: 3;
    order: 2;
    height: 100%;
    background-image: none;
  }
}
@media (min-width: 64em) {
  .imageBlock__image::before {
    content: "";
    position: absolute;
    background-image: url("https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=871&q=80");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 120%;
    height: 90%;
    top: 1.6em;
    z-index: 5;
    box-shadow: 0 0 8px 8px #ff0080 inset;
  }
}
.imageBlock__image::after {
  content: "";
  position: absolute;
  background-image: url("");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 100%;
  width: 80%;
  top: 1em;
  right: 1em;
  z-index: 10;
}
@media (min-width: 40em) {
  .imageBlock__image::after {
    background-size: 60%;
    width: 100%;
    background-position: bottom center;
    top: 2em;
  }
}
@media (min-width: 64em) {
  .imageBlock__image::after {
    background-size: 100%;
    height: 120%;
    top: -8em;
  }
}
.imageBlock__text {
  text-align: center;
}
@media (min-width: 64em) {
  .imageBlock__text {
    flex: 2;
    order: 1;
    text-align: left;
  }
}
.imageBlock__text h1 {
  margin-top: 4rem;
  font-weight: 300px;
  font-size: 2.375rem;
  line-height: 1.15;
  color: #00fefe;
  text-shadow: 0px 3px hotpink;
}
@media (min-width: 64em) {
  .imageBlock__text h1 {
    font-size: 3.25rem;
    text-align: left;
    margin-bottom: 0.5em;
  }
}
.imageBlock__text p {
  line-height: 1.35;
  padding-bottom: 1.25rem;
  color: #ff0080;
}
@media (min-width: 64em) {
  .imageBlock__text p {
    text-align: left;
  }
}
.imageBlock__cta {
  font-size: 1.125rem;
  margin-top: 2rem;
  color: aqua;
  transition: opacity 300ms ease-in-out;
}

.wordBlock {
  background-image: url("https://image.freepik.com/free-photo/cool-geometric-triangular-figure-neon-laser-light-great-backgrounds_181624-11068.jpg?w=826");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 3rem;
  height: 35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wordBlock__text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wordBlock__text h1 {
  font-size: 2.6rem;
  font-weight: 800;
}
.wordBlock__text .text {
  display: block;
  line-height: 6rem;
  padding: 1rem;
  letter-spacing: 2.5px;
  text-shadow: 8px 0px 10px #ff0080;
  font-size: 1.5rem;
  animation: slider 5s infinite;
}
@media (min-width: 64em) {
  .wordBlock__text .text {
    line-height: 8rem;
    padding: 2rem;
    font-size: 8rem;
  }
  .wordBlock__text .text .text:first-child {
    animation: slider 5s infinite;
  }
}/*# sourceMappingURL=style.css.map */