/* Primary Colors */
/* Secondary Colors */
/* Players Colors */
/* Apps Colors */
/* Accent Colors */
/* Error Colors */
/* Success Colors */
/* Grey Colors */
/* Background Colors */
/* Text Colors */
/* Online/Offline Colors */
/* Socials Colors */
/* Dark/White/Grey Colors */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: white;
}

.k-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 65px;
  background-color: #111525;
  font-size: large;
}
.k-body .k-content {
  flex-grow: 1;
  min-height: calc(100vh - (65px + 70px));
  width: 100%;
  display: flex;
  flex-direction: column;
}
.k-body .k-footer {
  width: 100%;
  min-height: 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding: 30px;
  justify-content: center;
  background-color: #0f1015;
  color: white;
  position: relative;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 30px;
}
section .k-container {
  max-width: 1070px;
}
section .k-container h2 {
  font-size: 2em;
  padding: 0;
  margin: 0 0 60px;
}

.k-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.k-hero .k-hero-split {
  display: flex;
  max-width: 46%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.k-hero .k-hero-title {
  font-size: 2.6em;
  line-height: 1.2em;
  padding: 0;
  margin: 0 0 60px;
}
.k-hero .k-hero-p {
  margin: 0;
}
.k-hero .k-hero-image {
  width: 400px;
}
.k-hero .k-hero-rotating {
  display: inline-block;
  position: relative;
  height: 1.5em;
  overflow: hidden;
  vertical-align: bottom;
  font-size: large;
  width: 100%;
  margin-bottom: 20px;
}
.k-hero .k-hero-rotating span {
  display: block;
  position: absolute;
  font-weight: bold;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  color: #00e8fd;
  transform: translateY(100%);
  animation: rotateWords 10s ease-in-out infinite;
}
.k-hero .k-hero-rotating span:nth-child(1) {
  animation-delay: 0s;
}
.k-hero .k-hero-rotating span:nth-child(2) {
  animation-delay: 2s;
}
.k-hero .k-hero-rotating span:nth-child(3) {
  animation-delay: 4s;
}
.k-hero .k-hero-rotating span:nth-child(4) {
  animation-delay: 6s;
}
.k-hero .k-hero-rotating span:nth-child(5) {
  animation-delay: 8s;
}
@media screen and (max-width: 970px) {
  .k-hero .k-hero-split:nth-child(1) {
    max-width: none;
    width: 100%;
  }
  .k-hero .k-hero-split:nth-child(2) {
    display: none;
  }
}

.k-split-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.k-split-wrapper .k-split {
  display: flex;
  max-width: 46%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 970px) {
  .k-split-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .k-split-wrapper .k-split {
    max-width: none;
  }
}

.k-features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 8px;
  background-color: var(--background);
  gap: 30px;
}
.k-features .k-feature-box {
  width: 300px;
  height: 300px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #242D4E;
  border-radius: 8px;
  background-color: #111525;
}
.k-features .k-feature-box > i {
  font-size: xxx-large;
  color: #00e8fd;
}
.k-features .k-feature-box > h5 {
  margin-top: 16px;
}
.k-features .k-feature-box > div {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.k-features .k-feature-box > div > p {
  text-align: center;
}

#notifications {
  position: absolute;
  top: 65px;
  right: 0;
  z-index: 999;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.appear-from-top,
.appear-from-bottom,
.appear-from-left,
.appear-from-right,
.appear-opacity {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.appear-from-top.visible,
.appear-from-bottom.visible,
.appear-from-left.visible,
.appear-from-right.visible,
.appear-opacity.visible {
  transform: translateY(0);
  opacity: 1;
}

.appear-from-top {
  transform: translateY(-100px);
}

.appear-from-bottom {
  transform: translateY(100px);
}

.appear-from-left {
  transform: translateX(-200px);
}

.appear-from-right {
  transform: translateX(200px);
}

.appear-opacity {
  transform: scale(0.95);
  transition-duration: 1.2s;
}
.appear-opacity.visible {
  transform: scale(1);
  opacity: 1;
}

.appear-fancy {
  transform: translateY(50px) rotate(5deg) scale(0.8);
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.appear-fancy.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

#testWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: relative;
}

#squareAnimContainer {
  width: 100vmin;
  height: 100vmin;
  position: relative;
}

#svgs {
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
}

.svgTriggersBorders {
  pointer-events: none;
}

.revealedImage, .borderHover {
  position: relative;
  opacity: 0.3;
}

.borderDefault {
  opacity: 1;
}

.borderDefault, .borderHover {
  pointer-events: none;
}

.revealedImage {
  z-index: 0;
  transition: clip-path 0.3s ease-out, opacity 0.3s ease-in;
}

.borderHover {
  z-index: 0;
}

.borderDefault {
  z-index: 0;
}

#revealedImage1 {
  clip-path: url("#clipShape1");
}

#revealedImage1:hover {
  clip-path: url("#clipSquare1");
  z-index: 10;
  opacity: 1;
}

#revealedImage1:hover ~ #borderDefault1 {
  opacity: 0;
  z-index: 0;
}

#revealedImage1:hover ~ #borderHover1 {
  opacity: 1;
  z-index: 10;
}

#revealedImage2 {
  clip-path: url("#clipShape2");
}

#revealedImage2:hover {
  clip-path: url("#clipSquare2");
  z-index: 10;
  opacity: 1;
}

#revealedImage2:hover ~ #borderDefault2 {
  opacity: 0;
  z-index: 0;
}

#revealedImage2:hover ~ #borderHover2 {
  opacity: 1;
  z-index: 10;
}

#revealedImage3 {
  clip-path: url("#clipShape3");
}

#revealedImage3:hover {
  clip-path: url("#clipSquare3");
  z-index: 10;
  opacity: 1;
}

#revealedImage3:hover ~ #borderDefault3 {
  opacity: 0;
  z-index: 0;
}

#revealedImage3:hover ~ #borderHover3 {
  opacity: 1;
  z-index: 10;
}/*# sourceMappingURL=homepage.css.map */