@import url(mainstyle.css);

*{
    font-family: var(--outfit);
}
a{
    color: inherit;
    text-decoration: none;
}  
.swing-animate {
  display: inline-block; 
} 
.prime-btn:hover .swing-animate {
  animation: bounce 2.5s cubic-bezier(.28,.84,.42,5) infinite;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-18px); }
  50%  { transform: translateY(0); }
  65%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}   

/* spider */
 .spider-container {
  position: fixed;
  right: -8px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 999; 
  height: 100vh; /* full screen height */
}

/* Group spider and thread together */
.spider-with-thread {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: spider-climb 100s linear infinite;
}

/* Spider’s thread */
.spider-thread {
  width: 1px;
  height: 100vh; /* full screen height */
  background: linear-gradient(to bottom, rgba(214, 214, 214, 0.4), transparent);
}

/* Spider icon */
.spider {
  font-size: 30px;
}

/* Climb animation */
@keyframes spider-climb {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}  

::placeholder{
  color: var(--input-text) !important;
  font-family: var(--metal);
}  
.video-bg {  
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; 
}
.video-bg2 { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; 
}
.comingsoon::after{
  content: '';
  background-color: rgba(0, 0, 0, 0.542);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} 
.error{ 
  color: var(--prime-text); 
}
footer span.error{
  background-color: white;
  color: var(--prime-text);
  position: absolute;
  bottom: -40px; 
  left: 0;
  padding: 5px !important;
  border-radius: 5px !important;
}  
form input, form textarea{
  border: 1px solid var(--light-border) !important;
}
form input:focus, form textarea:focus, form input:active, form textarea:active{
  border: 1px solid rgba(255, 0, 0, 0.5) !important;
  box-shadow: 0px 0px 20px 0px rgba(255, 0, 0, 0.5) !important;
}
.comingsoon img{
  object-position: top center;
}
.alertmsg{
  z-index: 9999;
}
.preloader {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 9999;
    background-color: var(--body-bg);
}
.preloader-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} 