.loader-section{
  background: rgb(1,16,19);
  background: -moz-linear-gradient(128deg, rgba(1,16,19,1) 65%, rgba(0,35,45,1) 100%);
  background: -webkit-linear-gradient(128deg, rgba(1,16,19,1) 65%, rgba(0,35,45,1) 100%);
  background: linear-gradient(128deg, rgba(1,16,19,1) 65%, rgba(0,35,45,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#011013",endColorstr="#00232d",GradientType=1);
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:999;
  transition: all 1s 1s ease-out;
  opacity:1;
  overflow: hidden;
}
.loaded{
  opacity:0;
  z-index:-1;
  height: 0;
}
html
{
    --path: #F5F9FF;
    --dot: #11d8fc;
    --duration: 3s;
}

.loader {
    width: 44px;
    height: 44px;
    position: relative;
}

.loader.triangle {
    width: 48px;
    display: block;
    margin: auto;
  }
.text-loader{
  font-family: 'inversionz_unboxedregular';
  font-size: 2.8rem;
  margin-top: 1rem;
  text-align: center;
  display: block;
}
.loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
}

rect,
polygon,
circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}
polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }
    66% {
        stroke-dashoffset: 147;
    }
    100% {
        stroke-dashoffset: 221;
    }
}

@keyframes dotTriangle {
    33% {
        transform: translate(0, 0);
    }
    66% {
        transform: translate(10px, -18px);
    }
    100% {
        transform: translate(-10px, -18px);
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }
    50% {
        stroke-dashoffset: 128;
    }
    75% {
        stroke-dashoffset: 192;
    }
    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(18px, -18px);
    }
    75% {
        transform: translate(0, -36px);
    }
    100% {
        transform: translate(-18px, -18px);
    }
}

@keyframes pathCircle {
    25% {
        stroke-dashoffset: 125;
    }
    50% {
        stroke-dashoffset: 175;
    }
    75% {
        stroke-dashoffset: 225;
    }
    100% {
        stroke-dashoffset: 275;
    }
}

.loader {
    display: inline-block;
    margin: 0 16px;
}

html {
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

.loader-wrapper {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    z-index: 1000;
    background: rgb(0,0,0);
    background: linear-gradient(145deg, rgba(0,0,0,1) 0%, #272727 100%);
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-wrapper div:last-child
{
    font-weight: 200;
    letter-spacing: 15px;
    font-size: large;
    margin-left: 15px;
}

*
{
    color: white;
    font-family: Spartan, sans-serif;
}
