.encoderCustomSlider .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1350px;
  width: 100%;
  box-sizing: border-box;
}
.encoderCustomSlider .sliderWraper {
  position: relative;
}
.encoderCustomSlider .mainSilderContent {
  position: relative;
  width: 100%;
}
.encoderCustomSlider .sliderImg,
.encoderCustomSlider .mainSilderContent {
  /* max-height: 550px;
  height: 550px;
  min-height: 550px; 
  aspect-ratio: 16 / 9;
  overflow: hidden; */
}
.encoderCustomSlider .mainSilderContent {
  aspect-ratio: 9 / 16;
  overflow: hidden;
}
.encoderCustomSlider .sliderImg {
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
  object-position: center;
  transition: all 1.5s ease-in;
  transform: scale(0.85);
}
.encoderCustomSlider .singleSlider {
  opacity: 0;
  transition: opacity 1.5s ease-in;
}
.encoderCustomSlider .singleSlider.active {
  opacity: 1;
}
.encoderCustomSlider .singleSlider.active .sliderImg {
  transform: scale(1);
}
.encoderCustomSlider .sliderInfo {
  padding: 42px;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}
.encoderCustomSlider .sliderInfo .infoInner {
  width: 100%;
  margin-left: -250px;
  transition: all 2s;
  opacity: 0;
}
.encoderCustomSlider .singleSlider.active .sliderInfo .infoInner {
  margin-left: 0;
  opacity: 1;
}
.encoderCustomSlider .infoInner .sliderTitle * {
  font-family: "Poppins", sans-serif;
  color: inherit;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 123%;
  text-shadow: rgba(0, 0, 0, 0.75) 8px 0px 6px;
}
.encoderCustomSlider .infoInner .sliderTitle {
  margin-bottom: 50px;
  margin-top: 0;
  z-index: 7;
  transform: translate3d(-612px, 0px, 0px) skew(45deg) scale(1, 0.9641);
  transition: all 1.5s ease-in;
  opacity: 0;
}
.encoderCustomSlider .singleSlider.active .sliderTitle {
  opacity: 1;
  transform: unset;
}
.encoderCustomSlider .infoInner .textColorRed *,
.encoderCustomSlider .infoInner .textColorRed {
  color: rgb(255, 0, 68);
}
.encoderCustomSlider .infoInner .textColorBlue *,
.encoderCustomSlider .infoInner .textColorBlue {
  color: rgb(0, 170, 249);
}
/* Style for the button */
.encoderCustomSlider .customBtn {
  position: relative;
  height: 50px;
  font-size: 13px;
  font-weight: 800;
  line-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #46425d;
  color: #fff;
  padding: 0 32px;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  text-decoration: none;
  font-family: "Spartan", sans-serif;
  overflow: hidden;
  transition: all 0.4s ease;
}
/* Sliding effect */
.encoderCustomSlider .customBtn::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  opacity: 0;
}
.encoderCustomSlider .customBtn:hover::before {
  left: 0;
  opacity: 1;
  background: #fff;
}
.encoderCustomSlider .customBtn:hover {
  color: #46425d;
}
.encoderCustomSlider .customBtn span {
  margin-right: 11px;
  position: relative;
  z-index: 3;
}
.encoderCustomSlider .btnIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  fill: #46425d;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
.encoderCustomSlider .btnIcon svg {
  width: 10px;
}
.encoderCustomSlider .customBtn:hover .btnIcon {
  fill: #fff;
  background-color: #46425d;
}
.encoderCustomSlider .arrosBtnArea {
  position: absolute;
  display: flex;
  bottom: 24px;
  right: 24px;
  z-index: 3;
}
.encoderCustomSlider .arrosBtnArea .btnIcon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.encoderCustomSlider .arrosBtnArea .btnIcon:hover {
  fill: #fff;
  background-color: #46425d;
}
.encoderCustomSlider .arrosBtnArea .btnIcon svg {
  width: 18px;
}
.encoderCustomSlider .arrosBtnArea .arrosRight {
  margin-left: 4px;
}
@media only screen and (min-width: 768px) {
  .encoderCustomSlider .mainSilderContent {
    aspect-ratio: 16 / 9;
  }
}
@media only screen and (max-width: 767px) {
  .encoderCustomSlider .infoInner .sliderTitle {
    margin-bottom: 20px;
  }
  .encoderCustomSlider .customBtn {
    height: 40px;
    /* font-size: 12px; */
    font-weight: 700;
    padding: 0 15px;
    line-height: 25px;
  }
  /* .encoderCustomSlider .infoInner {
    text-align: center;
  }
  .encoderCustomSlider .infoInner .sliderTitle {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  } */
  .encoderCustomSlider .infoInner .sliderTitle * {
    letter-spacing: -1px;
    text-shadow: rgba(0, 0, 0, 0.75) 2px 0px 1px;
  }
  .encoderCustomSlider .sliderInfo {
    padding: 20px;
  }
  .encoderCustomSlider .arrosBtnArea .btnIcon {
    width: 40px;
    height: 40px;
  }
  .encoderCustomSlider .arrosBtnArea .btnIcon svg {
    width: 16px;
  }
}