@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;800&display=swap");

* {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  height: 100vh;
  /* overflow: hidden; */
}

body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
  /* perspective: 1px;
  transform-style: preserve-3d;
  overflow-x: hidden;
  overflow-y: scroll; */
}

.page-wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  perspective: 10px;
  background-color: black;
  animation: fade 1s ease-out;
}

.nav-logo-title {
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 140px;
  /* background-color: black; */
  height: 10vh;
}

.nav-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav img {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  background-image: url("https://i.pinimg.com/564x/b5/4a/40/b54a40faf54141bdb3ef349e975fcc1f.jpg");
  background-size: cover;
  background-position: center;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

nav ul li {
  list-style: none;
  text-decoration: none;
  position: relative;
}

nav ul li::after {
  content: "";
  position: absolute;
  left: -7px;
  top: -4px;
  width: 0;
  height: 30px;
  background-color: #de3123;
  transition: 0.2s ease-out;
  z-index: -1;
}

nav ul li:hover::after {
  width: 120%;
}

nav a {
  text-decoration: none;
  color: white;
  mix-blend-mode: difference;
}

#header {
  height: 100vh;
  /* background-color: black; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
  z-index: -1;
  animation: reveal 0.8s;
  transition: 0.2s ease-in-out;
}

#header::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 25%;
  /* transform: translate(-50%, -50%); */
  transform: translateZ(-10px) scale(2);
  display: block;
  height: 600px;
  width: 600px;
  background-image: url("https://i.pinimg.com/564x/a8/4e/95/a84e955317dc051b3d38fe374bccc8c0.jpg");
  /* transform: translateZ(-1px) scale(2.2); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.header-texts abbr {
  font-weight: 800;
  color: #de3123;
}

.header-texts h1 {
  cursor: pointer;
  position: absolute;
  top: 5%;
  left: 10%;
  font-size: 4rem;
  font-weight: 800;
  z-index: 2;
  letter-spacing: 7px;
}

.header-texts h1::before {
  cursor: pointer;
  content: "";
  position: absolute;
  background-color: #de3123;
  height: 80px;
  width: 0;
  top: 4px;
  left: -20px;
  mix-blend-mode: difference;
  transition: 0.3s ease-in-out;
}

.header-texts h1:hover::before {
  width: 105%;
}

.header-texts::before {
  content: "29";
  position: absolute;
  color: #de3123;
  font-size: 2rem;
  font-weight: 800;
  left: 25%;
  top: 300px;
}

.header-texts::after {
  content: "";
  position: absolute;
  background-color: #de3123;
  max-width: 200px;
  width: 12%;
  height: 2px;
  top: 320px;
  left: 10%;
}

.header-texts h3 {
  position: absolute;
  top: 25%;
  left: 10%;
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 500px;
  z-index: 2;
}

.header-texts h3::after {
  cursor: pointer;
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px dashed white;
  animation: spin 10s infinite;
  top: 294px;
  left: 12px;
  transition: 0.3s ease-in-out;
}

.header-texts h3:hover::after {
  width: 100px;
  height: 100px;
  top: 280px;
  left: -1px;
}

.header-texts h3::before {
  content: "";
  position: absolute;
  top: 325px;
  left: 35px;
  width: 0;
  height: 0;
  border-top: 20px solid white;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.header-texts p {
  z-index: 2;
  position: absolute;
  max-width: 400px;
  font-weight: 400;
  text-align: right;
  line-height: 30px;
  bottom: 15%;
  right: 10%;
}

.header-texts p::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 70vh;
  background-color: #de3123;
  right: -30px;
  bottom: 2%;
}

.content-aside {
  /* background-color: white; */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  /* background-color: black; */
}

.content-aside:hover {
  /* background-color: #de3123; */
}

aside {
  color: white;
  margin: 20px 0 20px 20px;
  padding: 10px 40px;
  position: sticky;
  top: 40px;
  border-left: 1px solid white;
  /* border-top: 1px solid white; */
}

aside h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

aside ul {
  list-style: square;
}

aside a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: white;
}

.content-first,
.content-second {
  /* background-color: black; */
  padding: 0 140px;
  /* font-family: 'Montserrat', sans-serif; */
  color: white;
}

.content-first::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(100px);
  background-color: black;
  opacity: 1;
  left: 0;
  z-index: -1;
}

.content-first h2 {
  margin-bottom: 50px;
}

.content-first h2,
.content-second h2 {
  cursor: pointer;
  font-size: 4rem;
  font-weight: 800;
}

.content-first h2::before {
  content: "|";
  position: absolute;
  color: #de3123;
  background-color: #de3123;
  border-radius: 20px;
  height: 90px;
  width: 0;
  left: 120px;
  font-weight: 200;
  margin-right: 20px;
  mix-blend-mode: multiply;
  transition: 0.2s ease-out;
  /* z-index: -1; */
}

.content-first h2:hover::before {
  width: 600px;
}

.content-second h2::before {
  content: "|";
  position: absolute;
  color: #de3123;
  background-color: #de3123;
  height: 90px;
  width: 0;
  left: -20px;
  font-weight: 200;
  margin-right: 20px;
  mix-blend-mode: multiply;
  transition: 0.2s ease-out;
}

.content-second h2:hover::before {
  width: 470px;
}

.content-first p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
}

.content-second {
  margin-top: 150px;
  position: relative;
}

.content-second h2 {
  margin-bottom: 400px;
  position: relative;
}

.content-second h2::after {
  content: "";
  position: absolute;
  left: 35%;
  top: 130%;
  /* background-color: #de3123; */
  background-image: url("https://images.unsplash.com/photo-1605379399843-5870eea9b74e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1198&q=80");
  background-size: 900px auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 700px;
  /* z-index: -1; */
  transition: 0.2s ease-in-out;
}

/* .content-second h2:hover::after {
  transform: scale(0.8);
} */

.content-second h4 {
  font-size: 2.5rem;
  font-weight: 400;
  max-width: 75%;
  position: relative;
  left: 35%;
}

.content-second h4::before {
  content: "01";
  color: white;
  position: absolute;
  left: -60px;
  font-size: 24px;
  font-weight: 400;
  /* transform: rotate(-90deg); */
  font-family: "Montserrat", sans-serif;
}

.content-second p {
  max-width: 80%;
}

.content-second p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.content-second {
  padding-bottom: 150px;
}

.articles {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
}

table {
  display: flex;
  width: 100%;
}

.row-first {
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 0 30px;
}

.article {
  cursor: pointer;
  /* background-color: #de3123; */
  height: 0;
  margin-top: 100px;
  margin: 100px 30px 0 30px;
  padding: 290px 30px 0 30px;
  position: relative;
  border: 1px solid white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: inset 4px 44px 75px -44px rgba(0, 0, 0, 0.75);
  transition: 0.35s ease-out;
}

.article:hover {
  padding: 330px 30px 0 30px;
  height: 400px;
}

.article img::before {
  display: none;
}

.article img {
  opacity: 0.5;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 200px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 30px;
  box-shadow: 4px 44px 75px -44px rgba(0, 0, 0, 0.75);
  transition: 0.35s ease-out;
}

.article:nth-child(1) img {
  background-image: url("https://i.pinimg.com/564x/81/3d/e6/813de6801f938dd401c1b88b544599b4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article:nth-child(2) img {
  background-image: url("https://i.pinimg.com/564x/90/a4/d9/90a4d9c18829e1358e137abe83899e91.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article:nth-child(3) img {
  background-image: url("https://i.pinimg.com/564x/ac/8f/33/ac8f33fa519e851d5997f3617fd7ae0c.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article img:hover {
  opacity: 1;
  border-radius: 20px;
  width: 87%;
  top: 30px;
  height: 300px;
}

.article a {
  font-family: "Montserrat", "Sans Serif";
  text-decoration: none;
  color: white;
  border: 1px solid white;
  font-weight: 400;
  padding: 10px 20px;
  /* background-color: white; */
  position: absolute;
  bottom: 30px;
  left: 50%;
  border-radius: 10px;
  transform: translate(-53%, 0);
  transition: 0.2s ease-in-out;
}

.article a:hover {
  background-color: #de3123;
  border: 1px solid #de3123;
}

.article p {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: 1.15rem;
}

/* .row-second::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(100px);
  background-color: black;
  opacity: 1;
  left: 0;
  z-index: -1;
} */

.row-second td {
  /* padding: 0 50px 50px 50px; */
  padding: 200px 50px;
}

.row-second td:nth-child(2) {
  /* padding: 50px 50px 50px 0; */
  perspective: 10px;
  position: relative;
  overflow: hidden;
  display: block;
}

.article-long {
  width: 60%;
}

.article-long h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  text-align: right;
}

.row-second img::before {
  display: none;
}

.row-second img {
  cursor: pointer;
  /* background-color: white; */
  overflow: hidden;
  transform-style: preserve-3d;
  position: relative;
  background-image: url("https://i.pinimg.com/564x/ab/72/3e/ab723e201710d2e9e39c4f40c89a8b22.jpg");
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 25px;
  transition: 0.2s ease-out;
  opacity: 0.6;
}

/* .row-second img::before {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 300px;
  height: 400px;
  background-image: url("https://i.pinimg.com/564x/89/47/98/8947984aa3728a33a4cb1d43c04787e2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateZ(-10px);
} */

.row-second img:hover {
  /* transform: scale(0.95); */
  /* border-radius: 0; */
  box-shadow: 10px 15px 41px -14px rgba(255, 255, 255, 0.63);
  background-size: 115%;
  opacity: 1;
}

.article-long p {
  text-align: right;
  font-size: 22px;
}

.creativity {
  overflow: hidden;
  color: white;
  transform-style: preserve-3d;
}

.creativity-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
}

.mini-one,
.mini-two,
.mini-three,
.mini-four {
  font-family: "Montserrat", "Sans serif";
  width: 500px;
  /* background-color: #de3123; */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  perspective: 10px;
  /* position: relative; */
  padding: 40px;
  margin: 10px 40px;
}

.mini-one h2,
.mini-two h2,
.mini-three h2,
.mini-four h2 {
  font-weight: 200;
  font-size: 2rem;
}

.mini-one p,
.mini-two p,
.mini-three p,
.mini-four p {
  font-weight: 200;
  font-size: 1rem;
  /* width: 500px; */
  /* margin-left: 200px; */
}

.mini-one,
.mini-three {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  position: relative;
}

.mini-two,
.mini-four {
  margin-top: 200px;
}

.creativity img {
  width: 350px;
  height: 400px;
  /* background-color: white; */
  overflow: hidden;
  /* perspective: 10px; */
  transform-style: preserve-3d;
  display: block;
  position: relative;
}

.mini-one img,
.mini-three img {
  position: relative;
  margin-left: 150px;
  right: 0;
}

.mini-one,
.mini-three {
  text-align: right;
}

.mini-one img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 300px;
  height: 400px;
  background-image: url("https://i.pinimg.com/564x/3b/14/16/3b14161f2c7bd8fb62206fa7d96efc09.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateZ(-10px) scale(5);
}

.mini-two img::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 300px;
  height: 400px;
  background-image: url("https://i.pinimg.com/564x/2a/e9/dc/2ae9dc6531398bae9c53f15cc22f89e4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateZ(-10px) scale(4);
}
.mini-three img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 300px;
  height: 400px;
  background-image: url("https://i.pinimg.com/564x/92/c1/b0/92c1b0ec75c24860c8040cffe8a85d51.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateZ(-10px) scale(4);
}
.mini-four img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 300px;
  height: 400px;
  background-image: url("https://i.pinimg.com/564x/89/47/98/8947984aa3728a33a4cb1d43c04787e2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateZ(-10px) scale(4);
}

.creativity img::before {
  content: "";
  color: black;
  /* display: none; */
}

footer {
  border-top: 1px solid white;
  z-index: 99;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  padding: 60px;
}

.footer-logo,
.footer-form {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 50%;
}

.footer-logo h3 {
  font-size: 3rem;
  margin: 0;
  padding: 0;
  position: relative;
}

/* .footer-logo h3::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -90%;
  height: 1px;
  width: 80%;
  background-color: white;
} */

.footer-logo p {
  font-family: "Montserrat", "Sans serif";
  font-size: 32px;
  font-weight: 200;
  width: 70%;
  mix-blend-mode: difference;
  position: relative;
}

.footer-logo p::before {
  content: "";
  position: absolute;
  top: 115%;
  left: 0;
  height: 1px;
  width: 0%;
  background-color: white;
  z-index: -1;
  transition: 0.2s ease-in-out;
}

.footer-logo p:hover::before {
  width: 100%;
}

.footer-form {
  gap: 20px;
}

.footer-form p {
  font-family: "Montserrat", "Sans serif";
  font-size: 3rem;
  font-weight: 200;
  margin: 0;
  padding: 0;
  position: relative;
}

.footer-form label {
  margin: 10px 0;
  font-family: "Montserrat", "Sans serif";
  font-size: 2rem;
}

.footer-form input {
  margin: 30px 0;
}

.footer-form input:focus {
  outline: none;
}

.footer-form option,
.footer-form select {
  cursor: pointer;
  border: none;
  background-color: black;
  color: white;
  border-radius: 0;
  margin: 20px 0;
  height: 100px;
  width: 300px;
  transition: 0.2s ease-in-out;
  font-size: 18px;
}

.footer-form option {
  cursor: pointer;
}

#name {
  background-color: black;
  border: none;
  color: white;
  height: 50px;
  border-bottom: 1px solid white;
  padding-bottom: 20px;
  width: 600px;
  font-size: 24px;
  font-family: "Montserrat", "Sans serif";
  transition: 0.5s ease-in-out;
}

#name:focus {
  border-bottom: 1px solid rgb(189, 255, 90);
}
/*
footer [type="radio"] {
  display: none;
}

footer label:nth-child(10),
footer label:nth-child(13),
footer label:nth-child(16) {
  color: palegreen;
}

footer label:nth-child(10),
footer label:nth-child(13),
footer label:nth-child(16) {
  display: block;
  padding: 20px 60px;
  background: #1d1d42;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  min-width: 250px;
  white-space: nowrap;
  position: relative;
  transition: 0.4s ease-in-out 0s;
}

footer label:nth-child(10)::before,
footer label:nth-child(13)::before,
footer label:nth-child(16)::before,
footer label:nth-child(10)::after,
footer label:nth-child(13)::after,
footer label:nth-child(16)::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

footer label:nth-child(10)::after,
footer label:nth-child(13)::after,
footer label:nth-child(16)::after {
  height: 19px;
  width: 19px;
  border: 2px solid #524eee;
  left: 19px;
  top: calc(50% - 12px);
}

footer label:nth-child(10)::before,
footer label:nth-child(13)::before,
footer label:nth-child(16)::before {
  background: #524eee;
  height: 20px;
  width: 20px;
  left: 21px;
  top: calc(50%-5px);
  transform: scale(5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out 0s;
}
footer [type="radio"]:checked ~ label {
  border-color: #524eee;
}
footer [type="radio"]:checked ~ label::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
} */

input[type="radio"] {
  display: none;
}

label:nth-child(10), label:nth-child(13), label:nth-child(16) {
  /* background-color: #de3123; */
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  display: block;
  margin-bottom: 20px;
  margin-left: 20px;
  font-size: 24px;
  width: 200px;
}

footer button {
  /* cursor: pointer;
  margin-top: 40px;
  background-color: black;
  border: 1px solid white;
  padding: 20px 40px;
  border-radius: 50px;
  color: white;
  transition: 0.2s ease-in-out;
  font-size: 22px; */

  width: 140px;
  height: 45px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

footer button:hover {
  /* cursor: pointer;
  border: 1px solid #de3123;
  background-color: #de3123;
  color: black; */

  background-color: #2ee59d;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

@media only screen and (max-width: 600px) {

  .page-wrapper {
    /* overflow: visible; */
  }

  nav {
    background-color: #de3123;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: inherit;
    padding: 0;
    height: 100px;
    width: 100%;
  }

  nav ul{
    margin: 0;
    padding: 0;
  }

  .nav-logo-title {
    height: auto;
  }

  #header {
    height: 90vh;
  }

  #header::before {
    width: 300px;
  }

  .header-texts h1, .header-texts h3 {
    margin: 0;
    padding: 0;
    letter-spacing: normal;
  }

  .header-texts h1{
    font-size: 3.5rem;
    max-width: 430px;
  }

  .header-texts h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    width: 60%;
  }

  .header-texts p {
    bottom: 5%;
    max-width: 70%;
  }

  .content-aside {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
  }

  .content {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .content-first, .content-second {
    margin: 0;
    padding: 0;
  } 

  .content-second h2 {
    margin-bottom: 240px;
  }

  .content-second h4{
    font-size: 2rem;
  }

  .content-second h2::after {
    top:170px;
    left: 15%;
    height: 200px;
  }

  .content-second h4{
    left: 25%;
  }

  aside {
    margin: 20px;
    padding: 0;
    border-left: none;
    position: inherit;
  }

  .row-first {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }

  .row-second {
    display: flex;
    flex-direction: column-reverse;
  }

  .row-second td {
    padding: 0;
  }
  
  .row-second td:nth-child(2) {
    margin: 40px 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .row-second img {
    width: 90%;
    height: 300px;
  }

  .article-long {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .article-long h3, .article-long p {
    margin: 20px;
  }

  .mini-one img, .mini-three img {
    margin-right: 20px;
    right: 30%;
  }

  .mini-two, .mini-four {
    margin-top: 20px;
  }

  .creativity-wrapper img {
    width: 80%;
    height: 300px;
  }

  footer {
    display: flex;
    /* height: 100%;
    width: 100%; */
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    position: inherit;
    width: 100%;
  }

  .footer-form {
    display: flex;
    flex-direction: column;
    position: inherit;
    width: 100%;
  }

  .footer-form p {
    font-size: 2rem;
    padding-bottom: 50px;
  }

  .footer-form label {
    font-size: 1rem;
    padding-bottom: 50px;
  }

  #name {
    width: auto;
    height: 20px;
  }

  .footer-credit {
    padding-top: 50px;
  }

  .header-filler,
  .header-texts::before,
  .header-texts::after,
  .header-texts h1::before,
  .header-texts h3::before,
  .header-texts h3::after,
  .content-first h2::before
  {
    display: none;
  }

}

/* ANIMATIONS */

@keyframes carousel {
  0%,
  25%,
  100% {
    left: 0;
  }

  30%,
  55% {
    left: -100%;
  }

  60%,
  85% {
    left: -200%;
  }
}

@keyframes fade {
  0% {
    background-color: black;
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes reveal {
  0% {
    transform: translateY(200%);
    transition: 0.8s ease-in-out;
  }
  100% {
    transform: translateY(0);
  }
}
