
* {
  box-sizing: border-box;
}

h1 {
  font-size: 2.5rem;
}

.container {
  min-height: 125vh;
}

.title-container {
  margin-right: 45rem;
  margin-top: 5rem;
}

.Title {
  font-weight: 600;
  font-size: 24px;

  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
}

.product-text {
  width: 60vw;
}

.Content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sliding-container1{
  margin-top: 13rem;
  margin-right: 5.5rem;
}

.items {
  position: absolute;
  transform: translate(-50%, -50%);
  user-select: none;
}

.items .item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; /* Adjust the width */
  height: 400px; /* Adjust the height */
  border-radius: 10px; /* Adjust border-radius if necessary */
  overflow: hidden;
  transition: all 300ms ease-in-out;
  z-index: -1;
  opacity: 0;
}

.text {
  font-size: 14px;
  font-weight: bold;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  margin-top: 7rem;
}

.item img {
  height: 80%;
  object-fit: cover;
}

.item.active {
  opacity: 1;

}

.item.prev {
  z-index: 2;
  opacity: 0.50;
  transform: translate(-170%, -50%);
  filter: blur(2px);
  
}

.item.next {
  z-index: 2;
  opacity: 0.50;
  transform: translate(60%, -50%);
  filter: blur(2px);
 
}

.items .button-container {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-51%, -50%);
  width: 1100px;
  z-index: 100;
}

.button-container .button {

  color: #ffffff;
  width: 32px;

  cursor: pointer;
  position: relative;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
}

.button-container .button:hover {
  opacity: 1;
}

.button-container .button:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50%;
  z-index: -99;
}

.button-container .button:nth-child(1) {
  float: left;
}

.button-container .button:nth-child(2) {
  float: right;
}

/* Remove border-radius from .item */
.items .item.active,
.items .item.prev,
.items .item.next {
  border-radius: 0;
}

#ArrowBut{

width: 10px;
display: flex;
position: relative;

}

.item.active {
  opacity: 1;
  z-index: 99;
}