.sec__slider{
  background: #2a2a2a;
}

.slider__card {
  background: rgba(0, 0, 0, 0.5);
}

.slider__card a {
  text-decoration: none;
}

.slider__title {
  font-family: Home-Slider-font;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 1rem;
  text-align: left;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);

}

.slider__title--white {
  color: #fff;
}

.slider__text {
  font-family: Inter-Regular;
  /*font-size: 0.8rem;*/
  padding: 0.5rem;
  margin-bottom: 0;
  line-height: 1.7rem;
}

.slider__text--white {
  color: #fff;
}

.slider-item-ratio .slider-container a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
.slider__unity h1{
  color: #fff;
  font-size: 4rem;
  font-family: Home-Slider-font;
}
*/

.slider__unity .link.btn {
  margin: 0 auto;
  font-family: Inter-Regular;
}

.slider-nav {
  position: absolute;
  top: 46%;
  visibility: visible;
}


/* SLIDER PARALLAX*/

.hero-banner {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.floating-logo {
  max-width: 300px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

.animate-text.delay-1 { animation-delay: 0.5s; }
.animate-text.delay-2 { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-banner { height: 80vh; }
  .floating-logo { max-width: 200px; }
}




/* Media Query */
@media only screen and (min-width: 768px) {  

  .slider__title {    
    font-size: 2rem;
  }

  .slider__text {    
    font-size: 1.1rem;   
    width: 80%; 
  }

}/*min-width: 768px*/


/* Media Query */
@media only screen and (min-width: 992px) {

  .slider__title {    
    font-size: 2.5rem;
  }

  .slider__text {    
    font-size: 1.25rem;    
    width: 70%; 
  }

}/*min-width: 992px*/


/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {

  .slider__title {   
    font-size: 4rem;     
  }

}/*min-width: 1200px*/