.mob-hide {
  display: block;

  @media (max-width: 768px) {
    display: none ;
  }
}

.mob-visible {
  display: none ;

  @media (max-width: 768px) {
    display: block ;
  }
}

.masterPlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 9;
}

.masterImage {
  width: 100%;
  position: relative;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.content {
  display: none;

  &.active {
    display: block;
  }
}

/* swiper css */
.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: none;
}

.prev,
.next {
  cursor: pointer;
  line-height: 0;
}

.prev img {
  transform: rotate(180deg);
}

/* swiper css end*/

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;

  @media (max-width: 768px) {

    max-width: 100%;
    width: 100%;
    padding: 0 16px;

  }
}