/* Regular / Normal Weight */
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-Regular.ttf') format('woff2');
  font-weight:400;
  font-style: normal;
}


/* Medium Weight */
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-Medium.ttf') format('woff2');
  font-weight: 500;
  font-style: normal;
}

/* Bold Weight */
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-Bold.ttf') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body{
    /* background:#000000f5; */
}

/* navigation css */

/* stickey header  */


/* =======================
   HEADER BASE
======================= */

.mcl-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1002;

  background: transparent;

  transition: all 0.35s ease;
}

.mcl-header-inner {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =======================
   LOGO
======================= */

.mcl-logo {
  font-size: 22px;
  letter-spacing: 4px;
  color: #ffffff;
  text-decoration: none;
}

/* =======================
   DESKTOP NAV
======================= */

.mcl-nav {
  display: flex;
  gap: 32px;
}

.mcl-nav a {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-decoration: none;
  position: relative;

  transition: color 0.3s ease;
}

.mcl-nav a:hover {
  color: #c6a76a;
}

/* underline */
.mcl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1px;

  background: #c6a76a;

  transition: width 0.3s ease;
}

.mcl-nav a:hover::after {
  width: 100%;
}

/* =======================
   ACTIONS
======================= */

.mcl-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mcl-header-actions a {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-decoration: none;
  transition: color 0.3s ease;
}

.mcl-header-actions a:hover {
  color: #c6a76a;
}

/* =======================
   HAMBURGER
======================= */

.mcl-hamburger {
  display: none;

  flex-direction: column;
  gap: 5px;

  background: none;
  border: none;
  cursor: pointer;

  z-index: 1003;
}

.mcl-hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* =======================
   SCROLL HEADER
======================= */

.mcl-header.is-scrolled {
   background:#0f0f1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 167, 106, 0.15);
}

.mcl-header.is-hidden {
  transform: translateY(-100%);
}

/* =======================
   MOBILE MENU
======================= */

.mcl-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;

  width: 85%;
  max-width: 380px;
  height: 100vh;

  background: #0f0f10;
  

  display: flex;
  flex-direction: column;

  padding: 110px 40px;
  gap: 22px;

  transform: translateX(100%);
  transition: transform 0.4s ease;

  z-index: 1004;
}

.mcl-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mcl-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mcl-mobile-menu.active {
  transform: translateX(0);
}

.mcl-mobile-menu a {
  color: #fff;
  text-decoration: none;

  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mcl-mobile-menu a:hover {
  color: #c6a76a;
}

/* CLOSE BUTTON */
.mcl-mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;

  font-size: 28px;
  color: #fff;

  background: none;
  border: none;
  cursor: pointer;
}

/* =======================
   OVERLAY (FIXED)
======================= */

.mcl-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 1003;

  pointer-events: none;
}

.mcl-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* PREVENT SCROLL */
body.menu-open {
  overflow: hidden;
}

/* =======================
   TABLET (1024px)
======================= */

@media (max-width: 1024px) {
  .mcl-nav {
    gap: 20px;
  }

  .mcl-header-actions a:nth-child(1) {
    opacity: 0;
    pointer-events: none;
  }
}

/* =======================
   MOBILE (768px)
======================= */

@media (max-width: 768px) {

  .mcl-nav {
    display: none;
  }

  .mcl-header-actions a {
    display: none;
  }

  .mcl-hamburger {
    display: flex;
  }

  .mcl-header-inner {
    height: 70px;
  }
}

/* =======================
   SMALL MOBILE (480px)
======================= */

@media (max-width: 480px) {

  .mcl-logo {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .mcl-mobile-menu {
    width: 90%;
    padding: 100px 30px;
  }
}


/* Css for product slider slick */


.slider-wrapper {
  position: relative;
    border: 2px solid red;
}

.mcl-product-slider{
    overflow: hidden;
}

.mcl-product-slider img{
    width: 100%;
}

.section-heading{
    padding: 20px;
    text-align: center;
}


.mcl-product-slider .slick-arrow{
 position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    z-index: 20;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
}


.mcl-product-slider .slick-prev {
    left: 0;
}

.mcl-product-slider .slick-next {
    right: 0;
}  

.mcl-product-slider .slick-arrow::before{
  color: rgb(43, 43, 43);
  font-size: 25px;
  opacity: 1  ;
}

.mcl-product-slider .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 30px;
    padding: 0;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.mcl-product-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.mcl-product-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: #ccc;
    border: none;
    font-size: 0;
}

.mcl-product-slider .slick-dots li button:before {
    display: none;
}

.mcl-product-slider .slick-dots li.slick-active button {
    background: #000;
}


/* css of thrid section */
.section-three{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    background: #eee;
    padding: 20px;
    margin-bottom: 10px;
}


.section-three-inner{
  background: #edff87;
   padding: 20px;
   width: 100%;
}


/* css of fourth section */
.section-four{
    height: 25vh;
    background: #ffefcd;
    padding: 50px;
    margin-bottom: 10px;
}

/* css of fifth section */
.section-five{
    height: 80vh;
    background: #cdf5ff;
    padding: 50px;
    margin-bottom: 10px;
}




/* start css of hero section */
/* hero section css */
.mcl-hero {
  position: relative;
  min-height: 90vh;
  padding: 120px 0 80px;

  display: flex;
  align-items: center;

  background-image: url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* OVERLAY */
.mcl-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(15, 15, 16, 0.88) 0%,
    rgba(15, 15, 16, 0.72) 35%,
    rgba(15, 15, 16, 0.35) 70%,
    rgba(15, 15, 16, 0.15) 100%
  );

  z-index: 1;
}

.mcl-hero .container {
  position: relative;
  z-index: 2;
}

.mcl-hero-row {
  display: flex;
  align-items: center;
}

/* LEFT CONTENT */
.mcl-hero-content {
  padding-right: 40px;
}

.mcl-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #c6a76a;
  font-weight: 600;
}

.mcl-hero h1 {
  margin-bottom: 22px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 400;

  color: #ffffff;
}

.mcl-hero p {
  max-width: 460px;
  margin-bottom: 32px;

  font-size: 17px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.78);
}

/* ACTIONS */
.mcl-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* BUTTON */
.mcl-btn {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #111;

  padding: 14px 28px;
  border-radius: 0;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.mcl-btn:hover {
  background: #c6a76a;
  border-color: #c6a76a;
  color: #111;
}

/* LINK */
.mcl-link {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-decoration: none;
  border-bottom: 1px solid #c6a76a;
}

/* RIGHT IMAGE */
.mcl-hero-image {
  margin: 0;
}

.mcl-hero-image img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;

  display: block;
}

/* =========================
   TABLET (1024px)
========================= */
@media (max-width: 1024px) {

  .mcl-hero {
    padding: 110px 0 70px;
  }

  .mcl-hero-content {
    padding-right: 20px;
  }

  .mcl-hero p {
    font-size: 16px;
  }

  .mcl-hero-image img {
    max-height: 520px;
  }
}

/* =========================
   TABLET SMALL / LANDSCAPE
========================= */
@media (max-width: 900px) {

  .mcl-hero-row {
    flex-wrap: wrap;
  }

  .mcl-hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .mcl-hero-image-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mcl-hero p {
    max-width: 100%;
  }
}

/* =========================
   MOBILE (768px)
========================= */
@media (max-width: 768px) {

  .mcl-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .mcl-hero-content {
    text-align: center;
  }

  .mcl-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .mcl-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mcl-hero-image img {
    max-height: 420px;
  }
}

/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {

  .mcl-hero h1 {
    font-size: 34px;
  }

  .mcl-hero p {
    font-size: 15px;
  }

  .mcl-btn {
    width: 100%;
    text-align: center;
  }

  .mcl-hero-actions {
    flex-direction: column;
    gap: 12px;
  }
}

 
  .slick-slide {
      margin: 0 27px;
  }

  /* the parent */
  .slick-list {
      margin: 0 -27px;
  }
