#home {
  clip-path: url(#cache);
}

#red {
  fill: none;
  opacity: 0.15;
  stroke: #CE1B5F;
  stroke-width: 12;
  stroke-miterlimit:10;
  stroke-dasharray: 500;
  stroke-dashoffset: 2000;
  animation: draw 35s;
  animation-delay: 10s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

#blue {
  fill: none;
  opacity: 0.15;
  stroke: #06A1C4;
  stroke-width: 12;
  stroke-miterlimit:10;
  stroke-dasharray: 500;
  stroke-dashoffset: 2000;
  animation: draw 35s;
  animation-delay: 10s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

#light-blue {
  fill: none;
  opacity: 0.15;
  stroke: #06A1C4;
  stroke-width: 6;
  stroke-miterlimit:10;
  stroke-dasharray: 50;
  stroke-dashoffset: 100;
  animation: draw 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;    
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
 }
    }

    @media screen and (min-width: 601px) {
     div.example {
      font-size: 90px !important;
      }
    }

    @media screen and (max-width: 600px) {
    div.example {
     font-size: 40px !important;
     }
    }

    @media screen and (max-width: 320px) {
    div.example {
     font-size: 30px !important;
     }
    }

    @media screen and (min-width: 601px) {
     div.example1 {
      font-size: 22px !important;
      font-family: "Comic Sans MS", cursive, sans-serif !important;
      }
    }

    @media screen and (max-width: 600px) {
    div.example1 {
      margin-top: 20px;
     font-size: 15px !important;
     font-family: "Comic Sans MS", cursive, sans-serif !important;
     }
    }

    @media screen and (max-width: 320px) {
    div.example1 {
      margin-top: 17px;
     font-size: 12px !important;
     font-family: "Comic Sans MS", cursive, sans-serif !important;
     }
    }
    @media screen and (min-width: 601px) {
     div.example2 {
      font-size: 20px !important;
      font-family: "Courier New", Courier, monospace !important;
      }
    }

    @media screen and (max-width: 600px) {
    div.example2 {
     font-size: 15px !important;
     font-family: "Courier New", Courier, monospace !important;
     }
    }

    @media screen and (max-width: 330px) {
    div.example2 {
     font-size: 10px !important;
     font-family: "Courier New", Courier, monospace !important;
     }
    }



.preloader {
    max-width: 100vw;
    max-height: 100vh;
    background: #222;
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: flex;
}

.loader {
    width: 100%;
    height: 100%;
    color: #222;
    overflow: hidden;
}

.side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translate(0, -50%);
}

.top,
.right,
.left,
.bottom {
    max-width: 100%;
    max-height: 100%;
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.left {
    position: relative;
    background: #a55eea;
    filter: blur(1px);
    left: -15vw;
    animation: left 1.5s ease infinite;
}

.right {
    position: relative;
    background: #f7b731;
    filter: blur(1px);
}

.top {
    background-color: #fc5c65;
    filter: blur(1px);
}

.bottom {
    filter: blur(1px);
    background-color: #2bcbba;
    left: 5vw;
    animation: bottom 1.5s ease infinite;
    position: relative;
}

@keyframes left {
    0% {
        left: -15vw;
    }
    25% {
        left: 0vw;
    }
    50% {
        left: 0vw;
    }
    75% {
        left: 0vw;
    }
    100% {
        left: -15vw;
    }
}

@keyframes rigeht {
    0% {
        left: -5vw;
    }
    50% {
        left: 0vw;
    }
    100% {
        left: -5vw;
    }
}

@keyframes bottom {
    0% {
        left: 0vw;
    }
    25% {
        left: 0vw;
    }
    50% {
        left: 15vw;
    }
    75% {
        left: 0vw;
    }
    100% {
        left: 0vw;
    }
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background-image: linear-gradient(to top, #86377b 20%, #27273c 80%);
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.bgBottom {
    z-index: 5;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
.waveMiddle {
    background-size: 50% 120px;
}
.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}
.waveBottom {
    background-size: 50% 100px;
}
.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}