/*<uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 200 to 800*/
body {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.navbar-nav li {
  padding-right: 15px;
}

.textSlider {
  position: relative;
  overflow: hidden;
  background-color: #e8e8e8;
}


.textSlider ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.textSlider li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.textSlider li.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.textSlider li.slide-in {
  animation: slideIn 0.5s forwards;
}

.textSlider li.slide-out {
  animation: slideOut 0.5s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
}



.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* This makes sure the overlay does not interfere with video controls */
    background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(232,232,232,1) 88%);
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* You can change the background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it's on top */
}

#preloader img {
    width: 200px; /* Adjust size as needed */
}

.signup {
    position: absolute;
    top: 30%;
    left: 5%;
    z-index: 999;

}

#content {
    display: none; /* Hide content until page is loaded */
}

.career, .aboutus .rowbg {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(224,224,224,1) 50%, rgba(255,255,255,1) 100%);
}

.rowbg span {
  color: #0cad00;;
}

.about h5 {
    color: #0cad00;
    text-align: center;
}

.about p {
    text-align: justify;
    font-size: 20px;
    margin:0px;
}

.whyus, .jointeam {
  line-height: 40px;
}

.welcome, .mission {
  line-height: 33px;
}

table {
    width: 100%;
}
table tr td {
    padding: 10px;
}


.headcard, .history_card {
  background: rgb(132,207,255);
  background: linear-gradient(0deg, rgba(132,207,255,1) 0%, rgba(255,255,255,1) 100%);
}


.contentcard span {
  color: #0cad00;
}


.contentcard .card, .deposit_card {
  background: rgb(240,240,240);
background: radial-gradient(circle, rgba(240,240,240,1) 0%, rgba(255,255,255,1) 100%);
}


.completedProd {
  width: 750px;
}





























/* Responsive Styles */
@media only screen and (max-width: 768px) {
  .textSliderDiv {
    height: 200px;
  }
}










