#nuvee {
  margin-bottom: 200px;
}
#nuvee .nuvee-title {
  color: #175B7A;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.2;
}
#nuvee .nuvee-title span {
  color: #55C2EC;
}
#nuvee .cms {
  color: #4F5559;
  line-height: 36px;
}
#nuvee .cms p + p {
  margin-top: 40px;
}
#nuvee .button {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 24px;
  background-color: #011965;
}
#nuvee .button-container {
  text-align: center;
}
#nuvee .logos {
  padding: 80px 0 64px;
}
#nuvee .logos-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
}
#nuvee .logos-item:not(:last-child) {
  margin-right: 16px;
}
#nuvee .logos-separator {
  position: relative;
  width: 20px;
  margin-bottom: 32px;
}
#nuvee .logos-separator:before, #nuvee .logos-separator:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 20px;
  height: 1px;
  margin: auto;
  background-color: #011965;
  transform: rotate(45deg);
}
#nuvee .logos-separator:after {
  transform: rotate(-45deg);
}
@media (max-width: 36rem) {
  #nuvee .logos-container {
    align-items: center;
    flex-direction: column;
  }
  #nuvee .logos-item {
    margin: 0 !important;
  }
  #nuvee .logos-separator {
    margin: 0;
  }
}
#nuvee .intro {
  text-align: center;
  padding: 80px 0;
  background-color: #e3eff8;
}
#nuvee .textImage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 200px;
  padding: 0 95px;
}
#nuvee .textImage--reverse .textImage-content {
  grid-column: 2/span 2;
}
#nuvee .textImage--reverse .textImage-image {
  left: 0;
  right: calc(50% + 40px);
  justify-content: flex-end;
}
#nuvee .textImage-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
#nuvee .textImage-icon {
  text-align: center;
  margin-bottom: 40px;
}
#nuvee .textImage .cms {
  margin: 24px 0 40px;
}
#nuvee .textImage-image {
  position: absolute;
  top: 0;
  left: calc(50% + 20px);
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 64rem) {
  #nuvee .textImage {
    padding: 0;
  }
}
@media (max-width: 48rem) {
  #nuvee .textImage {
    display: block;
    margin-top: 160px;
  }
  #nuvee .textImage-image {
    position: static;
    justify-content: center !important;
    margin-top: 40px;
  }
  #nuvee .textImage-image img {
    max-width: 100%;
  }
}
#nuvee .focus {
  text-align: center;
  margin-top: 200px;
  padding: 0 95px;
}
#nuvee .focus > .cms {
  text-align: left;
  margin-top: 24px;
}
#nuvee .focus-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 80px 0;
}
#nuvee .focus-item-title {
  color: #55C2EC;
  font-weight: 500;
  margin: 16px 0;
}
#nuvee .focus-item .cms {
  line-height: 1.2;
}
#nuvee .focus-item-image img {
  max-width: 100%;
}
@media (max-width: 64rem) {
  #nuvee .focus {
    padding: 0;
  }
}
@media (max-width: 48rem) {
  #nuvee .focus-container {
    display: block;
    margin: 40px 0;
  }
  #nuvee .focus-item:not(:first-child) {
    margin-top: 32px;
  }
  #nuvee .focus-item-title {
    margin: 8px 0;
  }
}
#nuvee .wait {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 25, 101, 0.5);
}
#nuvee .wait[data-open=false] {
  display: none;
}
#nuvee .wait-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 48px 48px;
  text-align: center;
  background-color: #ffffff;
  border-bottom: 40px solid #011965;
}
#nuvee .wait-title {
  color: #011965;
  font-size: 2.125rem;
  line-height: 1.2;
}
#nuvee .wait .cms {
  color: #011965;
}
#nuvee .wait-loader {
  --size: 48px;
  position: relative;
  width: var(--size);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
}
#nuvee .wait-loader-dot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 7px;
  aspect-ratio: 1;
  margin: auto;
  background-color: #011965;
  border-radius: 50%;
  transform-origin: center calc(var(--size) / 2);
  animation-name: loader-dots;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}
#nuvee .wait-loader-dot:nth-child(2) {
  transform: rotate(45deg);
  animation-delay: 0.2s;
}
#nuvee .wait-loader-dot:nth-child(3) {
  transform: rotate(90deg);
  animation-delay: 0.4s;
}
#nuvee .wait-loader-dot:nth-child(4) {
  transform: rotate(135deg);
  animation-delay: 0.6s;
}
#nuvee .wait-loader-dot:nth-child(5) {
  transform: rotate(180deg);
  animation-delay: 0.8s;
}
#nuvee .wait-loader-dot:nth-child(6) {
  transform: rotate(225deg);
  animation-delay: 1s;
}
#nuvee .wait-loader-dot:nth-child(7) {
  transform: rotate(270deg);
  animation-delay: 1.2s;
}
#nuvee .wait-loader-dot:nth-child(8) {
  transform: rotate(315deg);
  animation-delay: 1.4s;
}

@keyframes loader-dots {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=nuvee.css.map */
