@import url(mainstyle.css);

*{
    font-family: var(--outfit);
}
a{
    color: inherit;
    text-decoration: none;
} 
/* header CSS */
header{ 
    z-index: 120 !important;
}
.nav-link{
    color: var(--nav-text) !important;
    font-weight: 500;
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
    color: var(--prime-text) !important;
}
#btnSwitch{
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video as background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}
.banner-main::after{
    content: '';
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
} 
/* Banner Starts Here */
.banner-main{ 
    position: relative;
    z-index: 1; 
    height: calc(100vh - 107px);
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center; 
    background: rgba(0, 0, 0, 0.4);
} 
.banner-container{
    width: 800px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* ----------------------------------- */

.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); }
}  

.sale-advt-main{
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),url('../../assets/images/adv.png') no-repeat center/cover;
    background-size: cover;
    background-position: bottom;
    min-height: 500px;
}
.sale-advt-container{
    width: 800px;
    max-width: 100%; 
    min-height: 500px;
}


/* spider */
 .spider-container {
  position: fixed;
  right: 0;
  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);
  }
}

.icon-bg{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
::placeholder{
  color: var(--input-text) !important;
  font-family: var(--metal);
} 
.footer-img{ 
  position: relative;
  min-height: 350px;
}
.video-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; 
}
.footer-overlay{
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 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;
}

 #backtotop {
    position: fixed;
    bottom:  30px;
    right: 10px; 
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;   
    overflow: hidden; 
    border-radius: 0 !important; 
    border: 0 !important;
    object-fit: contain; 
    transform: translateY(-100vh); /* push down */
    transition: all 0.4s ease;
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* slide up into view */
}

.footer-container{
  width: 768px;
  max-width: 100%;
  margin: auto;
}
.product-card-img {
  position: relative;
  overflow: hidden;
}
.product-card-img a{
  background: rgba(0, 0, 0, 0.531);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  opacity: 0;
  transition: 0.5s ease;
}
.product-card-img:hover a{
  opacity: 1;
}
.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%);
} 