/* xl - DESKTOP STYLES */ 
.phone-frame {
  position: relative;
  width: 350px; 
  height: 600px;
  overflow: hidden;
}

.phone-image {
  width: 100%;
  height: initial !important;
  display: block;
}

.phone-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-text {
  position: absolute;
  top: 50px; 
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #000;
  font-family: Arial, sans-serif;
  padding: 0 15px;
  box-sizing: border-box;
}

.carousel-wrapper {
  position: absolute;
  top: 15%; 
  left: 50%; 
  width: 900px; 
  height: 70%; 
  overflow: hidden; 
  transform: translateX(-50%);
}

.carousel {
  margin-top: 4px;
  width: 900px; 
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 1s ease;
}

.carousel__container {
  display: flex;
  transition: transform 1s ease, opacity 1s ease;
  gap: -5px;
}

.carousel__item {
  width: 100%;
  height: 110%;
  flex: 0 0 300px; 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: scale(0.8); 
  opacity: 0; 
  transition: transform 1s ease, opacity 1s ease;
}

.carousel__item.center {
  transform: scale(1); 
  opacity: 1; 
}

.carousel__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); 
  opacity: 0; 
  transition: opacity 1s ease;
}

.carousel__item:not(.center)::before {
  opacity: 1; 
}

.carousel__item video {
  width: 106%;
  margin-left: -12px;
  margin-right: -8px;
  height: 318px;
  display: block;
  object-fit: cover;
  cursor: pointer;  
  max-width: inherit;
}

.footer-image {
  position: absolute;
  margin-top: wpx;
  margin-bottom: 20px;
  bottom: 0;
  width: 317px; 
  height: 20% !important; 
  margin-right: 4px;
}

.header-img {
  margin-bottom: 400px;
  width: 90%;
  margin-left: -2px;
}


@media (max-width: 768px) {
  .phone-frame {
    transform: scale(0.6); 
    transform-origin: top center; 
  }
}

