.slider-container {
  position: relative;
  width: 100%;
  margin: 0;
}

.slider {
  display: flex;
  overflow: hidden;
}

.slider img, .slider video {
  width: 100%;
  height: calc(100vh - 139px);
  object-fit: cover;
}

.btnSlider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #33333366;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 44px;
  height: 100px;
  width: 100px;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}




.slide-container {
  position: relative;
  width: 100%;
  margin: 0;
}

.slide {
  display: flex;
  overflow: hidden;
}














.slide-container {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #f9f9f9;
  margin-top: 64px;
  overflow: hidden;
}

.slide {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide-content {
  display: flex;
  width: 50%;
  height: 100%;
}

.l-side {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  color: #000;
  text-align: left;
  z-index: 1;
}
.l-side h3{
  margin-bottom: 0;
  color: #008080;
  font-size: 32px;
}
.l-side p{
  font-size: 22px;
  background-color: #f9f9f945;
}

.r-side {
  width: 60%;
  position: relative;
}

.r-side img {
  position: absolute;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btnSlide {
  position: absolute;
  transform: translateY(-50%);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  background: #33333366;
  font-size: 44px;
  height: 80px;
  width: 80px;
  z-index: 2;
}

.prevS {
  left: 16px;
  bottom: 0;
}

.nextS {
  right: 16px;
  bottom: 0;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}