span.colorLetters {
  color: #111347;
  background-image: linear-gradient(45deg, #111347 3%, #4983E6 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glassInner {
  position: relative;
  border-radius: 0 0px 30px 30px;
  overflow: hidden;
  top: 0;
  left: 0.5%;
  width: 99%;
  height: 100%;
}

.glassContainer {
  position: relative;
}

.glassContainer .orb {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  z-index: 1;
  animation: breathe-size 3.5s ease-in-out infinite;
}

.glassContainer .orb.blue {
  background: var(--orb-azul);
  opacity: 49%;
  width: 420px;
  height: 420px;
  bottom: -6rem;
  left: -17rem;
  animation-name: breathe-size-blue, breathe-opacity-blue;
  animation-duration: 4.5s, 4.5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.glassContainer .orb.orange {
  background: var(--orb-rojo);
  bottom: -80px;
  left: 10rem;
  width: 360px;
  height: 221px;
  opacity: 14%;
  animation-name: breathe-opacity-orange;
  animation-duration: 4.5s, 4.5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.glassContainer .orb.green {
  background: var(--orb-verde);
  bottom: 1rem;
  right: 1rem;
  animation-name: breathe-size-green, breathe-opacity-green;
  animation-duration: 5.5s, 5.5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.glassContainer .orb.yellow {
  background: var(--orb-amarillo);
  bottom: 1rem;
  right: 1rem;
  animation-name: breathe-size-green, breathe-opacity-green;
  animation-duration: 5.5s, 5.5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.glassContainer .glass {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(65px);
  border-radius: 0 0px 30px 30px;
  z-index: 5;
  margin: auto;
}

.glassSurface {
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .glassInner {
    left: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .glassContainer .orb.blue {
    width: 220px;
    height: 220px;
    bottom: -6rem;
    left: -12rem;
  }

  .glassContainer .orb.orange {
    bottom: -5rem;
    left: auto;
    width: 131px;
    height: 130px;
    right: -4rem;
  }

  .glassContainer .orb.green {
    bottom: 17rem;
    right: -11rem;
  }
}

@keyframes breathe-size-blue {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.10);
  }

  50% {
    transform: scale(1.34);
  }

  80% {
    transform: scale(1.10);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes breathe-opacity-blue {
  0% {
    opacity: 0.52;
  }

  20% {
    opacity: 0.52;
  }

  50% {
    opacity: 0.80;
  }

  80% {
    opacity: 0.52;
  }

  100% {
    opacity: 0.52;
  }
}

@keyframes breathe-opacity-orange {
  0% {
    opacity: 0.14;
  }

  20% {
    opacity: 0.24;
  }

  40% {
    opacity: 0.50;
  }

  80% {
    opacity: 0.14;
  }

  100% {
    opacity: 0.14;
  }
}

@keyframes breathe-opacity-green {
  0% {
    opacity: .3;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: .3;
  }

  100% {
    opacity: .3;
  }
}

@keyframes breathe-size-green {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.10);
  }

  50% {
    transform: scale(1.50);
  }

  80% {
    transform: scale(1.50);
  }

  100% {
    transform: scale(1);
  }
}
