.new-first-section {
  height: 100vh;
  overflow: hidden;
  
}

.new-first-container {
  position: relative;
  width: 100%;
  height: 100%;
}


.new-first-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
}

.new-first-description {
  position: absolute;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new-first-description h2{
  font-size: 40px;
  font-style: semi-bold;
  font-weight: 490;
  line-height: 47px;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.new-first-description p{
  font-size: 16px;
  font-weight: 400;
  font-style: semi-bold;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.desc-center-right {
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  text-align: right;
}

.desc-center-left {
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  text-align: left;
}

.desc-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.new-first-section .next-overlay{
  right: 3%;
  z-index: 10;
}

.new-first-section .prev-overlay{
  left: 3%;
  z-index: 10;
}

.new-first-description a {
  text-decoration: none;
  padding: 10px 20px;

  font-size: 17px;
  font-weight: 400;
  font-style: medium;
  line-height: auto;
  letter-spacing: 0px;
  color: #000000;

  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 100px;
}

.new-first-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.new-first-slide.active {
  opacity: 1;
  z-index: 1;
}

.new-first-prev.disabled,
.new-first-next.disabled {
  opacity: 0.5;      
  cursor: not-allowed;
  pointer-events: none;  
}

