@font-face {
  font-family: 'CustomAvenir';
  src: url('https://www.ncino.com/_next/static/media/28d16ba8328a4c36-s.p.woff2') format('woff2');
  font-weight: normal;
}

@font-face {
  font-family: 'CustomAvenir';
  src: url('https://www.ncino.com/_next/static/media/25a2863204e05d48-s.p.woff2') format('woff2');
  font-weight: bold;
}

body {
  font-family: 'CustomAvenir', sans-serif;
  margin: 0;
  background-color: #0D253A;
  overflow: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

  /* Hide scrollbar for Chrome, Safari and Opera */
  .body::-webkit-scrollbar {
    display: none;
}


.header {
  width: 90vw;
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
  top: 12.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}



@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 1s ease-in-out;
}



.wordCloud {
  position: absolute;
  height: 20vh;
  display: flex;
  z-index: 2;
  text-align: center;
  color: white;
  font-size: 50px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 37vh;
  width: 100%;
  margin-top: 59px;
}

.wordCloud span {
  display: inline-block;

  transition: transform 1s ease-in-out;
}

.wordCloud1 {
  position: absolute;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
}

#word1 {
  color: #5CB54D;
  line-height: 120px;
  margin: 40px;
}

#word2 {
  color: #17A7DA;
  line-height: 120px;
  margin: 40px;
}

#word3 {
  color: #FABA00;
  line-height: 120px;
  margin: 40px;
}

#word4 {
  color: #CD1012;
  line-height: 120px;
  margin: 40px;
}

#word5 {
  color: #7ECBE3;
  line-height: 120px;
  margin: 40px;
}


#banner {
  position: absolute;
  bottom: 0;
  margin: 0;
  z-index: -1;
}

#bannerTwo {
  width: 100vw;
  margin: 0;
}

#accent1 {
  position: absolute;
  width: 18vw;
  z-index: -1;
  transform: rotate(90deg);
  margin-top: -42px;
  top: 0;
  right: 70%;
}

#accent2 {
  position: absolute;
  width: 40vw;
  bottom: 0;
  z-index: -1;
}

#accent3 {
  position: absolute;
  width: 20vw;
  bottom: 0;
  right: 0;
  z-index: -1;
}

#accent4 {
  position: absolute;
  width: 20vw;
  bottom: 45%;
  right: -13%;
  z-index: -1;
}

.flyingShape {
  position: absolute;
  margin: 0;
  width: 10vw;
  height: auto;
  z-index: 0;
}

.x, .x2, .x3 {
  animation: x 10s ease-in-out infinite alternate;
}

.y, .y2, .y3 {
  animation: y 7s linear infinite alternate;
}

@keyframes x {
  100% {
    transform: translateX(calc(100vw - 10vw));
  }
}

@keyframes y {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(calc(100vh - 10vw)) rotate(360deg);
  }
}

.x2 {
  animation: x 19s ease-in-out infinite alternate;
}

.y2 {
  animation: y 8s linear infinite alternate;
}

.x3 {
  animation: x 8s ease-in-out infinite alternate;
}

.y3 {
  animation: y 10s linear infinite alternate;
}
