img {
  display: block;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 10px;
}

.gallery {
  overflow: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gallery__img {
  scroll-snap-align: start;
  margin-bottom: 10px;
  /*min-height: 100vh;*/
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.lil-nav {
  overflow-y: scroll;
  overflow-x: hidden;

  a {
    height: 200px;
    display: flex;
    margin-bottom: 10px;
  }
}

.lil-nav__img {
  object-fit: cover;
  filter: saturate(0);
  transition: 0.3s ease all;

  &:hover {
    transform: scale(1.05);
    filter: saturate(1);
  }
}





/* =========================
   Features Section CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.ft-service-section{
    width:100%;
    padding:70px 20px;
    background:#f7f7f7;
}

.ft-service-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.ft-service-card{
    background:#ececec;
    border-radius:14px;
    padding:40px 25px;
    text-align:center;

    transition:0.4s ease;
}

.ft-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.ft-service-icon{
    width:110px;
    height:110px;
    margin:0 auto 25px;

    background:#f7b320;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);

    display:flex;
    align-items:center;
    justify-content:center;
}

.ft-service-icon i{
    font-size:42px;
    color:#fff;

    transform:rotate(45deg);
}

.ft-service-card h3{
    font-size:28px;
    color:#243b53;
    margin-bottom:12px;
    font-weight:700;
    margin-top:40px;
}

.ft-service-card p{
    font-size:17px;
    color:#6b7280;
    line-height:1.6;
}

/* =========================
   Tablet Responsive
========================= */

@media (max-width:992px){

    .ft-service-container{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================
   Mobile Responsive
========================= */

@media (max-width:576px){

    .ft-service-section{
        padding:50px 15px;
    }

    .ft-service-container{
        grid-template-columns:1fr;
    }

    .ft-service-card{
        padding:35px 20px;
    }

    .ft-service-icon{
        width:95px;
        height:95px;
    }

    .ft-service-icon i{
        font-size:35px;
    }

    .ft-service-card h3{
        font-size:24px;
    }

    .ft-service-card p{
        font-size:15px;
    }

}



/* =========================
   PRODUCT SECTION CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f7f7f7;
}

.op-product-section{
    width:100%;
    padding:70px 20px;
}

.op-product-header{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.op-product-title h2{
    font-size:48px;
    color:#2c4a5a;
    font-weight:700;
}

.op-filter-menu{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.op-filter-btn{
    border:none;
    padding:14px 30px;
    border-radius:40px;
    background:#e8e8e8;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.op-filter-btn.active,
.op-filter-btn:hover{
    background:#f5b321;
    color:#fff;
}

/* PRODUCT GRID */

.op-product-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.op-product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    transition:0.3s;
}

.op-product-card:hover{
    transform:translateY(-8px);
}

.op-product-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.op-product-content{
    padding:25px;
    text-align:center;
}

.op-product-content span{
    display:inline-block;
    background:#f5b321;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:15px;
}

.op-product-content h3{
    font-size:30px;
    margin-bottom:12px;
    color:#2c4a5a;
}

.op-product-content p{
    font-size:17px;
    color:#777;
    line-height:1.6;
    margin-bottom:15px;
}

.op-product-content h4{
    font-size:24px;
    color:#f5b321;
}

/* HIDE CARDS */

.hide{
    display:none;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .op-product-container{
        grid-template-columns:repeat(2,1fr);
    }

    .op-product-title h2{
        font-size:40px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .op-product-header{
        justify-content:center;
        text-align:center;
    }

    .op-product-title h2{
        font-size:34px;
    }

    .op-filter-menu{
        justify-content:center;
    }

    .op-filter-btn{
        padding:12px 22px;
        font-size:16px;
    }

    .op-product-container{
        grid-template-columns:1fr;
    }

}







