.cursor{
  position: fixed;
  width: 37px;
  height: 37px;
  border: 2px solid #16171b;
  border-radius: 50%;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: 0.15s;
  z-index: 9999;
  opacity: 0;
  /* display: none; */
}
.cursorTemp{
  position: fixed;
  width: 8px;
  height: 8px;
  background-color:  #080808;
  border-radius: 50%;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: 0.1s ease-out;
  z-index: 9999;
  opacity: 0;
  /* display: none; */
}
.cursorTemp.cursorTemp-hover {
  width: 80px;
  height: 80px;
  background: transparent;
  /* background-color: #080808; */
  opacity: 1;
  transition: 0.3s ease-out;
  /* display: block; */
}
.cursor.cursor-hover{
  width: 80px;
  height: 80px;
  background-color: #080808;
  /* opacity: 1; */
  transition: 0.3s ease-out;
  opacity: 0.7;

  /* animation: fadeZoomCursor 0.3s ease-out; */
}
.cursorTemp.cursorTemp-hover{
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* animation: fadeZoomCursorTemp 0.3s ease-out; */
  &::before{
    content: '';
    /* position: absolute; */
    width: 12px;
    height: 12px;
    left: 0;
    transition: 0.3s ease-out;
    /* opacity: 1 !important; */

    border: solid #937341;
    border-width: 0 4px 4px 0;
    display: inline-block;
    /* padding: 3px; */
    transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  animation: moveLeft 0.7s infinite alternate;
  }
  &::after{
    content: '';
    width: 12px;
    height: 12px;
    left: 0;
    transition: 0.3s ease-out;

    border: solid #937341;
    border-width: 0 4px 4px 0;
    display: inline-block;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    animation: moveRight 0.7s infinite alternate;

  }
}

@keyframes moveLeft {
  from {
    transform: translateX(0) rotate(135deg);
  }
  to {
    transform: translateX(-7px) rotate(135deg);
  }
}

@keyframes moveRight {
  from {
    transform: translateX(0) rotate(-45deg);
  }
  to {
    transform: translateX(7px) rotate(-45deg);
  }
}





/* #content{
  margin-top: 150px;
  position: relative;
} */




.carouselContainer{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  position: relative;
}
.wrapper {
  /* max-width: 1200px; */
  width: 85%;
  position: relative;
  margin-top: 20px;
}
.wrapper svg {
  top: 50%;
  width: 54px;
  height: 54px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  /* background: #fff; */
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 1000;
}
.wrapper svg:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper svg:first-child{
  left: -22px;
}
.wrapper svg:last-child{
  right: -22px;
}
#wrapper__arrowBtnLeft .outerRing_YuAX,
#wrapper__arrowBtnLeft .outerRingBackground_2wCm,
#wrapper__arrowBtnRight .outerRing_YuAX,
#wrapper__arrowBtnRight .outerRingBackground_2wCm{
  transform-origin: 48px 50px;
  transition: .2s;
}
#wrapper__arrowBtnLeft:hover .outerRing_YuAX,
#wrapper__arrowBtnRight:hover .outerRing_YuAX{
  transform: scale(1.1);
}
#wrapper__arrowBtnLeft:hover .outerRingBackground_2wCm,
#wrapper__arrowBtnRight:hover .outerRingBackground_2wCm{
  transform: scale(1.1);
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 1) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  height: 500px;

}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grabbing;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: center;
  height: 450px;
  list-style: none;
  /* background: #0f0f0f; */
  /* border: 1px solid #ffffff; */
  cursor: grab;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  /* background-color: #16171b; */

}
.carousel .card::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 30%;
  background-color: #0f0f0f;
  z-index: 10;
  border-left: 1px solid #937341;
  border-right: 1px solid #937341;

  background: url(../assets/img/latestBg.jpg ) no-repeat;
  background-position: 50%;
  background-size: cover;
  filter: opacity(0.2);
  /* opacity: .2; */

  -webkit-transition: .6s ease;
  -moz-transition: .6s ease;
  transition: .6s ease;
}
.carousel .card::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 30%;
  /* background-color: #0f0f0f; */
  z-index: 20;
  border-left: 1px solid #937341;
  border-right: 1px solid #937341;
  opacity: 0.3;
  /* background: url(../assets/img/latestBg.jpg ) no-repeat;
  background-position: 50%;
  background-size: cover;
  filter: opacity(0.2); */
  /* opacity: .2; */

  -webkit-transition: .6s ease;
  -moz-transition: .6s ease;
  transition: .6s ease;
}
.carousel .card.slideActive::before,
.carousel .card.slideActive::after{
  width: 100%;
}
.carousel .card.slideActive .img {
  background: #080808;
  height: 70%;
  width: 100%;
  position: absolute;
  bottom: 30%;
  z-index: 1;
  opacity: 1;
}
.carousel .card .img{
  background: #080808;
  height: 50%;
  width: 50%;
  position: absolute;
  bottom: 30%;
  z-index: 1;
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  transition-duration: .6s;
  opacity: 0.3;

}
.card.slideActive .img img{
  
  filter: none;

}
.card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
/* .card .img img{
  width: 50%;
  height: 50%;
  object-fit: cover;
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  transition-duration: .6s;
  opacity: 0.5;

} */
.card .content{
  -webkit-transition: .6s ease;
  -moz-transition: .6s ease;
  transition: .6s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);

  width: 450.333px;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #0f0f0f;
  height: 30%;
  text-align: center;
  position: absolute;
  z-index: 100;
  bottom: -3px;
  box-shadow: 0 0 16px 14px rgba(0,0,0,.4);
  /* &:before{
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 70%;
    height: calc(100%);
    background-color: #0f0f0f;
    z-index: 10;
  } */
}
.card.slideActive .content{
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #16171b;
  border-bottom: 2px solid #16171b;
  border-top: 2px solid #16171b;
  z-index: 100;
  user-select: none;

}

.card .content .upperTriangle{
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  bottom: calc(100% + 1px);
  z-index: -1;
}
.card .content .lowerTriangle{
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 1px);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: -1;
}
.card .content .upperTriangle .triangleBackground,
.card .content .lowerTriangle .triangleBackground{
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #0f0f0f;
  border-style: solid;
  border-width: 0 227px;
  height: 0;
  width: 0;
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: border-width,border-color,height;
  -moz-transition-property: border-width,border-color,height;
  transition-property: border-width,border-color,height;
}
.card.slideActive .content .upperTriangle .triangleBackground,
.card.slideActive .content .lowerTriangle .triangleBackground{
  /* border-style: solid; */
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #16171b;
  border-width: 0 227px 30px;
}

.card .content.slideActive img{
  -moz-transition-duration: .6s;
  transition-duration: .6s;
}
.card .content img{
  -webkit-transition: opacity .55s ease;
  -moz-transition: opacity .55s ease;
  transition: opacity .55s ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  max-height: 48px;
  /* max-width: 25px; */
  /* opacity: 0; */
  padding: 0 15px 15px;
}
.card .content h2{
  color: #c4b998;
  font-size: 14px;
  letter-spacing: 4px;
  padding: 0 50px;
  text-transform: uppercase;
}
.card .content h1{
  color: #937341;
  font-size: 30px;
  letter-spacing: 3px;
  padding: 7px 50px 14px;
  text-transform: uppercase;
}
.card .content p{
  color: #c4b998;
  font-size: 12px;
  line-height: 1.4;
  padding: 0 50px 20px;
  position: relative;
  &:after{
    -webkit-transition: opacity 1.5s ease;
    -moz-transition: opacity 1.5s ease;
    transition: opacity 1.5s ease;
    left: -webkit-calc(50% - 30px);
    left: calc(50% - 30px);
    background: #937341;
    bottom: 0;
    content: "";
    height: 2px;
    /* opacity: 0; */
    position: absolute;
    width: 60px;
  }
}
.slider-position{
  border: 1px solid #937341;
  padding: 3px 13px;
  border-radius: 20px;
  background: #937341;
  /* opacity: 0.3; */
  font-size: 14px;
  position: relative;
  z-index: 10;
  /* left: -6px; */
  margin-top: 10px;
  user-select: none;
  color: #ffffffcc;

}
.framer{
  position: absolute;
  top: -140px;
  right: 5.5%;
  bottom: 10px;
  left: 5.5%;
  border-bottom: 1px solid #373121;
  pointer-events: none;
  z-index: 2;
  & .topRightHorLine{
      position: absolute;
      top: 70px;
      right: 0;
      width: calc(50% - 240px);
      background: #373121;
      height: 1px;
      &::before{
          height: 5px;
          width: 5px;
          position: absolute;
          top: -2px;
          left: -5px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          border: 1px solid #373121;
          content: "";
          font-size: 0;
      }
  }
  & .topLeftHorLine{
      position: absolute;
      top: 70px;
      left: 0;
      width: calc(50% - 240px);
      background: #373121;
      height: 1px;
      &::before{
          position: absolute;
          top: auto;
          right: -5px;
          bottom: -2px;
          left: auto;
          height: 5px;
          width: 5px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          border: 1px solid #373121;
          content: "";
          font-size: 0;
      }
  }
  & .topRightVerLine{
      position: absolute;
      top: 70px;
      right: 0;
      height: calc(50% - 205px);
      background: #373121;
      width: 1px;
      &::before{
          height: 5px;
          width: 5px;
          position: absolute;
          bottom: -5px;
          left: -2px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          border: 1px solid #373121;
          content: "";
          font-size: 0;
      }
  }
  & .topLeftVerLine{
      position: absolute;
      top: 70px;
      left: 0;
      height: calc(50% - 205px);
      background: #373121;
      width: 1px;
      &::before{
          height: 5px;
          width: 5px;
          position: absolute;
          bottom: -5px;
          left: -2px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          border: 1px solid #373121;
          content: "";
          font-size: 0;
      }
  }
  & .botRightVerLine{
      position: absolute;
      z-index: -1;
      right: 0;
      bottom: 0;
      height: calc(50% - 165px);
      background: #373121;
      width: 1px;
      &::before{
          height: 5px;
          width: 5px;
          position: absolute;
          top: -5px;
          left: -2px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          border: 1px solid #373121;
          content: "";
          font-size: 0;
      }
  }
  & .botLeftVerLine{
      position: absolute;
      bottom: 0;
      left: 0;
      height: calc(50% - 165px);
      background: #373121;
      width: 1px;
      &::before{
          height: 5px;
          width: 5px;
          position: absolute;
          
          top: -5px;
          left: -2px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          border: 1px solid #373121;
          content: "";
          font-size: 0;
      }
  }
}
@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 1) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}