body {
  background-color: transparent;
  overflow-x: hidden;
}

.scroll-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  /* z-index: -1; */
}
.page-title {
  position: relative;
  overflow: hidden;
  background-color: #f1f5f4;
}

.scroll-inner {
  display: flex;
  gap: 0;
  animation: scroll-left 20s linear infinite;
  height: 100%;
  align-items: center;
}

.small-card-img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.career-header {
  position: relative;
  z-index: 10;
  background-color: transparent !important;
}

.career-header .navmenu a {
  color: white;
}

.career-header .navmenu a.active {
  color: #ed9320;
}

.career-subtitle {
  color: white;
}

h2 {
  color: white;
}

/* .container {
  display: flex;
  flex-direction: column;
} */

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-wrapper:hover .scroll-inner {
  animation-play-state: paused;
}

/* fixsed caption start */
.fixed-caption {
  position: relative;
  z-index: 10;
  padding: 25px;
  border-left: 5px solid #ed9320;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0 8px 8px 0;
  /* margin: 0 auto; */
  width: 100%;
  max-width: 1200px;
}

.fixed-caption h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.2;
}

.fixed-caption h2.fs-4 {
  font-size: 1.8rem !important;
  font-weight: 400;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .fixed-caption {
    bottom: 100px;
    left: 15px;
    right: 15px;
    max-width: none;
  }

  .fixed-caption h2 {
    font-size: 1.8rem;
  }

  .fixed-caption h2.fs-4 {
    font-size: 1.2rem !important;
  }
  .card .card-body {
    padding: 20px !important;
  }
}

@media (max-width: 576px) {
  .fixed-caption h2 {
    font-size: 1.5rem;
  }

  .fixed-caption h2.fs-4 {
    font-size: 1rem !important;
  }
}

/* fixsed caption end */

.new-sty:focus {
  background: #ffffff !important;
}

.new-sty::placeholder {
  color: #ffffff !important;
}

/* full screen loader */

#fullScreenLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.loader-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ed9320;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
