@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Grey+Qo&family=Loved+by+the+King&family=Luckiest+Guy&family=Lusitana&family=Medula+One&family=Michroma&family=Petrona:wght@200&family=Philosopher&family=Ranga&display=swap");
*, *::after, *::before {
  padding: 0;
  margin: 0;
}

.maincontainer {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.maincontainer .listStyles {
  position: absolute;
  z-index: 1000;
  top: 5%;
  left: 2.5%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto auto;
      grid-template-rows: auto auto auto;
  gap: 10px;
}

.maincontainer .listStyles .text {
  font-family: 'Grey Qo', cursive;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.maincontainer .listStyles .text:hover .maincontainer .listStyles .text::after {
  width: 100%;
}

.maincontainer .listStyles .text::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: 0%;
  position: absolute;
}

.maincontainer .listStyles .text:nth-child(2) {
  color: #ffff00;
}

.maincontainer .listStyles .text:nth-child(3) {
  color: #c06767;
}

.container {
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #FF0000;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .cursor {
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: red;
  mix-blend-mode: difference;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
  pointer-events: none;
  -webkit-transition-property: background,-webkit-transform;
  transition-property: background,-webkit-transform;
  transition-property: background,transform;
  transition-property: background,transform,-webkit-transform;
}

.container .circles {
  position: absolute;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-size: 200% 200%;
  background-position: 0% -100%;
  -webkit-animation: backgroundLinear 2s ease forwards 0.5s;
          animation: backgroundLinear 2s ease forwards 0.5s;
}

@-webkit-keyframes backgroundLinear {
  100% {
    background-position: -200% 50%;
  }
}

@keyframes backgroundLinear {
  100% {
    background-position: -200% 50%;
  }
}

.container .circles:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 25vw;
  height: 25vw;
}

.container .circles:nth-child(2) {
  bottom: 10%;
  left: 10%;
}

.container .circles:nth-child(3) {
  right: 20%;
  top: 20%;
}

.container .circles:nth-child(4) {
  bottom: 10%;
  right: 10%;
}

.container .title {
  font-family: 'Grey Qo';
  font-style: normal;
  font-weight: 400;
  font-size: 6vw;
  line-height: 189px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}

.container .title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(#000000), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #000000 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
}

.container svg {
  width: 100%;
  height: 100%;
}

.container path {
  stroke-dasharray: 100;
  stroke-dashoffset: 300;
  fill: none;
  -webkit-animation: line 3s ease forwards 0.5s;
          animation: line 3s ease forwards 0.5s;
}

@-webkit-keyframes line {
  0% {
    fill: transparent;
  }
  100% {
    fill: #000000;
    stroke-dashoffset: 100;
  }
}

@keyframes line {
  0% {
    fill: transparent;
  }
  100% {
    fill: #000000;
    stroke-dashoffset: 100;
  }
}

.container2 {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  left: -100%;
  z-index: 10;
  background: #000;
  display: -ms-grid;
  display: grid;
  position: absolute;
  -ms-grid-rows: 70% 30%;
      grid-template-rows: 70% 30%;
  width: 100%;
  height: 100vh;
  font-family: 'Grey Qo';
}

.container2 .cursor {
  z-index: 15;
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fffb00;
  mix-blend-mode: difference;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  pointer-events: none;
  -webkit-transition-property: background,-webkit-transform;
  transition-property: background,-webkit-transform;
  transition-property: background,transform;
  transition-property: background,transform,-webkit-transform;
}

.container2 .top {
  grid-row: 0/2;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
}

.container2 .top .title {
  width: 100%;
  height: 100%;
  color: #ffff00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 4vw;
}

.container2 .top .title h1 {
  position: relative;
  font-weight: 300;
}

.container2 .top .title h1::after {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  background: #fff;
  bottom: -10%;
  content: '';
}

.container2 .top .ImageComparison {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container2 .top .ImageComparison .yor {
  width: 35vw;
  height: 35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.container2 .top .ImageComparison img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 100%;
  height: 70%;
}

.container2 .top .ImageComparison .text {
  margin-bottom: 12px;
  font-size: 45px;
  text-shadow: 0px 4px 10px #000000;
  pointer-events: none;
}

@media (max-width: 750px) {
  .container2 .top .ImageComparison .text {
    font-size: 25px;
  }
}

.container2 .top .ImageComparison .try {
  background: yellow;
  color: #000;
}

.container2 .top .ImageComparison .try2 {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffff00;
}

.container2 .top .ImageComparison .try2 .text {
  text-shadow: 0px 4px 10px #ffff00;
}

.container2 .top .ImageComparison .overlap {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 35vw;
  height: 35vw;
}

.container2 .top .ImageComparison .clipper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* transform: translate(-50%,-50%); */
  overflow: hidden;
  z-index: 10;
}

@media (max-width: 500px) {
  .container2 .top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
  }
  .container2 .top .ImageComparison .yor {
    width: 300px;
    height: 300px;
  }
  .container2 .top .ImageComparison .overlap {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 300px;
    height: 300px;
  }
}

.container2 .bottom {
  -ms-grid-row: 2;
  grid-row: 2/2;
  width: 100%;
  height: 80%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
}

.container2 .bottom .episodes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  gap: 10px;
}

.container2 .bottom .episodes .epi-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #fff;
  cursor: pointer;
}

.container2 .bottom .episodes .epi-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.container2 .bottom .episodes .epi-box h3 {
  font-size: 35px;
  font-weight: 200;
}

@media (max-width: 750px) {
  .container2 .bottom .episodes .epi-box h3 {
    font-size: 25px;
  }
}

.container2 .bottom .episodes .active {
  background: #ffff00;
  color: #000;
}

.container2 .bottom .picture {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.container2 .bottom .picture .epi-log {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
}

.container2 .bottom .picture .epi-log img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.container2 .bottom .picture .epi-dash {
  z-index: 50;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffff00;
  left: -100%;
}

@media (max-width: 500px) {
  .container2 .bottom {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */