/* =========================
   HERO WRAPPER
========================= */
.hero-slider{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  background:#F1EDE4;
}
@media screen and (min-width: 2500px){
  .hero-slider{
    height: 80vh !important;
  }
}
.hero-slider::before{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.11);

  z-index:2;
  pointer-events:none;
}

/* =========================
   SLIDES STACK
========================= */
.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;

  /* FIX FOR GSAP + GPU GLITCH */
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform-style:preserve-3d;
}

/* =========================
   IMAGE COVER FIX (IMPORTANT)
========================= */
.slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  display:block;

  /* GPU STABILITY FIX */
  transform:translateZ(0);
  will-change: transform;

  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

/* =========================
   META CONTAINER (1367px)
========================= */
.meta{
  position:absolute;
  bottom:100px;
  left:50%;
  transform:translateX(-50%);
  width:min(1367px, 90%);
  color:#fff;
  z-index:5;
}

/* =========================
   PROGRESS BAR
========================= */
.progress-border{
  width:100%;
  height:1px;
  background:rgba(255,255,255,.25);
  overflow:hidden;
  margin-bottom:20px;
}

.progress-border .bar{
  width:0%;
  height:1px;
  background:#fff;
}

/* =========================
   BOTTOM LAYOUT
========================= */
.meta-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

/* LEFT SIDE */
.left{
  display:flex;
  flex-direction:row;
  gap:20px;
  align-items:center;
}

/* .count{
  font-size:14px;
  opacity:0.8;
} */

span.count {
    font-family: Nunito;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.title {
    font-family: Nunito;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* RIGHT SIDE */
.right a{
  color:#fff;
  text-decoration:none;
  position:relative;
}
.right a:hover{
  color:#D76341;
  text-decoration:none;
}

.right a:hover img{
  filter: brightness(0) saturate(100%) invert(54%) sepia(39%) saturate(1040%) hue-rotate(331deg) brightness(93%) contrast(89%);
}
.right a:hover::after {
    background: #D76341;
}

.right a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:1px;
  width:100%;
  height:1px;
  background:#fff;
}

/* =========================
   GLOBAL SAFETY FIX
========================= */
.hero-slider *{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 130px;
}

.right img {
    width: 20px;
    display: flex;
    justify-content: flex-end;
    margin-left: 110px;
    top: 6px;
}


/* =========================
   PAGINATION DOTS
========================= */
.slider-dots{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  z-index:20;

  display:flex;
  align-items:center;
  gap:12px;
}

.slider-dots .dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background: #D76341;
  cursor:pointer;

  transition:all .3s ease;
}

/* ACTIVE DOT */
.slider-dots .dot.active{
	background: #D76341;
	transform:scale(1.2);
	width: 34px !important;
	height: 12px !important;
	angle: 0 deg;
	opacity: 1;
	border-radius: 12px !important;
	
}

/* arrow icon  */


/* responsive css */


@media (min-width:767px) and (max-width: 1024px){
	.hero-slider {
    height: 50vh;
}
.slider-container {
    width: 100% !important;
}	
	
}




@media (min-width:320px) and (max-width: 767px){
.hero-slider {
    height: 50vh;
}
span.count {
    font-size: 20px;
}	
.title {
    font-size: 18px;
}	
.slider-dots {
    bottom: 20px;
}	
.meta {
    bottom: 50px;
}
.slide img {
    height: 499px !important;
}	
.right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100px;
    justify-content: flex-end;
}

	
}
