body {
  font-family: serif;
  font-size: 16px;
}

.js-transitions-disabled * {
  -webkit-transition: none !important;
  transition: none !important;
}

.carousel {
  position: initial;
  display: inline;
  height: 100%;

  -webkit-perspective: 50vw;
  perspective: 50vw;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
}

.carousel__control {
  position: absolute;
  height: 160px;
  width: 40px;
  background: #262626;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  border: 6px solid #f4f4f4;
  outline-style: solid;
  outline-color: #f4f4f4;
  border-width: 6px 0 6px 6px;
}

.carousel__control a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 75%;
  box-sizing: border-box;
}

.carousel__control a:hover:before { background-color: #666666; }

.carousel__control a.active:before, .carousel__control a.active:hover:before { background-color: #666666; }

.carousel__control a:first-child { margin-top: 15px; }

.carousel__control a:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  padding-top: 25%;
  width: 25%;
  background: #e9e9e9;
  content: '';
  display: block;
  margin-top: -12.5%;
}

.carousel__stage {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(calc(-50vh + 20px));
  transform: translateZ(calc(-50vh + 20px));
}

.spinner {
  position: absolute;
  width: calc(50vw - (28px));
  height: calc(100vh - 40px);
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  margin: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}

.js-spin-fwd .spinner {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.js-spin-bwd .spinner {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
}

.js-spin-fwd .spinner--right {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
}

.js-spin-bwd .spinner--right {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.spinner--right {
  right: 0;
  left: auto;
}

.spinner__face {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.spinner__face.js-next {
  display: block;
  -webkit-transform: rotateX(90deg) translateZ(calc(50vh - 20px));
  transform: rotateX(90deg) translateZ(calc(50vh - 20px));
}

.spinner--right .spinner__face.js-next {
  -webkit-transform: rotateX(270deg) translateZ(calc(50vh - 20px));
  transform: rotateX(270deg) translateZ(calc(50vh - 20px));
}

.js-spin-bwd .spinner__face.js-next {
  -webkit-transform: rotateX(-90deg) translateZ(calc(50vh - 20px));
  transform: rotateX(-90deg) translateZ(calc(50vh - 20px));
}

.js-spin-bwd .spinner--right .spinner__face.js-next {
  -webkit-transform: rotateX(-270deg) translateZ(calc(50vh - 20px));
  transform: rotateX(-270deg) translateZ(calc(50vh - 20px));
}

.js-active {
  display: block;
  -webkit-transform: translateZ(calc(50vh - 20px));
  transform: translateZ(calc(50vh - 20px));
}

.content {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.spinner--right .content { 
  left: -100%;
}

.content-margin{
  margin-top: 10%;
  margin-left: 50px;
  margin-right: 50px;
}

.content__right {
  background-color: rgba(255, 255, 255, 0.9);
  background-image:none;
  padding:120px 100px;
  text-align: justify;
  text-align-last: center;
}

.content__right img{
  margin: auto auto;
}

#content__1 {
  display: block;
}

.content__margin:hover{
  cursor: pointer;
}

/* JL99 - OUR COLLECTION */
.jl99footer-ourcollection { margin-top: 950px; }

.jl99-ourcolleccontent {}

.jl99-ourcolleccontent h2 {
  font-family: serif;
  font-weight: bold;
  margin-top: 20px;
}

.jl99-ourcolleccontent h5 {
  font-family: serif;
  font-size: 16px;
}

.jl99-ourcolleccontent p {
    font-family: serif;
    line-height: 30px;
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
    font-weight: 600;
}


/* JL99 - START MOBILE VIEW */
@media only screen and (max-width: 1600px) {
  .spinner {
      width: calc(50vw - (20px));
      height: calc(92vh - 40px);
  }
}

@media only screen and (max-width: 1366px) {
  .jl99footer-ourcollection {
    margin-top: 690px;
  }

  .spinner {
    width: calc(50vw - (20px));
    height: calc(90vh - 40px);
    top: -75px;
  }

  .content__right { padding: 40px 40px; }

  .jl99-ourcolleccontent h2 { font-size: 24px; }

  .carousel__control { top: -15%; }
}


@media only screen and (max-width: 1280px) {
  .spinner {
      width: calc(50vw - (20px));
      height: calc(85vh - 40px);
      top: -115px;
  }

  .jl99footer-ourcollection {
      margin-top: 650px;
  }
}


@media only screen and (max-width: 1170px) {
  .content-margin {
      margin-top: 10%;
      margin-left: 10px;
      margin-right: 15px;
  }

  .jl99footer-ourcollection {
      margin-top: 585px;
  }

  .spinner {
      width: calc(50vw - (20px));
      height: calc(76vh - 40px);
      top: -185px;
  }

  .carousel__control { top: -25%; }
}


@media only screen and (max-width: 1024px) {
  .spinner {
      width: calc(50vw - (20px));
      height: calc(70vh - 40px);
      top: -230px;
  }

  .jl99footer-ourcollection {
      margin-top: 535px;
  }

  .jl99-ourcolleccontent h2 {
      font-size: 18px;
  }

  .content__right {
      padding: 38px 20px;
  }

  .content-margin {
      margin-top: 10%;
      margin-left: 10px;
      margin-right: 15px;
  }

  .jl99-ourcolleccontent p { line-height: 23px; font-size: 12px; }

  .carousel__control { top: -30%; }
}


@media only screen and (max-width: 991px) {
}


@media only screen and (max-width: 768px) {
  .content-margin {
      margin-top: 10%;
      margin-left: 0px;
      margin-right: 0px;
      width: 135%;
      left: -66%;
      position: absolute;
  }
}


@media only screen and (max-width: 767px) {
  .content-margin {
      margin-top: 10%;
      margin-left: 0px;
      margin-right: 0px;
      width: 90%;
      left: 5%;
      position: absolute;
  }
}


@media only screen and (max-width: 480px) {
  .content-margin {
      margin-top: 5%;
      margin-left: 0px;
      margin-right: 0px;
      width: 100%;
      left: 0%;
      position: absolute;
  }

  .content__right {
      padding: 20px 30px;
  }

  .content {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

  .jl99-ourcolleccontent,
  .jl99-ourcolleccontent p { text-align: center; }
}


@media only screen and (max-width: 375px) {
  .spinner {
      width: calc(50vw - (20px));
      height: calc(93vh - 130px);
      top: -145px;
  }

  .carousel__control {
      top: -20%;
  }

  .jl99-ourcolleccontent p {
      line-height: normal;
      font-size: 12px;
  }
}

@media only screen and (max-width: 320px) {
  .jl99-ourcolleccontent h2 {
      font-size: 14px;
  }

  .jl99-ourcolleccontent h5 { font-size: 12px; }

  .spinner {
      width: calc(50vw - (20px));
      height: calc(110vh - 130px);
      top: -40px;
  }

  .carousel__control {
      top: -10%;
  }
}