/* ---- reset ---- */
body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}
.row {
  margin: auto;
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: red;
  background-image: linear-gradient(#ff6f42, #ffcc00);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

p.a {
  font-size: 20px;
  font-weight: bold;
}
a {
  color: white;
  text-decoration: none !important;
}
h1 {
  font-size: 2rem;
}
p {
  font-size: 1.5rem;
}

.pageTop {
  width: 100%;
  height: 100vh;
  position: relative;
  font-weight: bold;
}

.page-info {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: auto;
  max-width: 1320px;
  width: 100%;
  text-align: center;
}
.typing-img {
  height: 200px;
  width: 100%;
  background-color: gray;
}
.page-benefit {
  color: white;
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
  background-color:  #ffb310;
}
.benefit-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: auto;
  max-width: 1420px;
  width: 100%;
}
.footer {
  font-weight: 200;
  width: 100%;
  color: white;
  background-color: #8399a7;
}
.footer-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: auto;
  max-width: 1420px;
  width: 100%;

}

.img-icon {
  display: flex;
  justify-content: center;
}
.img-icon img {
  width: 100%;
  max-width: 100px;
  height: auto;
}
.img-admin {
  display: flex;
  justify-content: center;
}
.img-admin img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.seetrue {
  background-color: transparent !important;

}

.fonsize {
  font-size: 48px !important;
  color: #fff !important;
}

.for-center-page {
  width: 100%;
  height: calc(80vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.button-49,
.button-49:after {
  width: 150px;
  height: 76px;
  line-height: 78px;
  font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(45deg, transparent 5%, #3e6daa 5%);
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px #c4354d;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-49:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);

  content: 'ALTERNATE TEXT';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
}

.button-49:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

.clouds {
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: 0;
}
#clouds1 {
  animation: cloudreverse 200s infinite;
  animation-timing-function: linear;
  margin-top: 0;
  background: url(../images/clouds1.png);
}

#clouds2 {
  animation: cloud 150s infinite;
  animation-timing-function: linear;
  margin-top: 30px;
  background: url(../images/clouds2.png);
  border-bottom: 10px solid white;
}

#clouds3 {
  background-position-x: -140px;
  animation: cloud 150s infinite;
  animation-timing-function: linear;
  margin-top: -20px;
  background: url(../images/clouds3.png);
  border-bottom: 10px solid white;
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }

  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }

  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }

  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }

  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }

  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }

  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }

  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }

  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }

  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }

  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}
@keyframes cloud {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000px 0;
  }
}
@keyframes cloudreverse {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}
@media (min-width: 768px) {

  .button-49,
  .button-49:after {
    width: 200px;
    height: 86px;
    line-height: 88px;
  }
}

.button-53 {
  background-color: #2539e9;
  border: 0 solid #2e000b;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: ui-sans-serif, system-ui, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.75rem;
  padding: .75rem 1.65rem;
  position: relative;
  text-align: center;
  text-decoration: none #000000 solid;
  text-decoration-thickness: auto;
  width: 100%;
  max-width: 260px;
  position: relative;
  cursor: pointer;
  transform: rotate(-2deg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-53:focus {
  outline: 0;
}

.button-53:after {
  content: '';
  position: absolute;
  border: 1px solid #000000;
  bottom: 4px;
  left: 4px;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}

.button-53:hover:after {
  bottom: 2px;
  left: 2px;
}
.headNav{
  background-color: #00E6F6!important;
}
@media (min-width: 768px) {
  .button-53 {
    padding: .75rem 3rem;
    font-size: 1.25rem;
  }
}