/* Keyframes for cursor movement and click animation */
@-webkit-keyframes cursor-move-click {
  0% { transform: translate(-15px, -15px) scale(1); }
  40% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, 0) scale(0.8); }
  60% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(0, 0) scale(1); }
}

@-moz-keyframes cursor-move-click {
  0% { transform: translate(-15px, -15px) scale(1); }
  40% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, 0) scale(0.8); }
  60% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes cursor-move-click {
  0% { transform: translate(-15px, -15px) scale(1); }
  40% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, 0) scale(0.8); }
  60% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(0, 0) scale(1); }
}

.nav-dot.blue-dot {
  background-color: transparent;
  opacity: 1;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: cursor-move-click 3s infinite;
  -moz-animation: cursor-move-click 3s infinite;
  -ms-animation: cursor-move-click 3s infinite;
  animation: cursor-move-click 3s infinite;
  filter: drop-shadow(0 0 6px #0051ff80);
  position: relative;
  margin-left: 10px;
}

/* Click text that appears when cursor clicks */
@-webkit-keyframes click-text {
  0%, 40% { opacity: 0; -webkit-transform: translateY(0); transform: translateY(0); }
  50%, 60% { opacity: 1; -webkit-transform: translateY(-10px); transform: translateY(-10px); }
  70%, 100% { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

@-moz-keyframes click-text {
  0%, 40% { opacity: 0; -moz-transform: translateY(0); transform: translateY(0); }
  50%, 60% { opacity: 1; -moz-transform: translateY(-10px); transform: translateY(-10px); }
  70%, 100% { opacity: 0; -moz-transform: translateY(-20px); transform: translateY(-20px); }
}

@keyframes click-text {
  0%, 40% { opacity: 0; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
  50%, 60% { opacity: 1; -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); -ms-transform: translateY(-10px); transform: translateY(-10px); }
  70%, 100% { opacity: 0; -webkit-transform: translateY(-20px); -moz-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
}

.nav-dot.blue-dot::before {
  position: absolute;
  font-size: 10px;
  font-weight: bold;
  color: var(--blue, #0051ff);
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  -webkit-animation: click-text 3s infinite;
  -moz-animation: click-text 3s infinite;
  -ms-animation: click-text 3s infinite;
  animation: click-text 3s infinite;
  pointer-events: none;
}

@-webkit-keyframes pulse {
  0%, 40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(0, 81, 255, 0);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(0, 81, 255, 0.3);
  }
  60% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.5;
    box-shadow: 0 0 0 8px rgba(0, 81, 255, 0.2);
  }
  70%, 100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(0, 81, 255, 0);
  }
}

@-moz-keyframes pulse {
  0%, 40% {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(0, 81, 255, 0);
  }
  50% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(0, 81, 255, 0.3);
  }
  60% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.5;
    box-shadow: 0 0 0 8px rgba(0, 81, 255, 0.2);
  }
  70%, 100% {
    -moz-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(0, 81, 255, 0);
  }
}

@keyframes pulse {
  0%, 40% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(0, 81, 255, 0);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(0, 81, 255, 0.3);
  }
  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.5;
    box-shadow: 0 0 0 8px rgba(0, 81, 255, 0.2);
  }
  70%, 100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(0, 81, 255, 0);
  }
}

.nav-dot.blue-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0;
  -webkit-animation: pulse 3s infinite;
  -moz-animation: pulse 3s infinite;
  -ms-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
  pointer-events: none;
}


/* Pulsing animation for the blue dot */
/* @keyframes bluePulse {
    0% {
      background-color: var(--dark);
      opacity: 0.5;
      box-shadow: 0 0 0 0 rgba(0, 81, 255, 0.4);
    }
    50% {
      background-color: var(--blue);
      opacity: 1;
      box-shadow: 0 0 0 10px rgba(0, 81, 255, 0);
    }
    100% {
      background-color: var(--dark);
      opacity: 0.5;
      box-shadow: 0 0 0 0 rgba(0, 81, 255, 0);
    }
  }
  
  .nav-dot.blue-dot {
    animation: bluePulse 2s infinite;
  } */
  .cta-button {
    padding: 10px 12px;
    white-space: nowrap;
    cursor: pointer;
}
.cta-text {
    font-weight: 600 !important;
    color: white !important; /* Override the default link color */
}

/* Video container styling */
.video-container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}
@-webkit-keyframes button-shadow-pulse {
  0%, 40% {
    -webkit-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.01), 0 12px 7px rgba(0, 81, 255, 0.03), 0 5px 5px rgba(0, 81, 255, 0.05), 0 1px 3px rgba(0, 81, 255, 0.08), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.01), 0 12px 7px rgba(0, 81, 255, 0.03), 0 5px 5px rgba(0, 81, 255, 0.05), 0 1px 3px rgba(0, 81, 255, 0.08), inset 0 1px #fff;
  }
  50% {
    -webkit-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.06), 0 12px 7px rgba(0, 81, 255, 0.15), 0 5px 5px rgba(0, 81, 255, 0.25), 0 1px 3px rgba(0, 81, 255, 0.35), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.06), 0 12px 7px rgba(0, 81, 255, 0.15), 0 5px 5px rgba(0, 81, 255, 0.25), 0 1px 3px rgba(0, 81, 255, 0.35), inset 0 1px #fff;
  }
  60% {
    -webkit-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.04), 0 12px 7px rgba(0, 81, 255, 0.12), 0 5px 5px rgba(0, 81, 255, 0.20), 0 1px 3px rgba(0, 81, 255, 0.25), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.04), 0 12px 7px rgba(0, 81, 255, 0.12), 0 5px 5px rgba(0, 81, 255, 0.20), 0 1px 3px rgba(0, 81, 255, 0.25), inset 0 1px #fff;
  }
  70%, 100% {
    -webkit-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
  }
}

@-moz-keyframes button-shadow-pulse {
  0%, 40% {
    -moz-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.01), 0 12px 7px rgba(0, 81, 255, 0.03), 0 5px 5px rgba(0, 81, 255, 0.05), 0 1px 3px rgba(0, 81, 255, 0.08), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.01), 0 12px 7px rgba(0, 81, 255, 0.03), 0 5px 5px rgba(0, 81, 255, 0.05), 0 1px 3px rgba(0, 81, 255, 0.08), inset 0 1px #fff;
  }
  50% {
    -moz-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.06), 0 12px 7px rgba(0, 81, 255, 0.15), 0 5px 5px rgba(0, 81, 255, 0.25), 0 1px 3px rgba(0, 81, 255, 0.35), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.06), 0 12px 7px rgba(0, 81, 255, 0.15), 0 5px 5px rgba(0, 81, 255, 0.25), 0 1px 3px rgba(0, 81, 255, 0.35), inset 0 1px #fff;
  }
  60% {
    -moz-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.04), 0 12px 7px rgba(0, 81, 255, 0.12), 0 5px 5px rgba(0, 81, 255, 0.20), 0 1px 3px rgba(0, 81, 255, 0.25), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.04), 0 12px 7px rgba(0, 81, 255, 0.12), 0 5px 5px rgba(0, 81, 255, 0.20), 0 1px 3px rgba(0, 81, 255, 0.25), inset 0 1px #fff;
  }
  70%, 100% {
    -moz-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
  }
}

@keyframes button-shadow-pulse {
  0%, 40% {
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.01), 0 12px 7px rgba(0, 81, 255, 0.03), 0 5px 5px rgba(0, 81, 255, 0.05), 0 1px 3px rgba(0, 81, 255, 0.08), inset 0 1px #fff;
  }
  50% {
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.06), 0 12px 7px rgba(0, 81, 255, 0.15), 0 5px 5px rgba(0, 81, 255, 0.25), 0 1px 3px rgba(0, 81, 255, 0.35), inset 0 1px #fff;
  }
  60% {
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.04), 0 12px 7px rgba(0, 81, 255, 0.12), 0 5px 5px rgba(0, 81, 255, 0.20), 0 1px 3px rgba(0, 81, 255, 0.25), inset 0 1px #fff;
  }
  70%, 100% {
    box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
  }
}

.subtitle-block-cta {
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  -webkit-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
  -moz-box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
  box-shadow: 0 32px 9px rgba(0, 81, 255, 0), 0 21px 8px rgba(0, 81, 255, 0.03), 0 12px 7px rgba(0, 81, 255, 0.09), 0 5px 5px rgba(0, 81, 255, 0.15), 0 1px 3px rgba(0, 81, 255, 0.18), inset 0 1px #fff;
  -webkit-animation: button-shadow-pulse 3s infinite;
  -moz-animation: button-shadow-pulse 3s infinite;
  -ms-animation: button-shadow-pulse 3s infinite;
  animation: button-shadow-pulse 3s infinite;
  /* background-image: linear-gradient(325deg,  hsla(194 100% 69% / 1) 0%, hsla(217 100% 56% / 1) 55%,  hsla(194 100% 69% / 1) 90%); */
  background-image: linear-gradient(#047efc, #035FB4);
  box-shadow: inset 0 -4px 8px #ffffff40, inset 0 4px 10px #ffffff40;
}

@media (max-width: 768px) {
  .subtitle-text{ 
    font-size: 12px;
  }
}

.subtitle-block-warning {
  box-shadow: 0 32px 9px rgba(255, 0, 0, 0), 0 21px 8px rgba(255, 0, 0, 0.03), 0 12px 7px rgba(255, 0, 0, 0.09), 0 5px 5px rgba(255, 0, 0, 0.15), 0 1px 3px rgba(255, 0, 0, 0.18), inset 0 1px #fff;
}
.effective-image_04 {
  height: 50px;
}