@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100&family=Roboto:wght@100&display=swap";
@import "https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins:wght@100&family=Roboto:wght@100&display=swap";
@import "http://fonts.cdnfonts.com/css/from-cartoon-blocks";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100&family=Roboto:wght@100&display=swap";
@import "https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins:wght@100&family=Roboto:wght@100&display=swap";
@import "http://fonts.cdnfonts.com/css/from-cartoon-blocks";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100&family=Roboto:wght@100&display=swap";
@import "https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins:wght@100&family=Roboto:wght@100&display=swap";
@import "http://fonts.cdnfonts.com/css/from-cartoon-blocks";
* {
  box-sizing: border-box;
  margin: 0;
}

:after, :before {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background: red;
  font-family: monospace, Courier New, Courier;
  line-height: 1;
}

button, input, textarea, select {
  font: inherit;
  color: red;
  font-family: monospace, Courier New, Courier;
  font-weight: bolder;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: hidden;
}

img, video, canvas, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section {
  min-height: 100vh;
  padding: 5rem 1rem 1rem;
  overflow: hidden;
}

@media (min-width: 650px) {
  .section {
    padding: 5rem;
  }
}

.coolLink {
  place-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.coolLink:before {
  content: "";
  width: 100%;
  height: 2px;
  transform-origin: 100%;
  background: currentColor;
  transition: all cubic-bezier(.5, .5, .3, 1), transform .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 1, 1);
}

.coolLink:after {
  content: attr(data-text);
  height: 100%;
  transition: all cubic-bezier(.5, .5, .3, 1), transform .5s;
  position: absolute;
  top: 0;
  transform: translate3d(150%, 0, 0);
}

.coolLink span {
  transition: all cubic-bezier(.5, .5, .3, 1), transform .5s;
}

.coolLink:hover:before {
  transform-origin: 0;
  transform: scale3d(1, 1, 1);
}

.coolLink:hover:after {
  transform: translate3d(0, 0, 0);
}

.coolLink:hover span {
  transform: translate3d(-150%, 0, 0);
}

.coolButton {
  cursor: pointer;
  width: 100px;
  height: 60px;
  background: none;
  border: none;
  position: relative;
}

.coolButton:before, .coolButton:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.coolButton:before {
  content: "";
  clip-path: polygon(47% 15%, 61% 34%, 100% 35%, 100% 36%, 76% 77%, 52% 93%, 26% 83%, 8% 70%, 1% 40%, 22% 26%);
  background: red;
  transition: clip-path 5s;
}

.coolButton:hover {
  transform: rotate(-20deg);
}

.coolButton span {
  mix-blend-mode: difference;
}

.landing {
  width: 100%;
  height: 100vh;
  color: #ef0f0f;
  background: #000 url("110.36baf5a5.jpg") 0 0 / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.landing .header {
  z-index: 2;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.landing .header__wrap {
  width: 60vw;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
}

.landing .header__left {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.landing .header__left li {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .landing .header__wrap {
    width: 100vh;
  }
}

.landing .socials {
  z-index: 2;
  align-items: center;
  gap: 1rem;
  display: flex;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
}

.landing .coloredIcon {
  color: red;
  font-size: 30px;
}

.landing .coloredIcon:hover {
  animation: coloredIconAnimation 1s infinite;
}

@keyframes coloredIconAnimation {
  0% {
    text-shadow: -2px -4px #00f;
  }

  50% {
    text-shadow: 2px 4px #00f;
  }

  100% {
    text-shadow: -2px -4px #00f;
  }
}

.landing .scrollDown {
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
}

.landing .scrollDown__wheel {
  height: 42px;
  width: 24px;
  border: 3px solid red;
  border-radius: 10px;
}

.landing .scrollDown__wheel--inner {
  width: 4px;
  height: 4px;
  background: red;
  border-radius: 50%;
  margin-top: 5px;
  animation: movingwheel .5s linear infinite;
  position: absolute;
  left: 10px;
}

@keyframes movingwheel {
  0% {
    top: 5px;
  }

  50% {
    top: 10px;
  }

  100% {
    top: 20xpx;
  }
}

.landing .scrollDown .scrollDown__arrows {
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.landing .scrollDown .scrollDown__arrows .scrollDown__arrow {
  width: 15px;
  height: 15px;
  border-bottom: 2px solid red;
  border-right: 2px solid red;
  animation: scrollAnim 1s infinite alternate;
  transform: rotate(45deg);
}

.landing .scrollDown .scrollDown__arrows .scrollDown__arrow:nth-child(1) {
  animation-delay: .2s;
}

.landing .scrollDown .scrollDown__arrows .scrollDown__arrow:nth-child(2) {
  animation-delay: .4s;
}

.landing .scrollDown .scrollDown__arrows .scrollDown__arrow:nth-child(3) {
  animation-delay: .6s;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.landing .intro {
  width: 100%;
  height: 60%;
  z-index: 2;
  color: #080404;
  font-family: sans-serif, From Cartoon Blocks, sans-serif;
  position: absolute;
  top: 20%;
  left: 2rem;
}

.landing .intro h2 {
  font-size: 28px;
}

.landing .intro h4 {
  width: 90%;
  padding-top: 1rem;
  font-size: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

:after, :before {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background: red;
  font-family: monospace, Courier New, Courier;
  line-height: 1;
}

button, input, textarea, select {
  font: inherit;
  color: red;
  font-family: monospace, Courier New, Courier;
  font-weight: bolder;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: hidden;
}

img, video, canvas, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section {
  min-height: 100vh;
  padding: 5rem 1rem 1rem;
  overflow: hidden;
}

@media (min-width: 650px) {
  .section {
    padding: 5rem;
  }
}

.loading {
  height: 100vh;
  width: 100%;
  z-index: 99;
  background: #0c0000;
  place-items: center;
  font-family: Orbitron, sans-serif;
  display: grid;
  position: fixed;
  inset: 0 0 200px;
}

.loading__box {
  width: 500px;
  height: 200px;
  border: 3px solid #6cff8c7a;
  border-color: #6cff8c7a #6cff8d;
  position: relative;
}

@media (max-width: 600px) {
  .loading__box {
    width: 90vw;
  }
}

.loading__bar {
  width: 95%;
  height: 10px;
  background: #ccc;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateX(-30%);
}

.loading__bar--inner {
  height: 100%;
  width: 0%;
  background: #6cff8d;
  border-radius: 2px;
}

.loading__text {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  position: relative;
}

@media (max-width: 355px) {
  .loading__text {
    font-size: 17px;
  }
}

.loading__text--dot {
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  margin: 0 3px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  from {
    opacity: 0;
    background: #6cff8d;
  }

  to {
    opacity: 1;
  }
}

.loading__text--border {
  width: 85%;
  height: 1px;
  background: #6cff8c7a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.loading__counter {
  color: #fff;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 70%;
  left: 0;
}

.loading__counter--number {
  color: #6cff8d;
}

.loading__width_animation {
  animation: width-animation 2s forwards;
}

@keyframes width-animation {
  0% {
    width: 85%;
  }

  100% {
    width: 280px;
  }
}

.loading__svg {
  width: 85%;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.skills {
  height: 300px;
  text-align: center;
  color: #000;
  background: #ef9a29;
  padding-top: 5rem;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.skills__header {
  font-weight: 450;
}

.skills__text {
  white-space: nowrap;
  position: absolute;
}

.skills__text--left {
  animation: moveleft 30s linear infinite;
  top: 9rem;
  left: 0;
}

@keyframes moveleft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.skills__text--right {
  animation: moveright 30s linear infinite;
  top: 12rem;
  right: 0;
}

@keyframes moveright {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(50%, 0, 0);
  }
}

@media (max-width: 700px) {
  .skills {
    height: 180px;
    padding-top: 1rem;
  }

  .skills__text {
    font-size: 20px;
  }

  .skills__text--left {
    top: 5rem;
  }

  .skills__text--right {
    top: 7rem;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
}

:after, :before {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background: red;
  font-family: monospace, Courier New, Courier;
  line-height: 1;
}

button, input, textarea, select {
  font: inherit;
  color: red;
  font-family: monospace, Courier New, Courier;
  font-weight: bolder;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: hidden;
}

img, video, canvas, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section {
  min-height: 100vh;
  padding: 5rem 1rem 1rem;
  overflow: hidden;
}

@media (min-width: 650px) {
  .section {
    padding: 5rem;
  }
}

.reviews {
  color: red;
  background: #fff;
  position: relative;
}

.reviews__header {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.reviews__header .instructor {
  background: #28316013;
  position: relative;
  box-shadow: 0 8px 32px #1f268745;
}

.reviews__header .instructor__infos {
  align-items: center;
  gap: 15px;
  font-size: 17px;
  display: flex;
}

.reviews__header .instructor__img {
  width: 50px;
  height: 50px;
  border-right: 2px solid #f44336;
  border-radius: 50%;
}

.reviews__header .instructor__col {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.reviews__header .instructor__info {
  align-items: center;
  gap: 10px;
  display: flex;
}

.reviews__header .instructor__info img {
  width: 20px;
  height: 20px;
}



/*# sourceMappingURL=index.e06a7e20.css.map */
