body{
  font-family: "Albert Sans", sans-serif;
  color: #000000;
  background: #FBF7F4;
  padding-top: 86px;
    overflow-x: hidden;

}
.heroSlider .swiper-slide .overlay-bg {
    background: linear-gradient(90.16deg, rgba(101, 97, 67, 0.7) 0.16%, rgba(102, 102, 102, 0) 46.97%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.elixxpro-navbar ul li a{
	color: #393939;
	font-weight: 500;
    letter-spacing: -1%;
}
.navbar-expand-lg.elixxpro-navbar .navbar-nav  {
    gap: 10px;
}
nav.navbar.navbar-expand-lg.fixed-top.elixxpro-navbar .hero-btn {
    padding: 12px 20px;
}
nav.navbar.navbar-expand-lg.fixed-top.elixxpro-navbar {
    background: #fff;
    /*border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;*/
}
.become-a-channel a.nav-link {
    border: 1px solid #29256A;
    border-radius: 6.02px;
    display: inline-block;
    padding: 8px 10px !important;
    text-align: center;
}


/**/

/*=========================================
    HEADER
=========================================*/

.elixxpro-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}
h1 {
    margin: 0 0 20px;
    color: #000;
    font-size: 36px;
    line-height: 38.2px;
    font-weight: 500;
    text-transform: uppercase;
}
.header-inner{
    height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-logo img{
    max-height:48px;
    display:block;
}

/*=========================================
    DESKTOP NAV
=========================================*/

.desktop-nav {
    margin-right: 3%;
}

.desktop-nav>ul{
    display:flex;
    align-items:center;
    gap:34px;
    margin:0;
    padding:0;
    list-style:none;
}

.desktop-nav>ul>li{
    position:relative;
}

.desktop-nav>ul>li>a{
    display:flex;
    align-items:center;
    gap:6px;
    height:86px;
    color:#1f1f1f;
    font-size:17px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
        text-transform: uppercase;
}

.desktop-nav>ul>li>a:hover{
    color:#49b848;
}

.desktop-nav>ul>li>a i{
    font-size:11px;
    transition:.35s;
}

.has-dropdown:hover>a i,
.has-mega:hover>a i{
    transform:rotate(180deg);
}

/*=========================================
    SUB MENU
=========================================*/

.sub-menu{
    position:absolute;
    top:100%;
    left:0;
    width:240px;
    background:#fff;
    padding:15px 0;
    margin:0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-radius:10px;
}

.has-dropdown:hover>.sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.sub-menu li a{
    display:block;
    padding:11px 24px;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.sub-menu li a:hover{
    background:#f7f7f7;
    color:#49b848;
}

/*=========================================
    RIGHT
=========================================*/

.header-right{
    display:flex;
    align-items:center;
    gap:18px;
    margin-left:40px;
}

.partner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border:1px solid #29256A;
    border-radius:8px;
    color:#29256A;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.partner-btn:hover{
    background:#29256A;
    color:#fff;
}

.search-btn{
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:20px;
    color:#29256A;
}

.menu-toggle{
    width:44px;
    height:44px;
    border:none;
    background:none;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:24px;
    height:2px;
    background:#29256A;
    display:block;
    transition:.3s;
}
/*=========================================
    MEGA MENU
=========================================*/

.has-mega{
    position:static;
}

.mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#fff;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(20px);
    transition:.35s ease;
    border-top:1px solid #ececec;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.has-mega:hover>.mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.mega-menu-inner{
    display:flex;
    min-height:500px;
}

/*=========================================
    LEFT SIDEBAR
=========================================*/

.mega-sidebar{
    width:280px;
    background:#fafafa;
    border-right:1px solid #ececec;
    flex-shrink:0;
}

.mega-category-list{
    margin:0;
    padding:0;
    list-style:none;
}

.mega-category-list li{
    position:relative;
}

.mega-category-list li+li{
    border-top:1px solid #efefef;
}

.mega-category-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:0;
    background:#49b848;
    transition:.35s;
}

.mega-category-list li.active::before,
.mega-category-list li:hover::before{
    height:100%;
}

.mega-category-list li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.35s;
}

.mega-category-list li i{
    opacity:0;
    transform:translateX(-8px);
    color:#49b848;
    transition:.35s;
}

.mega-category-list li.active a,
.mega-category-list li:hover a{
    background:#fff;
    color:#29256A;
    padding-left:40px;
}

.mega-category-list li.active i,
.mega-category-list li:hover i{
    opacity:1;
    transform:translateX(0);
}

/*=========================================
    RIGHT SIDE
=========================================*/

.mega-content-wrapper{
    flex:1;
    position:relative;
    padding:35px;
    overflow:hidden;
    background:#fff;
    min-height:500px;
}

.mega-panel{
    position:absolute;
    inset:35px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
}

.mega-panel.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
}
/*=========================================
    PRODUCT CARD
=========================================*/

.mega-card{
    display:block;
    text-decoration:none;
    color:#222;
    transition:.35s ease;
}

.mega-card:hover{
    transform:translateY(-8px);
}

.mega-card img{
    width:100%;
    object-fit:cover;
    display:block;
    border-radius:10px;
    transition:.7s ease;
}

.mega-card picture{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:10px;
    background:#f5f5f5;
}

/*=========================================
    IMAGE OVERLAY
=========================================*/

.mega-card picture::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.35),rgba(0,0,0,0));
    opacity:0;
    transition:.4s;
    z-index:2;
}

.mega-card picture::after{
    content:"";
    position:absolute;
    top:-150%;
    left:-45%;
    width:35%;
    height:280%;
    background:linear-gradient(120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent);
    transform:rotate(25deg);
    transition:1s;
    z-index:3;
}

.mega-card:hover picture::before{
    opacity:1;
}

.mega-card:hover picture::after{
    left:140%;
}

.mega-card:hover img{
    transform:scale(1.08);
}

/*=========================================
    TEXT
=========================================*/

.mega-card h5 {
    margin: 18px 0 8px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    transition: .3s;
}

.mega-card p{
    margin:0;
    font-size:15px;
    color:#707070;
    line-height:1.7;
    transition:.3s;
}

.mega-card:hover h5{
    color:#29256A;
}

.mega-card:hover p{
    color:#444;
}

/*=========================================
    GLASS LABEL
=========================================*/

.mega-label{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    padding:14px 18px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:10px;
    color:#fff;
    font-size:15px;
    font-weight:500;
    opacity:0;
    transform:translateY(20px);
    transition:.35s;
    z-index:5;
}

.mega-card:hover .mega-label{
    opacity:1;
    transform:translateY(0);
}

/*=========================================
    PANEL ANIMATION
=========================================*/

.mega-panel.active{
    animation:megaFade .35s ease;
}

@keyframes megaFade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .mega-sidebar{
        width:240px;
    }

    .mega-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .desktop-nav{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .partner-btn{
        display:none;
    }

    .mega-menu{
        display:none;
    }

}

@media(max-width:767px){

    .header-inner{
        height:74px;
    }

    .header-logo img{
        max-height:42px;
    }

}
/* Mega Menu */

.mega-menu{
    display:block;
}

.mega-menu.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

/* Mobile */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100%;
    background:#fff;
    transition:.4s;
    z-index:99999;
    overflow:auto;
}

.mobile-menu.active{
    right:0;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

body.menu-open{
    overflow:hidden;
}

.mobile-products ul{
    display:none;
}

.mobile-products.open ul{
    display:block;
}


/*=========================================
    LARGE DESKTOP
=========================================*/

@media (max-width:1400px){

    .desktop-nav>ul{
        gap:40px;
    }

    .desktop-nav>ul>li>a{
        font-size:15px;
        text-transform: uppercase;
    }

    .partner-btn{
        padding:11px 18px;
        font-size:14px;
    }

    .mega-sidebar{
        width:250px;
    }

}
.desktop-nav>ul>li>a img {
    margin-left: -4px;
    margin-top: 1px;
}
/*=========================================
    LAPTOP
=========================================*/

@media (max-width:1200px){

    .header-inner{
        height:78px;
    }

    .desktop-nav>ul{
        gap:18px;
    }

    .desktop-nav>ul>li>a{
        font-size:15px;
    }

    .partner-btn{
        display:none;
    }

    .mega-sidebar{
        width:220px;
    }

    .mega-category-list li a{
        padding:18px 24px;
        font-size:16px;
    }

    .mega-content-wrapper{
        padding:25px;
    }

    .mega-panel{
        inset:25px;
    }

    .mega-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .mega-card img{
        height:200px;
    }

}

/*=========================================
    TABLET
=========================================*/

@media (max-width:991px){

    .desktop-nav{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .search-btn{
        margin-right:10px;
    }

    .header-inner{
        height:72px;
    }

    .header-logo img{
        max-height:42px;
    }

    .mobile-menu{
        width:340px;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media (max-width:767px){

    .container{
        padding-left:16px;
        padding-right:16px;
    }
.banner-content {
    left: 5%;
}
.tech-content .tech-text img {
    width: 260px;
}
.tech-content .tech-icon img {
    width: 260px;
}
    .header-inner{
        height:66px;
    }

    .header-logo img{
        max-height:38px;
    }

    .search-btn{
        width:38px;
        height:38px;
        font-size:18px;
        margin-right:5px;
    }

    .menu-toggle{
        width:38px;
        height:38px;
    }

    .menu-toggle span{
        width:22px;
    }

    .mobile-menu{
        width:100%;
        right:-100%;
    }

    .mobile-menu.active{
        right:0;
    }

}

/*=========================================
    MOBILE MENU
=========================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:360px;

    height:100vh;

    background:#fff;

    z-index:99999;

    transition:.4s;

    overflow-y:auto;

    box-shadow:-10px 0 40px rgba(0,0,0,.12);

}

.mobile-menu.active{

    right:0;

}

.mobile-header{

    height:75px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

    border-bottom:1px solid #eee;

}

.mobile-header img{

    height:42px;

}

.mobile-close{

    width:40px;

    height:40px;

    border:none;

    background:#f4f4f4;

    border-radius:50%;

    cursor:pointer;

}

.mobile-nav{

    margin:0;

    padding:20px;

    list-style:none;

}

.mobile-nav>li{

    border-bottom:1px solid #efefef;

}

.mobile-nav>li>a, .mobile-nav>li>button {
    width: 100%;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
}

.mobile-products ul{

    display:none;

    margin:0;

    padding:0 0 15px 18px;

    list-style:none;

}

.mobile-products.open ul{

    display:block;

}

.mobile-products ul li a{

    display:block;

    padding:10px 0;

    color:#555;

    text-decoration:none;

    font-size:15px;

}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

body.menu-open{

    overflow:hidden;

}


/**/
.heroSlider {
    position: relative;
}

.heroSlider .swiper-slide {
    position: relative;
}

.heroSlider img {
    width: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: auto;
    left: 10%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    bottom: 0;
}

.content-box {
    max-width: 520px;
}

/* Initial State */

.animate-item{
    opacity:0;
    transform:translateX(-70px);
}

/* Active Slide */

.swiper-slide-active .animate-item{
    opacity:1;
    transform:translateX(0);
}

/* Individual Delay */

.swiper-slide-active h2{
    transition:all .8s ease;
    transition-delay:.2s;
    color: #FFFFFF;
    font-size: 36px;
    line-height: 42.4px;
    font-weight: 600;
}

.swiper-slide-active p{
    transition:all .8s ease;
    transition-delay:.5s;
    color: #FFFFFF;
    line-break: 20px;
}

.swiper-slide-active .btn{
    transition:all .8s ease;
    transition-delay:.8s;
}

.heroSlider .swiper-pagination{
    display:flex;
    align-items:center;
    gap:10px;
    bottom:40px !important;
    left:150px !important;
    width:auto;
}

.heroSlider .swiper-pagination-bullet{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#979797;
    opacity:1;
    transition:.35s ease;
    position:relative;
}

/* Active Bullet */

.heroSlider .swiper-pagination-bullet-active{
    width:58px;
    background:transparent;
    border-radius:20px;
}

/* Green Dot */

.heroSlider .swiper-pagination-bullet-active::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#45B249;
    transform:translateY(-50%);
}

/* Green Line */

.heroSlider .swiper-pagination-bullet-active::after{
    content:"";
    position:absolute;
    left:16px;
    top:50%;
    width:46px;
    height:2px;
    background:#45B249;
    transform:translateY(-50%);
    border-radius:2px;
}

/**/

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    padding: 8px 20px;
    border-radius: 8px;

    background: #29256A;
    border: 1px solid #29256A;
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all .45s ease;
}

/* Shine Effect */

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform:skewX(-25deg);
    transition:left .7s ease;
}

/* Hover */

.btn-primary:hover{
    background:#4db757;
    border-color:#4db757;
    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 10px 30px rgba(46,42,123,.28);
}

.btn-primary:hover::before{
    left:160%;
}

/* Click */

.btn-primary:active{
    transform:translateY(-1px);
}

/* Focus */

.btn-primary:focus{
    box-shadow:none;
}

/**/


.technology-strip{
    padding:40px 0 0;
}

.tech-card {
    position: relative;
    overflow: hidden;
}


.tech-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tech-content {
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 18px;
    position: absolute;
    inset: 0;
    justify-content: center;
}

.tech-icon {
    margin-right: 10px;
}


.tech-flag{

    width:44px;
    margin-left:-8px;
    margin-right:10px;
}

.tech-flag img{

    width:100%;
}

.tech-text {
    text-align: center;
}
.tech-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #000000;
    line-height: 22.6px;
}
.tech-text p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.tech-badge{

    margin-left:12px;
}

.tech-badge img{

    width:32px;
}

.contact-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    background:#2d2a75;
    color:#fff;

    border-radius:5px;

    font-size:14px;
    font-weight:600;

    text-decoration:none;

    transition:.35s;
}

.contact-btn:hover{

    background:#1f1b5c;
    color:#fff;

    transform:translateY(-2px);
}

@media(max-width:991px){

    .technology-strip{

        padding:20px 0;
    }

    .contact-btn{

        margin:20px 0;
    }

}

/**/


.product-range{
}

.section-heading .sub-title{
    display:block;
    margin-bottom:10px;
    font-size:12px;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#3a3d88;
}

.section-heading h2{
    font-size:36px;
    font-weight:500;
    color:#000000;
    margin:0;
    line-height: 48.2px;
    text-transform: uppercase;
}

/* Card */

.range-card{
    position:relative;
    display:block;
    overflow:hidden;
    text-decoration:none;
}

/* Image */

.range-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.22,.61,.36,1);
}

/* Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15),
        rgba(0,0,0,0)
    );
    transition:.6s ease;
}
/* Text */

.content{

    position:absolute;
    left:22px;
    bottom:20px;
    z-index:2;
    transition:.45s ease;
}

.content h4 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    line-height: 29.2px;
    text-transform: uppercase;
}

/* Hover */

.range-card:hover img{
    transform:scale(1.08);
}

.range-card:hover .overlay{
    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.25),
        rgba(0,0,0,.05)
    );
}

.range-card:hover .content{
    transform:translateY(-12px);
}

/* Premium Shine */

.range-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transform:skewX(-25deg);
    z-index:3;
    transition:left .8s ease;
}

.range-card:hover::before{
    left:170%;
}

/**/

.cta-card{

    position:relative;

    display:flex;
    align-items:center;

    min-height:170px;

    padding:34px 36px;

    text-decoration:none;
    color:#fff;

    overflow:hidden;

    background:#74ca73;

    transition:.4s ease;
}

/* Background Pattern */

.cta-card::before{

    content:"";

    position:absolute;
    inset:0;

    background:url("../images/green-x.png") no-repeat right center;
    background-size:55%;

    transition:transform .7s ease;
}

/* Overlay */

.cta-card::after{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(90deg,
        rgba(116,202,115,.15),
        rgba(116,202,115,.05));

}

.cta-content{
    position:relative;
    z-index:2;
    max-width:315px;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Hover */

.cta-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.cta-card:hover::before{

    transform:scale(1.08);
}

.cta-card:hover .btn{

    transform:translateX(6px);
}

.cta-card .btn{

    transition:.35s ease;
}

/**/

/*==================================================
    APPLICATION AREA SECTION
==================================================*/
.container.position-relative {
    padding: 0 40px;
}
.application-area{
    position:relative;
    overflow:hidden;
    min-height:692px;
    display:flex;
    align-items:center;
    background:#111;
}

/*==============================
Background Images
==============================*/

.application-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
}

.application-bg .bg-item{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:
        opacity .8s ease,
        transform 1.2s ease;
    transform:scale(1.05);
}

.application-bg .bg-item.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}

.application-bg picture{
    display:block;
    width:100%;
    height:100%;
}

.application-bg picture img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*==============================
Dark Overlay
==============================*/
.cta-section {
    padding-bottom: 50px;
}
.application-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(76.22deg, rgba(0, 0, 0, 0.5) 28.1%, rgba(102, 102, 102, 0) 65.6%);
}

/*==============================
Container
==============================*/

.application-area .container{
    position:relative;
    z-index:5;
}

/*==============================
Left Side
==============================*/

.application-left{
    max-width:360px;
}

.application-left .sub-title {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 5.9px;
    text-transform: uppercase;
    font-weight: 400;
}
.application-left h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 48.2px;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/*==============================
Category Menu
==============================*/

.application-menu{

    margin:0;
    padding:0;

    list-style:none;

    display:flex;
    flex-direction:column;

    gap:10px;

    width:128px;
}
.application-menu li {
    cursor: pointer;
    background: #2b2b78;
    color: #fff;
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all .35s ease;
    user-select: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Left Accent */

.application-menu li::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:#5bdd58;

    transform:scaleY(0);

    transition:.35s ease;
}

/* Hover */

.application-menu li:hover{

    background:#38389a;

    transform:translateX(8px);
}

/* Active */

.application-menu li.active {
    background: #45B249;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}
.application-card a.btn.btn-primary {
    background: none;
    color: #29256A;
}
/*.application-menu li.active::before{

    transform:scaleY(1);
}*/

/*==============================
Smooth Fade on Text
==============================*/

.application-left h2,
.application-left .sub-title,
.application-menu li{

    transition:.45s ease;
}
/*==================================================
    RIGHT CARD
==================================================*/

.application-card-wrapper{

    position:relative;

    width:100%;
    min-height:420px;

    display:flex;
    justify-content:flex-end;
    align-items:center;
}

/*==============================
Card
==============================*/

.application-card {
    position: absolute;
    right: 0;
    width: 430px;
    background: #fff;
    padding: 27px;
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(35px);
    transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
    z-index: 10;
}

/* Active Card */

.application-card.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateY(0);
}

/*==============================
Badge
==============================*/

.badge-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    margin-bottom: 18px;
    background: #45B249;
    color: #fff;
    border-radius: 3.01px;
    font-size: 12.05px;
    font-weight: 400;
    letter-spacing: .4px;
}

/*==============================
Heading
==============================*/

.application-card h3 {
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 25px;
    line-height: 21.53px;
}

/*==============================
Feature Items
==============================*/

.feature-item{

    text-align:center;

    transition:.35s ease;
}

.feature-item img{

    width:58px;
    height:58px;

    object-fit:contain;

    transition:transform .35s ease;
}

.feature-item p {
    margin-top: 14px;
    margin-bottom: 0;
    color: #979797;
    font-size: 14px;
    font-weight: 400;
    line-height: 21.53px;
}

/* Hover */

.feature-item:hover img{

    transform:translateY(-6px) scale(1.08);
}

.feature-item:hover p{

    color:#2b2b78;
}

/*==============================
Spacing
==============================*/

.application-card .row{
    margin-bottom:20px;
}



/*==============================
Card Entrance Animation
==============================*/

.application-card.active .badge-title{

    animation:fadeUp .45s ease both;
}

.application-card.active h3{

    animation:fadeUp .55s ease both;
}

.application-card.active .feature-item:nth-child(1){

    animation:fadeUp .65s ease both;
}

.application-card.active .feature-item:nth-child(2){

    animation:fadeUp .75s ease both;
}

.application-card.active .feature-item:nth-child(3){

    animation:fadeUp .85s ease both;
}

.application-card.active .btn{

    animation:fadeUp .95s ease both;
}

/*==============================
Keyframes
==============================*/

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(20px);
    }

    to{

        opacity:1;
        transform:translateY(0);
    }
}
/*==================================
Category Hover Animation
==================================*/

.application-menu li:hover{

    padding-left:28px;
}

/*.application-menu li.active{

    transform:translateX(12px);
}*/

/*==================================
Background Transition
==================================*/

.application-bg .bg-item{

    will-change:opacity,transform;
}

.application-bg .bg-item.active{

    animation:bgZoom .9s ease;
}

@keyframes bgZoom{

    from{

        opacity:0;
        transform:scale(1.08);
    }

    to{

        opacity:1;
        transform:scale(1);
    }

}

/*==================================
Card Transition
==================================*/

.application-card{

    will-change:opacity,transform;
}

/*==================================
Responsive
==================================*/

@media(max-width:1199px){

.application-left h2{

    font-size:46px;
}

.application-card{

    width:460px;
}

}

@media(max-width:991px){

.application-area{
    min-height:auto;
    padding:80px 0;
}

.application-area .row{
    row-gap:40px;
}

.application-left{
    max-width:100%;
}

.application-left h2{
    font-size:40px;
}

.application-menu{
    width:100%;
}

.application-card-wrapper{
    min-height:380px;
}

.application-card{
    width:100%;
    right:auto;
}

}

@media(max-width:767px){
.swiper-slide-active h2 {
    font-size: 20px;
    line-height: 26.4px;
}
.swiper-slide-active p {
    font-size: 13px;
}
.banner-content {
    position: absolute;
    top: auto;
    left: 0%;
    width: 100%;
    transform: translateY(-30%);
    z-index: 5;
    bottom: 0;
}
.tech-bg img {
    height: 120px;
}
.tech-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-top: 5px;
    line-height: 20px;
}
.tech-text h4 {
    margin: 0;
    font-size: 16px;
    line-height: 18.6px;
}
.application-left {
    text-align: center;
}
.application-area .row{
    row-gap:0;
}
.application-area{
    padding:60px 0;
}
.container.position-relative {
    padding: 0 20px;
}
.application-left h2{
    font-size:28px;
    margin-bottom: 30px;
    line-height: normal;
}
.application-card{
    padding:28px;
}
.application-card h3{
    font-size:26px;
}
.feature-item{
    margin-bottom:25px;
}
.application-card .btn{
    width:100%;
}

}

/**/


/*=========================================
    COMMITMENT SECTION
=========================================*/

.commitment-section{
    background:#f8f6f3;
    overflow:hidden;
}

.commitment-content{
    max-width:470px;
}

/*=========================================
    Heading
=========================================*/

.section-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5.9px;
    color: #29256A;
    margin-bottom: 20px;
}
.contact-left h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 48.2px;
    margin-bottom: 20px;
}

.commitment-content p {
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 30px;
}

/*=========================================
    Counter
=========================================*/

.commitment-counter{

    display:flex;

    gap:60px;

    margin-bottom:35px;
}

.counter-box h3 {
    font-size: 40px;
    font-weight: 300;
    color: #29256A;
    margin: 0;
}

.counter-box h3 span{

    color:#45c64a;
}

.counter-box p{

    margin-top:8px;

    margin-bottom:0;

    font-size:14px;

    color:#888;
}

/*=========================================
    Carb
=========================================*/

.commitment-carb{

    margin-bottom:35px;
}

.commitment-carb h3{

    font-size:46px;

    font-weight:300;

    color:#2b2b78;

    margin-bottom:8px;
}

.commitment-carb h3 span{

    color:#45c64a;
}

.commitment-carb p {
    margin: 0;
    font-size: 14px;
    color: #979797;
    font-weight: 400;
}
/*=========================================
    Image
=========================================*/

.commitment-image{

    position:relative;

    overflow:hidden;
}

.commitment-image picture{

    display:block;
}

.commitment-image img{

    width:100%;

    display:block;

    transition:1.2s ease;

    object-fit:cover;
}

.commitment-image:hover img{

    transform:scale(1.05);
}

/*=========================================
    Floating Cards Wrapper
=========================================*/

.desktop-cards{

    position:absolute;

    inset:0;

    pointer-events:none;
}

/*=========================================
    Floating Card
=========================================*/

.floating-card {
    position: absolute;
    width: 270px;
    padding: 28px;
    background: rgb(120 113 86 / 1%);
    backdrop-filter: blur(9px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    transition: .45s ease;
    pointer-events: auto;
}

.floating-card h4 {
    font-size: 16.56px;
    font-weight: 600;
    margin-bottom: 15px;
}

.floating-card p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 400;
    line-height: 18.8px;
}

/*=========================================
    Position
=========================================*/

.card-top {
    top: 67px;
    right: 119px;
}
.card-left {
    right: 52%;
    bottom: 230px;
}

.card-bottom{
    right:119px;
    bottom:80px;
}


@media screen and (max-width: 1366px) {
.card-top {
    top: 94px;
    right: 144px;
}
.card-left {
    right: 52%;
    bottom: 230px;
}

.card-bottom{
    right:144px;
    bottom:90px;
}

}


/*=========================================
    Hover
=========================================*/

.floating-card:hover{

    transform:translateY(-8px);

    background:rgba(94,139,69,.88);

    box-shadow:0 20px 45px rgba(0,0,0,.28);
}

/*=========================================
    Hide Mobile Slider
=========================================*/

.mobile-esg-slider{

    display:none;
}

/*=========================================
    LARGE DEVICES
=========================================*/

@media (max-width:1399px){

    .commitment-content h2 {
        font-size: 36px;
        font-weight: 500;
        line-height: 39.2px;
    }

    .floating-card{
        width:250px;
        padding:24px;
    }

}

/*=========================================
    TABLET
=========================================*/

@media (max-width:991px){

    .commitment-section{
        padding:70px 0;
    }

    .commitment-content{
        max-width:100%;
        margin-bottom:20px;
    }

    .commitment-content h2{
        font-size:38px;
    }

    .commitment-counter{
        gap:35px;
    }

    .counter-box h3{
        font-size:42px;
    }

    .commitment-carb h3{
        font-size:34px;
    }

    /* Hide Desktop Cards */

    .desktop-cards{
        display:none;
    }

    /* Show Mobile Slider */

    .mobile-esg-slider{

        display:block;

        position:absolute;

        left:20px;
        right:20px;
        bottom:20px;

        z-index:5;
    }

    .mobile-esg-slider .swiper-slide{

        height:auto;
    }

    .mobile-esg-slider .floating-card {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        background: rgb(120 113 86 / 0%);
        backdrop-filter: blur(5px);
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .commitment-section{

        padding:60px 0;
    }
.commitment-content {
        text-align: center;
    }
.section-tag {
        letter-spacing: 3px;
        text-align: center;
        width: 100%;
    }

    .commitment-content h2{

        font-size:30px;
    }

    .commitment-content p{

        font-size:15px;

        line-height:1.7;
    }

    .commitment-counter {
        gap: 20px;
        justify-content: center;
    }

.counter-box h3 {
        font-size: 24px;
    }

    .commitment-carb h3{

        font-size:30px;
    }

    .commitment-image{

        border-radius:8px;

        overflow:hidden;
    }

    .mobile-esg-slider{

        left:15px;
        right:15px;
        bottom:15px;
    }

    .mobile-esg-slider .floating-card{

        padding:22px;
    }

    .floating-card h4{

        font-size:18px;
    }

    .floating-card p{

        font-size:14px;

        line-height:1.6;
    }

    .mobile-esg-slider .swiper-pagination{

        position:relative;

        margin-top:15px;
    }

}

/**/

/*=========================================
    MATRIX APP SECTION
=========================================*/



.matrix-wrapper{

    background:#fff;

    border:1px solid #e7e7e7;

    padding:35px 40px;

    position:relative;
}

/* Vertical Divider */

.matrix-wrapper::after{

    content:"";

    position:absolute;

    left:50%;
    top:18px;
    bottom:18px;

    width:1px;

    background:#e6e6e6;

    transform:translateX(-50%);
}

/*=========================================
    Left & Right Box
=========================================*/
.auth-left {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-left: 30px;
}
.matrix-box,
.auth-box{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

    transition:.4s ease;
}

.matrix-box:hover,
.auth-box:hover{

    transform:translateY(-4px);
}
.auth-left .auth-content h3 {
    margin: 0;
}
.auth-left .auth-content p {
    margin: 0;
    font-size: 16px;
    line-height: 21px;
    margin-top: 10px;
    color: #000000;
}
/*=========================================
    Icon Circle
=========================================*/

.matrix-icon,
.auth-icon{
    width:138px;
    height:138px;
    border:2px dashed #d7d7d7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.4s ease;
}

.matrix-box:hover .matrix-icon,
.auth-box:hover .auth-icon{
    border-color:#58c55b;
}

.matrix-icon img,
.auth-icon img{
    max-width:81px;
    transition:.35s ease;
}

/*.matrix-box:hover img,
.auth-box:hover img{

    transform:scale(1.08);
}*/

/*=========================================
    Content
=========================================*/

.matrix-content,
.auth-content{

    flex:1;
}

.matrix-content h3, .auth-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    line-height: 38px;
}

.matrix-content p, .auth-content p {
    color: #000;
    font-size: 16px;
    line-height: 26px;
}
/*=========================================
    Store Buttons
=========================================*/

.store-buttons{

    display:flex;

    gap:12px;

    flex-wrap:wrap;
}

.store-buttons a{

    transition:.35s ease;
}



.store-buttons img{

    height:48px;

    display:block;
}

/*=========================================
    QR Code
=========================================*/

.qr-code{

    width:110px;
    height:110px;

    border:1px solid #67c46a;

    border-radius:8px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    transition:.35s ease;
}

.qr-code img{
    width:90px;
}

.auth-box:hover .qr-code{

    box-shadow:0 12px 25px rgba(0,0,0,.12);

    transform:translateY(-3px);
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:991px){

.matrix-wrapper::after{

    display:none;
}

.matrix-box,
.auth-box{

    flex-direction:column;

    align-items:flex-start;

    text-align:left;
}

.qr-code{

    margin-top:15px;
}

}

@media(max-width:767px){
.auth-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 0;
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
.matrix-wrapper{

    padding:25px;
}
.matrix-box, .auth-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}
.matrix-content h3,
.auth-content h3{

    font-size:24px;
}
.matrix-content, .auth-content {
        width: 100%;
        text-align: center;
    }
.matrix-icon, .auth-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

.matrix-icon img,
.auth-icon img{

    max-width:40px;
}

.store-buttons {
    flex-direction: row;
    justify-content: center;
}

.store-buttons img{

    height:42px;
}

    .qr-code {
        width: 95px;
        height: 95px;
        margin: 0 auto;
    }

.qr-code img{

    width:72px;
}

}


/*=========================================
    MANUFACTURING SECTION
=========================================*/

.manufacturing-section{
    overflow: hidden;
}

.manufacturing-image{
    overflow:hidden;
    border-radius:4px;
}

.manufacturing-image picture{
    display:block;
}

.manufacturing-image img{
    width:100%;
    display:block;
    transition:1.2s ease;
    object-fit:cover;
}

.manufacturing-image:hover img{
    transform:scale(1.05);
}

/*=========================================
    Right Content
=========================================*/

.manufacturing-content{
}

.manufacturing-content .section-tag{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#2d2b78;
}

.manufacturing-content h2 {
    font-size: 36px;
    line-height: 45.2px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 25px;
}

/*=========================================
    Feature Box
=========================================*/

.feature-box{
    height:100%;
    transition:.35s ease;
}

.feature-icon{
    width:58px;
    height:58px;
    margin-bottom:10px;
}

.feature-icon picture{
    display:block;
}

.feature-icon img{
    width:100%;
    transition:.35s ease;
}

.feature-box h4{
    font-size:21px;
    font-weight:500;
    color:#222;
    line-height:1.35;
    margin-bottom:12px;
}

.feature-box p {
    font-size: 14px;
    line-height: 21.68px;
    color: #979797;
    margin: 0;
}

/*=========================================
    Hover
=========================================*/

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box:hover .feature-icon img{
    transform:scale(1.12) rotate(5deg);
}

.feature-box:hover h4{
    color:#2d2b78;
}

/*=========================================
    Button
=========================================*/

.manufacturing-content .btn {
    margin-top: 0px !important;
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:1199px){

.manufacturing-content h2{
    font-size:42px;
}

.feature-box h4{
    font-size:18px;
}

}

@media(max-width:991px){

.manufacturing-content{
    max-width:100%;
    margin-left:0;

}

.manufacturing-content h2{
    font-size:38px;
    margin-bottom:35px;
}

.manufacturing-image{
    margin-bottom:20px;
}

}

@media(max-width:767px){

.manufacturing-section{
    padding:60px 0;

        text-align: center;
}

.manufacturing-content .section-tag{
    letter-spacing:3px;
}

.manufacturing-content h2{
    font-size:30px;
}

.feature-box{
    text-align:center;
}

.feature-icon{
    margin:0 auto 18px;
}

.feature-box h4{
    font-size:18px;
}

.feature-box p{
    font-size:14px;
}

.manufacturing-content .btn{
    width:100%;
}

}

.feature-box {
    margin-bottom: 30px;
    border-radius: 8px;
    transition: all .4s ease;
}

/*=========================================
    CERTIFICATION SECTION
=========================================*/

.certification-section{
    background:#f8f6f3;
}




/*=========================================
    Card
=========================================*/

.certificate-card{

    background:#fff;

    height:150px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

    text-decoration:none;

    border:1px solid #ececec;

    transition:.4s ease;

    overflow:hidden;
}

.certificate-card picture{

    display:block;

    width:100%;
}

.certificate-card img{

    max-width:100%;

    max-height:90px;

    display:block;

    margin:auto;

    transition:.45s ease;
}

/*=========================================
    Hover
=========================================*/

.certificate-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    border-color:#59c55a;
}

.certificate-card:hover img{

    transform:scale(1.08);
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:1199px){

.section-heading h2{

    font-size:40px;
}

}

@media(max-width:991px){

.certificate-card{

    height:140px;
}

}

@media(max-width:767px){

.certification-section{

    padding:60px 0;
}

.section-heading{

    margin-bottom:30px;
}

.section-heading .section-tag{

    letter-spacing:3px;
}

.section-heading h2{
    line-height: 34px;
    font-size:28px;
}

.certificate-card{

    height:120px;

    padding:15px;
}

.certificate-card img{

    max-height:70px;
}

}

/**/

/*=========================================
    AWARDS SECTION
=========================================*/

.awards-section{
    overflow:hidden;
}





/*=========================================
    Slider
=========================================*/

.awardsSlider{
    overflow:visible;
}

.awardsSlider .swiper-slide{
    height:auto;
}

/*=========================================
    Card
=========================================*/

.award-card{
    display:block;
    background:#fff;
    padding:35px 45px;
    text-decoration:none;
    height:100%;
    min-height:418px;
    transition:.45s ease;
}

.award-image{
    width:120px;
    height:120px;
    overflow:hidden;
    margin-bottom:40px;
}

.award-image picture{
    display:block;
    width:100%;
    height:100%;
}

.award-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}

.award-content{
    max-width:230px;
}

.award-year{
    display:block;
    color:#4bb64d;
    font-size:12px;
    margin-bottom:10px;
}

.award-content h3 {
    font-size: 24px;
    line-height: 27.5px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

/*=========================================
    Hover
=========================================*/

.award-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.award-card:hover .award-image img{
    transform:scale(1.08);
}

/*=========================================
    Footer
=========================================*/

.awards-footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    margin-top:45px;
}

/*=========================================
    Pagination
=========================================*/

.awards-pagination{
    display:flex;
    align-items:center;
    gap:18px;
    width:auto !important;
    position:relative !important;
    margin-top: 14px;
}

.awards-pagination .swiper-pagination-bullet{
    width:8px;
    height:8px;
    background:#bdbdbd;
    opacity:1;
    border-radius:50%;
    position:relative;
    transition:.35s;
}

.awards-pagination .swiper-pagination-bullet-active{
    width:46px;
    background:transparent;
}

.awards-pagination .swiper-pagination-bullet-active::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#43c648;
    transform:translateY(-50%);
}

.awards-pagination .swiper-pagination-bullet-active::after{
    content:"";
    position:absolute;
    left:10px;
    top:50%;
    width:34px;
    height:2px;
    background:#43c648;
    transform:translateY(-50%);
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:1199px){

.awards-section h2{
    font-size:40px;
}

.award-content h3{
    font-size:32px;
}

}

@media(max-width:991px){

.award-card{
    min-height:390px;
}

.award-image{
    width:105px;
    height:105px;
}

.award-content h3{
    font-size:28px;
}

}

@media(max-width:767px){

.awards-section{
    padding:60px 0;
}

.awards-section .section-heading{
    margin-bottom:35px;
}

.awards-section .section-tag{
    letter-spacing:3px;
}

.awards-section h2{
    font-size:28px;
}

.award-card{
    min-height:340px;
    padding:20px;
}

.award-image{
    width:90px;
    height:90px;
    margin-bottom:22px;
}

.award-content{
    max-width:100%;
}

.award-content h3{
    font-size:22px;
    line-height:1.3;
}

.awards-footer{
    flex-direction:column;
    gap:20px;
}

.awards-footer .btn{
    width:180px;
}

}


/*=========================================
    TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
    background:#f8f6f3;
    overflow:hidden;
}

.testimonial-section .section-heading{
    margin-bottom:15px;
}




/*=========================================
    Slider
=========================================*/

.testimonialSlider{
    overflow:visible;
}

.testimonialSlider .swiper-slide{
    height:auto;
}

/*=========================================
    Card
=========================================*/

.testimonial-card{
    background:#fff;
    padding:34px;
    min-height:500px;
    height:100%;
    transition:.45s ease;
    border-right:1px solid #ececec;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/*=========================================
    Header
=========================================*/

.testimonial-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:42px;
}

.testimonial-user{
    width:70px;
    height:70px;
    overflow:hidden;
    flex-shrink:0;
}

.testimonial-user picture{
    display:block;
    width:100%;
    height:100%;
}

.testimonial-user img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.testimonial-card:hover .testimonial-user img{
    transform:scale(1.08);
}

.testimonial-info{
    flex:1;
}

.testimonial-info h3{
    font-size:30px;
    font-weight:300;
    color:#000000;
    margin-bottom:8px;
}

.testimonial-info span{
    display:block;
    font-size:16px;
    color:#000000;
    line-height:20px;
}

/*=========================================
    Body
=========================================*/

.testimonial-body{
    margin-bottom:45px;
}

.testimonial-body p {
    margin: 0;
    font-size: 20px;
    line-height: 30.2px;
    color: #000000;
    font-weight: 400;
}

/*=========================================
    Footer
=========================================*/

.testimonial-footer{
    margin-top:auto;
}

.play-btn{
    width:42px;
    height:42px;
    background:#48bf4d;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    text-decoration:none;
    transition:.35s ease;
}

.play-btn:hover{
    background:#2d2b78;
    color:#fff;
    transform:translateY(-3px);
}

/*=========================================
    Bottom
=========================================*/

.testimonial-footer-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    margin-top:45px;
}

/*=========================================
    Pagination
=========================================*/

.testimonial-pagination {
    position: relative !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
}

.testimonial-pagination .swiper-pagination-bullet{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#bdbdbd;
    opacity:1;
    position:relative;
    transition:.35s;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    width:46px;
    background:transparent;
}

.testimonial-pagination .swiper-pagination-bullet-active::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#45c64a;
    transform:translateY(-50%);
}

.testimonial-pagination .swiper-pagination-bullet-active::after{
    content:"";
    position:absolute;
    left:10px;
    top:50%;
    width:34px;
    height:2px;
    background:#45c64a;
    transform:translateY(-50%);
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:1199px){

.testimonial-section h2{
    font-size:40px;
}

.testimonial-card{
    min-height:460px;
}

.testimonial-body p{
    font-size:16px;
}

}

@media(max-width:991px){

.testimonial-card{
    min-height:420px;
    padding:28px;
}

.testimonial-header{
    margin-bottom:28px;
}

.testimonial-user{
    width:60px;
    height:60px;
}

.testimonial-info h3{
    font-size:20px;
}



}

@media(max-width:767px){

.testimonial-section{
    padding:60px 0;
}

.testimonial-section .section-heading{
    margin-bottom:35px;
}

.testimonial-section .section-tag{
    letter-spacing:3px;
}

.testimonial-section h2{
    font-size:28px;
}

.testimonial-card{
    min-height:auto;
    padding:22px;
}

.testimonial-header{
    gap:15px;
}

.testimonial-user{
    width:55px;
    height:55px;
}

.testimonial-info h3{
    font-size:18px;
}


.testimonial-body{
    margin-bottom:30px;
}



.testimonial-footer-wrapper{
    flex-direction:column;
    gap:20px;
}

.testimonial-footer-wrapper .btn{
    width:180px;
}

}

/**/

.knowledge-section{
overflow:hidden;
}

.knowledge-section .section-heading{
margin-bottom:20px;
}



.knowledgeSlider{
overflow:visible;
}

.knowledgeSlider .swiper-slide{
height:auto;
}

.knowledge-card{
display:block;
background:none;
text-decoration:none;
height:100%;
transition:.45s ease;
}

.knowledge-card:hover{
transform:translateY(-8px);
}


.knowledge-card a{
    text-decoration: none;
}

.knowledge-image{
display:block;
position:relative;
overflow:hidden;
}

.knowledge-image picture{
display:block;
}

.knowledge-image img{
width:100%;
object-fit:cover;
transition:.8s ease;
}

.knowledge-card:hover .knowledge-image img{
transform:scale(1.08);
}

.category-tag{
position:absolute;
left:12px;
bottom:12px;
background:#47bf4b;
color:#fff;
font-size:11px;
font-weight:500;
padding:5px 10px;
line-height:1;
}

.knowledge-content{
padding:18px 0 0;
}

.post-meta{
display:flex;
align-items:center;
gap:18px;
margin-bottom:14px;
}

.post-meta span{
font-size:14px;
color:#45B249;
position:relative;
}

.post-meta span:first-child::after {
    content: "|";
    position: absolute;
    right: -7px;
    top: 0;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #bdbdbd;
    transform: translateY(-50%);
}

.knowledge-content h3{
margin:0 0 18px;
font-size:24px;
font-weight:400;
line-height:27.5px;
color: #000000;
}

.knowledge-content h3 a{
color:#222;
text-decoration:none;
transition:.3s;
}

.knowledge-card:hover h3 a{
color:#2d2b78;
}

.read-more{
display:inline-flex;
align-items:center;
gap:6px;
font-size:13px;
color:#48bf4d;
text-decoration:none;
transition:.35s ease;
}

.read-more:hover{
gap:10px;
color:#2d2b78;
}

.knowledge-footer{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
margin-top:45px;
}

.knowledge-pagination{
position:relative!important;
width:auto!important;
display:flex;
align-items:center;
gap:18px;
margin-top: 14px;
}

.knowledge-pagination .swiper-pagination-bullet{
width:8px;
height:8px;
background:#bdbdbd;
opacity:1;
border-radius:50%;
position:relative;
transition:.35s;
}

.knowledge-pagination .swiper-pagination-bullet-active{
width:46px;
background:transparent;
}

.knowledge-pagination .swiper-pagination-bullet-active::before{
content:"";
position:absolute;
left:0;
top:50%;
width:8px;
height:8px;
border-radius:50%;
background:#43c648;
transform:translateY(-50%);
}

.knowledge-pagination .swiper-pagination-bullet-active::after{
content:"";
position:absolute;
left:10px;
top:50%;
width:34px;
height:2px;
background:#43c648;
transform:translateY(-50%);
}

@media(max-width:1199px){

.knowledge-section h2{
font-size:40px;
}

.knowledge-image img{
height:220px;
}

}

@media(max-width:991px){

.knowledge-image img{
height:200px;
}

.knowledge-content h3{
font-size:17px;
}

}

@media(max-width:767px){

.knowledge-section{
padding:60px 0;
}

.knowledge-section .section-heading{
margin-bottom:35px;
}

.knowledge-section .section-tag{
letter-spacing:3px;
}

.knowledge-section h2{
font-size:28px;
}

.knowledge-image img{
height:220px;
}

.knowledge-content{
padding-top:16px;
}

.post-meta{
gap:14px;
margin-bottom:12px;
}

.post-meta span{
font-size:11px;
}

.knowledge-content h3{
font-size:17px;
line-height:1.5;
margin-bottom:15px;
}

.read-more{
font-size:12px;
}

.knowledge-footer{
flex-direction:column;
gap:20px;
}

.knowledge-footer .btn{
width:180px;
}

}


/**/

.design-space-section .section-heading{
    margin-bottom: 20px;
}


.design-card{
    display:block;
    position:relative;
    overflow:hidden;
    text-decoration:none;
    isolation:isolate;
}

.design-card picture{
    display:block;
}

.design-card img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:1s cubic-bezier(.22,.61,.36,1);
}

/* Dark Overlay */

.design-card::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,0));

    opacity:0;

    transition:.6s;
}

/* Glass Effect */

.design-overlay{

    position:absolute;

    left:20px;
    right:20px;
    bottom:20px;

    padding:18px 22px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-radius:14px;

    color:#fff;

    transform:translateY(40px);

    opacity:0;

    transition:.55s cubic-bezier(.22,.61,.36,1);
}

.design-overlay span{

    font-size:20px;

    font-weight:500;

    letter-spacing:.5px;
}

/* Shine */

.design-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:20%;

    height:250%;

    background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.45),
    transparent);

    transform:rotate(25deg);

    transition:0.7s;
}

/* Hover */

.design-card:hover img{

    transform:scale(1.12);
}

.design-card:hover::before{

    opacity:1;
}

.design-card:hover .design-overlay{

    opacity:1;

    transform:translateY(0);
}

.design-card:hover::after{

    left:140%;
}

/* Mobile */

@media(max-width:767px){

.design-space-section h2{

    font-size:30px;
}

.design-overlay{

    left:15px;
    right:15px;
    bottom:15px;

    padding:14px 18px;
}

.design-overlay span{

    font-size:16px;
}

}

/**/

/*=========================================
    FAQ SECTION
=========================================*/

.faq-section{
    background:#f8f6f3;
}

.faq-wrapper{
    max-width:980px;
    margin:auto;
}

.faq-section .section-heading{
    margin-bottom:45px;
}
.faqs-bg {
    background: #FFFFFF;
    padding: 50px 0;
}

/*=========================================
    FAQ Item
=========================================*/

.faq-item {
    background: #fff;
    border: 1px solid #DDDDDD;
    margin-bottom: 14px;
    border-radius: 6px;
    overflow: hidden;
    transition: .4s ease;
}

.faq-item.active{
    border-color:transparent;
    box-shadow: 0px 4px 34px 0px #00000026;
}

/*=========================================
    Header
=========================================*/

.faq-header{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 28px;
    cursor:pointer;
    user-select:none;
    transition:.35s ease;
}

.faq-header:hover{
    background:#fafafa;
}

.faq-icon{
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:600;
    color:#000;
    transition:.35s ease;
    flex-shrink:0;
}
.faq-item.active .faq-header {
    padding-bottom: 10px;
}
.faq-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    transition: .35s ease;
}

.faq-item.active .faq-header h3{
    color:#45B249;
}

.faq-item.active .faq-icon{
    color:#45B249;
    transform:rotate(180deg);
}

/*=========================================
    Body
=========================================*/

.faq-body{
    max-height:0;
    overflow:hidden;
    transition:max-height .55s ease;
}

.faq-content{
    padding:0 68px 28px;
}

.faq-content p {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 26.6px;
}

/*=========================================
    Open State
=========================================*/

.faq-item.active .faq-body{
    max-height:300px;
}

/*=========================================
    Hover
=========================================*/

.faq-item:hover{
    box-shadow:0px 4px 34px 0px #00000026;
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:991px){

.faq-section h2{
    font-size:38px;
}

.faq-header{
    padding:20px;
}

.faq-content{
    padding:0 60px 24px;
}

.faq-header h3{
    font-size:19px;
}

}

@media(max-width:767px){

.faq-section{
    padding:60px 0;
}

.faq-section .section-heading{
    margin-bottom:30px;
}
.faqs-bg {
    padding: 20px 10px 20px;
}
.faq-section h2{
    font-size:28px;
    line-height:1.3;
}

.faq-header{
    gap:12px;
    padding:18px;
}

.faq-icon{
    width:18px;
    height:18px;
    font-size:20px;
}

.faq-header h3{
    font-size:16px;
    line-height:1.5;
}

.faq-content{
    padding:0 18px 20px 48px;
}

.faq-content p{
    font-size:14px;
    line-height:1.8;
}

}

/**/

/*=========================================
    CONTACT SECTION
=========================================*/

.contact-section{
    overflow: hidden;
}

.contact-left{
padding-right:40px;
}



/*=========================================
    Contact Card
=========================================*/

.contact-info{
display:flex;
align-items:center;
gap:18px;
padding:22px;
background:#fff;
margin-bottom:12px;
transition:.4s ease;
border:1px solid #efefef;
}

.contact-info:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,0,0,.07);
}

.contact-icon {
    border-radius: 50%;
    background: #E8EEF8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img{
transition:.35s;
}
.contact-content h4 a {
    text-decoration: none;
    color: #000;
    font-size: 16.56px;
    margin-bottom: 5px;
    display: block;
}
.contact-info:hover .contact-icon img{
transform:scale(1.15);
}

.contact-content h4 {
    margin: 0;
    font-size: 16.56px;
    font-weight: 400;
    color: #000000;
}

.contact-content p {
    margin: 0;
    font-size: 13.55px;
    color: #979797;
}

/*=========================================
    Form
=========================================*/

.contact-form-wrapper h3{
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:18px;
    color:#111;
}

.form-group{
    position:relative;
}
.contact-form-wrapper .form-control, .contact-form-wrapper .form-select {
    height: 54px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    box-shadow: none;
    font-size: 15px;
    padding: 0 18px;
    transition: .35s;
    background: none;
    color: #000000;
}

.contact-form-wrapper textarea.form-control{
    height:120px;
    padding:16px 18px;
    resize:none;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus{
    border-color:#47bf4b;
    box-shadow:none;
}

/*=========================================
    Validation
=========================================*/

.form-control.error,
.form-select.error{
    border-color:#dc3545;
}

.form-control.success,
.form-select.success{
    border-color:#47bf4b;
}


.error-message {
    display: block;
    min-height: 18px;
    font-size: 12px;
    color: #c11111;
    margin-top: 6px;
    padding: 0;
    position: absolute;
    bottom: -19px;
    border-radius: 5px;
    z-index: 999;
}


/*=========================================
    Button
=========================================*/

.contact-form-wrapper .btn{
    margin-top:8px;
    min-width:170px;
}

/*=========================================
    Placeholder
=========================================*/

.contact-form-wrapper .form-control::placeholder{
    color:#000;
}

.contact-form-wrapper textarea::placeholder{
    color:#000;
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:1199px){

.contact-left h2{
    font-size:44px;
}

}

@media(max-width:991px){

.contact-left{
    padding-right:0;
    margin-bottom:20px;
}

.contact-left h2{
    font-size:38px;
    margin-bottom:30px;
}

.contact-form-wrapper{
    margin-top:15px;
}

}

@media(max-width:767px){
.content h4 {
    font-size: 16px;
}
.contact-section{
    padding:60px 0;
}

.contact-left h2 {
        font-size: 28px;
        line-height: normal;
        text-align: center;
    }

.contact-info{
    padding:18px;
}

.contact-icon{
    width:46px;
    height:46px;
}

.contact-content h4{
    font-size:16px;
}

.contact-content p{
    font-size:12px;
}

.contact-form-wrapper h3{
    font-size:16px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select{
    height:50px;
    font-size:14px;
}

.contact-form-wrapper textarea.form-control{
    height:110px;
}

.contact-form-wrapper .btn {
        width: auto;
        margin: 0 auto;
        display: flex;
    }

}


/**/

/*=========================================
    FOOTER
=========================================*/

.footer{
background:#49b848;
padding:45px 0 20px;
color:#fff;
overflow:hidden;
}

.footer a{
color:#fff;
text-decoration:none;
transition:.35s ease;
}

.footer img{
max-width:100%;
display:block;
}

.footer-logo{
display:inline-block;
margin-bottom:18px;
}

.footer-about{
max-width:240px;
}

.footer-about h5{
font-size:14px;
font-weight:600;
letter-spacing:2px;
margin-bottom:10px;
text-transform:uppercase;
}

.footer-about p{
font-size:13px;
line-height:1.7;
color:rgba(255,255,255,.85);
margin:0;
}

/*=========================================
    Widget
=========================================*/

.footer-widget h4 {
    font-size: 12.55px;
    font-weight: 700;
    letter-spacing: 1.36px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-widget.catalogue-widget {
    margin-left: -24px;
}
.footer-widget ul{
margin:0;
padding:0;
list-style:none;
}

.footer-widget ul li{
margin-bottom:8px;
}

.footer-widget ul li:last-child{
margin-bottom:0;
}

.footer-widget ul li a{
display:inline-block;
font-size:13px;
color:rgba(255,255,255,.85);
position:relative;
padding-bottom:2px;
}

.footer-widget ul li a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:1px;
background:#fff;
transition:.35s ease;
}

.footer-widget ul li a:hover{
color:#fff;
transform:translateX(5px);
}

.footer-widget ul li a:hover::after{
width:100%;
}

/*=========================================
    Middle
=========================================*/

.footer-middle {
    margin-top: 0px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social{
display:flex;
align-items:center;
gap:24px;
}



.footer-social a:hover{
transform:translateY(-4px);
}

.footer-links{
display:flex;
align-items:center;
gap:22px;
flex-wrap:wrap;
}

.footer-links a{
font-size:13px;
color:rgba(255,255,255,.9);
position:relative;
}

.footer-links a::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0;
height:1px;
background:#fff;
transition:.35s;
}

.footer-links a:hover::after{
width:100%;
}

/*=========================================
    Bottom
=========================================*/

.footer-bottom{
padding-top:18px;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.footer-bottom p{
margin:0;
font-size:12px;
color:rgba(255,255,255,.9);
}

.footer-bottom a{
font-weight:600;
}

.footer-bottom a:hover{
text-decoration:underline;
}

/*=========================================
    Responsive
=========================================*/

@media(max-width:1199px){

.footer .row>div{
margin-bottom:30px;
}

}

@media(max-width:991px){

.footer{
padding:40px 0 20px;
}

    .footer-about {
        max-width: 100%;
        text-align: center;
    }

.footer-middle{
justify-content:center;
text-align:center;
}

.footer-links{
justify-content:center;
}

.footer-bottom{
justify-content:center;
text-align:center;
}

}

@media(max-width:767px){
.g-5, .gy-5 {
    --bs-gutter-y: 0;
}
h1 {
    font-size: 30px;
    line-height: 34.2px;
}


.footer{
padding:35px 0 20px;
}

.footer-widget {
        /* margin-top: 0px; */
        text-align: center;
    }
.footer-widget.catalogue-widget {
    margin-left: 0;
}
.footer-widget h4 {
    margin-bottom: 2px;
}

.footer-widget ul li{
margin-bottom:6px;
}

.footer-social{
justify-content:center;
width:100%;
}

.footer-links{
gap:14px;
}

.footer-links a{
font-size:12px;
}

.footer-bottom p{
width:100%;
text-align:center;
}

}
@media (max-width:991px){
    .section-space{
        padding:70px 0 !important;
    }
}

@media (max-width:767px){
    .section-space{
        padding:30px 0 !important;
    }
}


/**/


.blog-breadcrumb{
    margin-bottom:10px;
    margin-top: 20px;
}

.blog-breadcrumb .breadcrumb{
    background:none;
    padding:0;
    margin:0;
}

.blog-breadcrumb .breadcrumb-item{
    font-size:14px;
    color:#979797;
}

.blog-breadcrumb .breadcrumb-item a{
    color:#979797;
    text-decoration:none;
    transition:.3s;
}

.blog-breadcrumb .breadcrumb-item a:hover{
    color:#49b848;
}
.blog-breadcrumb .breadcrumb-item.active {
    color: #29256A;
    font-weight: 400;
}

.blog-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #b5b5b5;
    margin-top: 1px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, ">");
}
/*=========================================
    FILTERS
=========================================*/
.blog-page{
    position:relative;
}

.blog-filter{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:15px;
}

.filter-btn{
    min-width:110px;
    height:42px;
    padding:0 18px;
    border:1px solid #d8d8d8;
    border-radius:6px;
    background:#fff;
    color:#444;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:.3s ease;
}

.filter-btn:hover{
    border-color:#2d2b78;
    color:#2d2b78;
}

.filter-btn.active{
    background:#2d2b78;
    border-color:#2d2b78;
    color:#fff;
}

/*=========================================
    BLOG GRID
=========================================*/

.blog-grid{
    margin-top:0;
}

.blog-item{
    transition:.35s ease;
}

/*=========================================
    BLOG CARD
=========================================*/

.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.35s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-image{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.blog-image img{
    width:100%;
    height:290px;
    object-fit:cover;
    display:block;
    transition:.7s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/*=========================================
    IMAGE OVERLAY
=========================================*/

.blog-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.35),
    rgba(0,0,0,0));
    opacity:0;
    transition:.4s;
    z-index:2;
}

.blog-card:hover .blog-image::before{
    opacity:1;
}

.blog-image::after{
    content:"";
    position:absolute;
    top:-150%;
    left:-45%;
    width:35%;
    height:280%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:rotate(25deg);
    transition:1s;
    z-index:3;
}

.blog-card:hover .blog-image::after{
    left:140%;
}

/*=========================================
    TAG
=========================================*/

.blog-tag{
    position:absolute;
    left:18px;
    top:18px;
    background:#49B848;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    z-index:5;
}

/*=========================================
    CONTENT
=========================================*/

.blog-content{
    padding-top:22px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: #45B249;
    font-size: 10px;
}
.read-more-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: #45B249;
    font-size: 10px;
}

.blog-content h3{
    margin:0 0 18px;
    font-size:26px;
    line-height:1.35;
    font-weight:500;
}

.blog-content h3 a{
    color:#1d1d1d;
    text-decoration:none;
    transition:.3s;
}

.blog-card:hover h3 a{
    color:#2D2B78;
}

/*=========================================
    READ MORE
=========================================*/

.read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#2D2B78;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.read-more::after{
    content:"→";
    transition:.3s;
}

.read-more:hover{
    color:#49B848;
}

.read-more:hover::after{
    transform:translateX(6px);
}

/*=========================================
    SIDEBAR
=========================================*/

.blog-sidebar{
    position:sticky;
    top:105px;
}

.sidebar-widget{
    margin-top:25px;
}

.sidebar-widget h4 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
}
.trending-list-text {
    width: 100%;
}

/*=========================================
    SEARCH
=========================================*/

.sidebar-search {
    position: relative;
    margin-top: 20px;
}

.sidebar-search input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    padding: 10px 55px 10px 48px;
    font-size: 15px;
    outline: none;
    transition: .3s;
    background: #fff;
    border: navajowhite;
}

.sidebar-search input:focus{
    border-color:#49B848;
}

.sidebar-search::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7d7d7d;
    background: url(../images/search.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

/*=========================================
    TRENDING
=========================================*/

.trending-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.trending-item{
    display:flex;
    gap:15px;
    text-decoration:none;
}
.trending-item picture {
    overflow: hidden;
    width: 240px;
}

.trending-item img {
    width: 100%;
    object-fit: cover;
    transition: .4s;
}

.trending-item:hover img{
    transform:scale(1.05);
}

.trending-item h5 {
    margin:5px 0 0;
    font-size: 14px;
    line-height: 17.5px;
    color: #000000;
    transition: .3s;
    font-weight: 400;
}

.trending-item:hover h5{
    color:#2D2B78;
}

/*=========================================
    RELATED PRODUCT
=========================================*/



.related-product img{
    width:100%;
    display:block;
}

.related-product h5 {
    margin: 0 0 10px;
    font-size: 16px;
    text-align: left;
    color: #000;
}
.related-product a.trending-item p {
    color: #000;
    font-size: 14px;
}
.sidebar-widget.related-product .btn.btn-primary {
    color: rgb(41, 37, 106);
    background: none;
}

.view-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    border-radius:8px;
    background:#2D2B78;
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}
.blog-page .knowledge-card {
    margin-bottom: 20px;
}
.view-btn:hover{
    background:#49B848;
    color:#fff;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1199px){

    .blog-content h3{
        font-size:22px;
    }

    .blog-image img{
        height:240px;
    }

    .trending-item img{
        width:95px;
        height:85px;
    }

}

@media(max-width:991px){

    .blog-sidebar{
        position:relative;
        top:auto;
        margin-top:60px;
    }

    .blog-filter{
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .blog-filter::-webkit-scrollbar{
        height:5px;
    }

    .blog-filter::-webkit-scrollbar-thumb{
        background:#49B848;
        border-radius:20px;
    }

}

@media(max-width:767px){

    .blog-page{
        padding:50px 0;
    }

    .blog-breadcrumb{
        margin-bottom:20px;
    }

    .blog-filter{
        gap:10px;
        margin-bottom:25px;
    }

    .filter-btn{
        white-space:nowrap;
        min-width:auto;
        padding:0 18px;
        font-size:13px;
    }

    .blog-content h3{
        font-size:20px;
    }

    .blog-image img{
        height:220px;
    }

    .sidebar-widget h4{
        font-size:22px;
    }

    .related-product h5{
        font-size:22px;
    }

}

/*=========================================
    BLOG ANIMATION
=========================================*/

@keyframes fadeBlog{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.no-result h4{
    font-size:32px;
    margin-bottom:10px;
    color:#1d1d1d;
}

.no-result p{
    color:#7a7a7a;
    margin:0;
}


/*=========================================
    STICKY FILTER
=========================================*/

.blog-filter-wrapper{

    position:sticky;

    top:86px; /* Header height */

    z-index:100;
background: #FBF7F4;

    padding:18px 0 2px;

    transition:.35s ease;

}

.blog-filter-wrapper.sticky{



}
.blog-page {
    padding-bottom: 60px;
}

/**/



/*=========================================
    PRODUCT BANNER
=========================================*/

.product-banner{
    width:100%;
    overflow:hidden;
    line-height:0;
}

.product-banner picture{
    display:block;
    width:100%;
    height:100%;
}

.product-banner img{
    display:block;
    width:100%;
    height:auto;
    min-height:300px;
    object-fit:cover;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:820px){

    .product-banner img{
        min-height:280px;
        object-fit:cover;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:480px){

    .product-banner img{
        min-height:220px;
        object-fit:cover;
    }

}

/*=========================================
    MDF INTRO SECTION
=========================================*/

.mdf-intro{
    padding:55px 0;
}

.mdf-intro-content{
    text-align:center;
}

.mdf-intro-content h2 {
    margin: 0 0 20px;
    color: #111;
    font-size: 36px;
    line-height: 38.2px;
    font-weight: 500;
    text-transform: uppercase;
}

.mdf-intro-content p {
    margin: 0 auto;
    color: #000000;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .mdf-intro{
        padding:45px 0;
    }

    .mdf-intro-content{
        max-width:90%;
    }

    .mdf-intro-content h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

.mdf-intro {
        padding: 10px 0;
    }

    .mdf-intro-content{
        max-width:100%;
    }

    .mdf-intro-content h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    

}


/*=========================================
    MDF PRODUCT CATEGORIES
=========================================*/
.mdf-intro-content a.btn.btn-primary {
    margin-top: 20px;
}
.mdf-categories{
    padding:0px 0 55px;
}

.mdf-categories-title{
    margin: 0 0 28px;
    text-align: center;
    font-size: 36px;
    line-height: 48.2px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
}


.mdf-category-card{
    min-width:0;
}

.mdf-category-image{
    width:100%;
    overflow:hidden;
}

.mdf-category-image picture{
    display:block;
    width:100%;
}

.mdf-category-image img{
    display:block;
    width:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.mdf-category-card:hover .mdf-category-image img{
    transform:scale(1.04);
}

.mdf-category-info{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:10px 0;
}

.mdf-category-logo {
    width: 200px;
    flex: 0 0 200px;
}

.mdf-category-logo img {
    display: block;
    height: max-content;
    object-fit: contain;
}

.mdf-category-text{
    flex:1;
    min-width:0;
}

.mdf-category-text h3 {
    margin: 0 0 7px;
    font-size: 30px;
    line-height: 37.2px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}


.mdf-discover-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:65px;
    height:26px;
    padding:0 12px;
    border-radius:4px;
    background:#29256a;
    color:#fff;
    font-size:9px;
    text-decoration:none;
    transition:all .3s ease;
}

.mdf-discover-btn:hover{
    background:#49b848;
    color:#fff;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .mdf-categories{
        padding:40px 0 45px;
    }

.mdf-categories-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 32px;
    }

    .mdf-category-image img{
        height:250px;
    }

.mdf-category-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    flex-direction: column;
}

    .mdf-category-logo{
        width:65px;
        flex-basis:65px;
    }

    .mdf-category-text h3{
        font-size:26px;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .mdf-categories{
        padding:35px 0 40px;
    }

.mdf-categories-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 32px;
    }


    .mdf-category-image img{
        height:auto;
        aspect-ratio:16 / 9;
    }

.mdf-category-info {
        padding-top: 10px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .mdf-category-logo {
        width: auto;
        flex-basis: 70px;
    }

    .mdf-category-text h3{
        font-size:26px;
    }



}

/*=========================================
    MDF BENEFITS
=========================================*/

.mdf-benefits{
    padding:0 0 65px;
    background:#faf8f6;
}

.mdf-benefits-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 36px;
    line-height: 48.2px;
    font-weight: 500;
    color: #000000;
}

.mdf-benefit-card{
    height:100%;
    min-height:147px;
    padding:35px 25px;
    background:#fff;
    text-align:center;
    transition:all .35s ease;
}

.mdf-benefit-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.07);
}

.mdf-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 9px;
}

.mdf-benefit-icon img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}

.mdf-benefit-card h3 {
    margin: 15px 0;
    font-size: 24px;
    line-height: 100%;
    font-weight: 400;
    color: #000000;
}

.mdf-benefit-card p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 21px;
    color: #000;
    font-weight: 400;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .mdf-benefits{
        padding:45px 0 50px;
    }

    .mdf-benefits-title{
        font-size:22px;
        margin-bottom:25px;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .mdf-benefits {
        padding: 40px 0 15px;
    }

    .mdf-benefits-title {
        font-size: 26px;
        margin-bottom: 22px;
        line-height: 32px;
    }

    .mdf-benefit-card{
        min-height:150px;
        padding:24px 20px;
    }

}

/*=========================================
    SIGNATURE PRELAM
=========================================*/

.signature-prelam-section{
    padding:0px 0;
    margin-bottom: 60px;
}
.signature-prelam-banner {
    min-height: 208px;
    background: #fff;
    overflow: hidden;
}

.signature-prelam-logo{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px 25px;
}

.signature-prelam-logo img {
    width: auto;
    max-width: 100%;
    height: 95px;
    display: block;
}

.signature-prelam-samples{
    height:208px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    overflow:hidden;
}

.signature-prelam-samples picture{
    display:block;
    height:100%;
}

.signature-prelam-samples img {
    width: auto;
    height: 208px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

.signature-prelam-content{
    padding:15px 25px;
}

.signature-prelam-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
}

.signature-prelam-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:56px;
    height:24px;
    padding:0 12px;
    background:#29256a;
    border-radius:4px;
    color:#fff;
    font-size:9px;
    text-decoration:none;
    transition:.3s ease;
}

.signature-prelam-btn:hover{
    background:#49b848;
    color:#fff;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .signature-prelam-section{
        padding:15px 0;
    margin-bottom: 10px;
    }

.signature-prelam-samples img {
        width: 100%;
    }

    .signature-prelam-content{
        padding:15px;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .signature-prelam-section{
        padding:30px 0;
    }

    .signature-prelam-banner{
        padding:20px 0;
    }

    .signature-prelam-logo{
        padding:10px 20px;
    }



 

.signature-prelam-samples img {
        width: 100%;
    }
    .signature-prelam-content{
        padding:15px 25px 5px;
        text-align:center;
    }

    .signature-prelam-content p{
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
    }

}

/*=========================================
    IMAGINATION SECTION
=========================================*/

.imagination-section{
    padding:45px 0 55px;
    background:#faf8f6;
}

/*=========================================
    MAIN HEADING
=========================================*/

.imagination-title{
    margin:0 0 10px;
    text-align:center;

    font-weight:500;
    font-size:36px;
    line-height:1.2;
    text-transform:uppercase;
    color:#000;
}

/*=========================================
    LOGO
=========================================*/

.imagination-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0;
}

.imagination-logo img {
    width: auto;
    max-width: 100%;
    height: 63px;
    display: block;
}

/*=========================================
    INTRO
=========================================*/

.imagination-intro{
    text-align:left;

    font-weight:400;
    font-size:16px;
    line-height:24px;
    color:#000;
}

/*=========================================
    MISSION / VISION ROW
=========================================*/

.imagination-mv-row{
    margin-top:28px;
}

/*=========================================
    MISSION / VISION BOX
=========================================*/

.imagination-mv-box{
    height:100%;
    padding:10px 55px 0;
    text-align:center;
}

.imagination-mv-row .col-lg-6 + .col-lg-6{
    border-left:1px solid #e2ded9;
}

/*=========================================
    ICON
=========================================*/

.imagination-mv-icon{
    width:auto;
    height:95px;
    margin:0 auto 12px;
}

.imagination-mv-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/*=========================================
    MISSION / VISION HEADING
=========================================*/

.imagination-mv-box h2{
    margin:0 0 10px;

    font-weight:500;
    font-size:36px;
    line-height:1.2;
    text-transform:uppercase;
    color:#000;
}

/*=========================================
    MISSION / VISION TEXT
=========================================*/

.imagination-mv-box p{
    max-width:470px;
    margin:0 auto;

    font-weight:400;
    font-size:16px;
    line-height:23px;
    color:#000;
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .imagination-section{
        padding:40px 0 45px;
    }

    .imagination-title{
        font-size:30px;
    }



    .imagination-mv-box{
        padding:10px 25px 0;
    }

    .imagination-mv-box h2{
        font-size:28px;
    }

    

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .imagination-section {
        padding: 35px 0 0px;
    }

    .imagination-title{
        font-size:24px;
        margin-bottom:8px;
    }

    .imagination-logo{
        margin-bottom:18px;
    }

.imagination-logo img {
        width: auto;
        height: 34px;
    }
body {
    padding-top: 65px;
}

    .imagination-intro{
        text-align:center;
    }

    .imagination-mv-row{
        margin-top:25px;
    }

    .imagination-mv-box{
        padding:15px 15px;
    }

    .imagination-mv-row .col-lg-6 + .col-lg-6{
        border-left:0;
        border-top:1px solid #e2ded9;
        margin-top:20px;
        padding-top:25px;
    }

    .imagination-mv-icon{
        width:55px;
        height:55px;
    }

    .imagination-mv-box h2{
        font-size:25px;
    }

  

}



/*=========================================
    BRAND PHILOSOPHY
=========================================*/

.brand-philosophy{
    padding:0 0 55px;
    background:#faf8f6;
}

.brand-philosophy-wrapper{
    padding:40px 35px;
    background:#fff;
}

/*=========================================
    IMAGE
=========================================*/

/*=========================================
    BRAND PHILOSOPHY IMAGE
=========================================*/

.brand-philosophy-image{
    width:100%;
    overflow:hidden;
}

.brand-philosophy-image picture{
    display:block;
    width:100%;
    overflow:hidden;
}

.brand-philosophy-image img{
    display:block;
    width:100%;
    object-fit:cover;

    transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/*=========================================
    IMAGE ZOOM HOVER
=========================================*/

.brand-philosophy-image:hover img{
    transform:scale(1.08);
}

/*=========================================
    CONTENT
=========================================*/

.brand-philosophy-content{
    margin:0 auto;
    text-align:center;
    padding:15px 30px;
}

/*=========================================
    H2
=========================================*/

.brand-philosophy-content h2{
    margin:0 0 22px;

    font-weight:500;
    font-size:36px;
    line-height:1.2;
    text-transform:uppercase;
    color:#000;
}

/*=========================================
    PARAGRAPH
=========================================*/

.brand-philosophy-content p{
    margin:0 auto 20px;

    font-weight:400;
    font-size:16px;
    line-height:24px;
    color:#000;
}

/*=========================================
    BUTTON
=========================================*/

.brand-philosophy-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:0 16px;

    background:#29256a;
    border-radius:4px;

    color:#fff;
    font-size:10px;
    font-weight:400;
    text-decoration:none;

    transition:all .3s ease;
}

.brand-philosophy-btn:hover{
    background:#49b848;
    color:#fff;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .brand-philosophy{
        padding:40px 0 45px;
    }

    .brand-philosophy-wrapper{
        padding:25px;
    }

    .brand-philosophy-image img{
        height:240px;
    }

    .brand-philosophy-content{
        padding:15px 10px;
    }

    .brand-philosophy-content h2{
        font-size:30px;
    }


}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .brand-philosophy{
        padding:5px 0 10px;
    }

    .brand-philosophy-wrapper{
        padding:20px 15px 30px;
    }

    .brand-philosophy-image{
        margin-bottom:25px;
    }

    .brand-philosophy-image img{
        height:auto;
        aspect-ratio:16 / 9;
    }

    .brand-philosophy-content{
        padding:0 5px;
    }

    .brand-philosophy-content h2{
        font-size:25px;
        margin-bottom:15px;
    }



}


/*=========================================
    QUICK LINKS SECTION
=========================================*/

.quick-links-section{
    padding:0 0 55px;
    overflow: hidden;
}

.quick-links-slider{
    width:100%;
    overflow:hidden;
}

.quick-links-slider .swiper-wrapper{
    display:flex;
}

.quick-links-slider .swiper-slide{
    height:auto;
}

/*=========================================
    CARD
=========================================*/

.quick-link-card{
    position:relative;
    display:block;
    width:100%;
    height:260px;
    overflow:hidden;
    text-decoration:none;
    background:#eee;
}

/*=========================================
    IMAGE
=========================================*/

.quick-link-card picture{
    display:block;
    width:100%;
    height:100%;
    overflow:hidden;
}

.quick-link-card img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;

    transition:
        transform .8s cubic-bezier(.22,.61,.36,1);
}

/*=========================================
    DARK OVERLAY
=========================================*/

.quick-link-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.08),
            rgba(0,0,0,.42)
        );

    opacity:.8;

    transition:
        opacity .4s ease;
    
    z-index:1;
}

/*=========================================
    CONTENT
=========================================*/

.quick-link-content{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;

    z-index:2;
}

.quick-link-content h3{
    margin:0;

    color:#fff;
    font-size:20px;
    line-height:1.2;
    font-weight:400;
    text-align:center;

    transition:
        transform .4s ease,
        letter-spacing .4s ease;
}

/*=========================================
    HOVER
=========================================*/

.quick-link-card:hover img{
    transform:scale(1.09);
}

.quick-link-card:hover .quick-link-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(41, 37, 106, .12), rgb(0 0 0 / 58%));
}
.quick-link-card:hover .quick-link-content h3{
    transform:translateY(-5px);
    letter-spacing:.5px;
}

/*=========================================
    LIGHT SWEEP
=========================================*/

.quick-link-card::after{
    content:"";

    position:absolute;

    top:-150%;
    left:-45%;

    width:30%;
    height:300%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:rotate(25deg);

    transition:
        left 1s ease;

    z-index:3;

    pointer-events:none;
}

.quick-link-card:hover::after{
    left:140%;
}

/*=========================================
    Pagination
=========================================*/

.quick-links-pagination {
    position: relative !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
}

.quick-links-pagination .swiper-pagination-bullet{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#bdbdbd;
    opacity:1;
    position:relative;
    transition:.35s;
}

.quick-links-pagination .swiper-pagination-bullet-active{
    width:46px;
    background:transparent;
}

.quick-links-pagination .swiper-pagination-bullet-active::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#45c64a;
    transform:translateY(-50%);
}

.quick-links-pagination .swiper-pagination-bullet-active::after{
    content:"";
    position:absolute;
    left:10px;
    top:50%;
    width:34px;
    height:2px;
    background:#45c64a;
    transform:translateY(-50%);
}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .quick-links-section{
        padding:35px 0 10px;
    }

    .quick-links-slider{
        overflow:visible;
    }

    .quick-links-slider .swiper-slide{
        width:76.923% !important;
    }

    .quick-link-card{
        height:220px;
    }

    .quick-link-content h3{
        font-size:18px;
    }

    .quick-links-pagination{
        position:relative;
        display:block;
        bottom:auto !important;
        margin-top:20px;
    }

}

/**/

/*=========================================
    INFRASTRUCTURE SECTION
=========================================*/

.infrastructure-section{
    padding:50px 0 60px;
}


/*=========================================
    HEADING
=========================================*/

.infrastructure-heading{
    text-align:center;
    margin-bottom:28px;
}

.infrastructure-heading h2{
    margin:0 0 35px;

    font-weight:500;
    font-size:36px;
    line-height:1.2;
    text-transform:uppercase;
    color:#000;
}

.infrastructure-heading h2 + h2{
    margin-top:0;
    margin-bottom:10px;
}



/*=========================================
    INFRASTRUCTURE LIST
=========================================*/

.infrastructure-list{
    margin-top:5px;
}


/*=========================================
    CARD
=========================================*/

.infrastructure-card{
    height:100%;
    padding:30px 15px;

    background:#fff;

    text-align:center;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.infrastructure-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}


/*=========================================
    ICON
=========================================*/

.infrastructure-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:15px;
}

.infrastructure-icon img{
    display:block;
    max-height:60px;
    height:auto;
    object-fit:contain;
}


/*=========================================
    CARD HEADING
=========================================*/

.infrastructure-card h3 {
    margin: 0 0 7px;
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
    color: #000;
}

/*=========================================
    CARD PARAGRAPH
=========================================*/

.infrastructure-card p{
    margin:0;

    font-weight:400;
    font-size:14px;
    line-height:21.68px;
    color:#979797;

}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .infrastructure-section{
        padding:45px 0 50px;
    }

    .infrastructure-heading h2{
        font-size:30px;
    }



    .infrastructure-card{
        padding:22px 15px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .infrastructure-section{
        padding:20px 0 5px;
    }

    .infrastructure-heading{
        margin-bottom:25px;
    }

    .infrastructure-heading h2{
        font-size:24px;
        line-height:1.2;
        margin-bottom:16px;
    }

    .infrastructure-heading h2 + h2{
        margin-bottom:12px;
    }

    
    .infrastructure-card{
        padding:22px 15px;
    }


 

}

/*=========================================
    PRODUCTION LINE SCROLL SECTION
=========================================*/

.production-line-section{
    position:relative;
    margin-bottom:60px;
}


/*=========================================
    STICKY AREA
=========================================*/

.production-sticky{
    position:sticky;

    top:0;

    height:100vh;

    min-height:600px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#faf8f6;
}


/*=========================================
    TITLE
=========================================*/

.production-line-title{
    margin:65px 0 33px;

    text-align:center;

    font-weight:500;
    font-size:36px;
    line-height:1.2;

    text-transform:uppercase;

    color:#000;
}


/*=========================================
    ROW
=========================================*/

.production-scroll-row{
    align-items:center;
}


/*=========================================
    LEFT FEATURES
=========================================*/

.production-features{
    padding-right:40px;
}


/*=========================================
    FEATURE
=========================================*/

.production-feature{
    display:flex;

    align-items:flex-start;

    padding:15px 0;

    opacity:.28;

    cursor:pointer;

    transform:translateX(0);

    transition:
        opacity .5s ease,
        transform .5s ease;
}


/*=========================================
    ACTIVE FEATURE
=========================================*/

.production-feature.active{
    opacity:1;

    transform:translateX(5px);
}


/*=========================================
    ICON
=========================================*/

.production-feature-icon{
    flex:0 0 auto;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-right:25px;
}

.production-feature-icon img{
    display:block;

    height:39px;
    width:auto;

    object-fit:contain;

    transition:
        transform .45s ease;
}


/* Active icon */

.production-feature.active
.production-feature-icon img{
    transform:scale(1.08);
}


/*=========================================
    CONTENT
=========================================*/

.production-feature-content{
    flex:1;

    min-width:0;
}


/*=========================================
    HEADING
=========================================*/

.production-feature-content h3{

    margin:0;

    font-size:24px;

    line-height:24px;

    font-weight:400;

    color:#000;

    transition:
        color .4s ease;
}


/*=========================================
    DESCRIPTION
=========================================*/

.production-feature-content p{

    margin:0;

    max-height:0;

    opacity:0;

    overflow:hidden;

    transform:translateY(-8px);

    font-weight:400;

    font-size:14px;

    line-height:18.7px;

    color:#000;

    transition:
        max-height .55s ease,
        opacity .4s ease,
        transform .45s ease,
        margin-top .45s ease;
}


/* Active description */

.production-feature.active
.production-feature-content p{

    max-height:100px;

    margin-top:5px;

    opacity:1;

    transform:translateY(0);
}


/*=========================================
    DESKTOP RIGHT IMAGE
=========================================*/

.production-desktop-image{
    display:block;
}

.production-image{
    position:relative;

    overflow:hidden;
}


/*=========================================
    DESKTOP IMAGE
=========================================*/

.production-image picture{

    display:block;

    overflow:hidden;
}

.production-image img{

    display:block;

    width:100%;

    height:auto;

    object-fit:cover;

    opacity:1;

    transform:scale(1);

    transition:
        opacity .45s ease,
        transform .7s cubic-bezier(.22,.61,.36,1);
}


/*=========================================
    IMAGE CHANGE
=========================================*/

.production-image.is-changing img{

    opacity:0;

    transform:scale(1.035);
}


/*=========================================
    IMAGE HOVER
=========================================*/

.production-image:hover img{

    transform:scale(1.04);
}


/*=========================================
    MOBILE IMAGE
=========================================*/

.production-mobile-image{

    display:none;
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .production-sticky{
        min-height:600px;
    }

    .production-line-title{

        font-size:30px;

        margin-bottom:28px;
    }

    .production-features{

        padding-right:20px;
    }

    .production-feature{

        padding:9px 0;
    }

    .production-feature-icon{

        margin-right:12px;
    }

    .production-feature-icon img{

        height:28px;
    }

    .production-feature-content h3{

        font-size:14px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .production-line-section{

        height:auto !important;

        margin-bottom:0;
    }


    /* Sticky disabled */

    .production-sticky{

        position:relative;

        top:auto;

        height:auto;

        min-height:0;

        display:block;

        overflow:visible;

        padding:40px 0 30px;
    }


    /* Title */

    .production-line-title{

        font-size:24px;

        line-height:1.2;

        margin:0 0 30px;
    }


    /* Features */

    .production-features{

        padding-right:0;
    }


    .production-feature{

        display:flex;

        align-items:flex-start;

        padding:18px 0;

        opacity:.35;

        transform:none;
    }


    .production-feature.active{

        opacity:1;

        transform:none;
    }


    /* Icon */

    .production-feature-icon{

        margin-right:12px;

        flex:0 0 auto;
    }

    .production-feature-icon img{

        height:27px;

        width:auto;
    }


    /* Heading */

    .production-feature-content h3{

        margin:0;

        font-size:18px;

        line-height:24px;

        font-weight:400;
    }


    /* Description */

    .production-feature-content p{

        margin:0;

        max-height:0;

        opacity:0;

        overflow:hidden;

        transform:translateY(-8px);



        transition:

            max-height .55s ease,

            opacity .45s ease,

            transform .45s ease,

            margin-top .45s ease;
    }


    .production-feature.active
    .production-feature-content p{

        max-height:100px;

        margin-top:7px;

        opacity:1;

        transform:translateY(0);
    }


    /* Mobile Image */

    .production-mobile-image{

        display:block;

        width:100%;

        margin-top:0;

        max-height:0;

        opacity:0;

        overflow:hidden;

        transform:translateY(15px);

        transition:

            max-height .7s ease,

            opacity .5s ease,

            transform .6s ease,

            margin-top .5s ease;
    }


    .production-mobile-image picture{

        display:block;

        width:100%;

        overflow:hidden;
    }


    .production-mobile-image img{

        display:block;

        width:100%;

        height:auto;

        object-fit:cover;

        transform:scale(1.03);

        transition:
            transform .8s cubic-bezier(.22,.61,.36,1);
    }


    /* Active mobile image */

    .production-feature.active
    .production-mobile-image{

        max-height:400px;

        margin-top:18px;

        opacity:1;

        transform:translateY(0);
    }


    .production-feature.active
    .production-mobile-image img{

        transform:scale(1);
    }


    /* Hide desktop image */

    .production-desktop-image{

        display:none;
    }

}


/*=========================================
    ENGINEERING PARTNERS
=========================================*/

.engineering-partners{
    padding:0 0 70px;
}


/*=========================================
    TITLE
=========================================*/

.engineering-partners-title{
    margin:0 0 30px;

    text-align:center;

    font-weight:500;
    font-size:36px;
    line-height:1.2;

    text-transform:uppercase;

    color:#000;
}


/*=========================================
    PARTNER CARD
=========================================*/

.engineering-partner-card{
    height:100%;

    text-align:center;

    transition:
        transform .35s ease;
}


/*=========================================
    LOGO BOX
=========================================*/

.engineering-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 15px 20px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}


/*=========================================
    LOGO
=========================================*/

.engineering-partner-logo img{
    display:block;

    max-width:100%;
    max-height:58px;

    width:auto;
    height:auto;

    object-fit:contain;

    transition:
        transform .5s ease;
}


/*=========================================
    HOVER
=========================================*/

.engineering-partner-card:hover
.engineering-partner-logo{
    transform:translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);
}

.engineering-partner-card:hover
.engineering-partner-logo img{
    transform:scale(1.05);
}


/*=========================================
    HEADING
=========================================*/

.engineering-partner-card h3 {
    margin: 10px 0px;
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    color: #000000;
}


/*=========================================
    DESCRIPTION
=========================================*/

.engineering-partner-card p {
    margin: 0 auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 18.7px;
    color: #979797;
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .engineering-partners{
        padding:45px 0 20px;
    }

    .engineering-partners-title{
        font-size:30px;
        margin-bottom:25px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){
    .engineering-partner-card h3{
        font-size: 20px;
    }
    .engineering-partners{
        padding:40px 0 50px;
    }

    .engineering-partners-title{
        font-size:24px;

        margin-bottom:25px;
    }

    .engineering-partner-card{
        padding:0 10px;
    }

    .engineering-partner-logo{
        min-height:80px;
    }

    .engineering-partner-logo img{
        max-height:52px;
    }




}


/*=========================================
    SIMILAR PRODUCTS
=========================================*/

.similar-products-section{
    padding:0 0 55px;
}


/*=========================================
    TITLE
=========================================*/

.similar-products-title{
    margin:0 0 25px;

    text-align:center;

    font-weight:500;
    font-size:36px;
    line-height:1.2;

    text-transform:uppercase;

    color:#000;
}


/*=========================================
    PRODUCT CARD
=========================================*/

.similar-product-card{
    height:100%;
}


/*=========================================
    IMAGE
=========================================*/

.similar-product-image{
    display:block;

    overflow:hidden;

    background:#fff;

    text-decoration:none;
}

.similar-product-image picture{
    display:block;

    overflow:hidden;
}

.similar-product-image img{
    display:block;

    width:100%;
    height:auto;

    aspect-ratio:1.35 / 1;

    object-fit:cover;

    transition:
        transform .7s cubic-bezier(.22,.61,.36,1);
}


/*=========================================
    IMAGE HOVER
=========================================*/

.similar-product-card:hover
.similar-product-image img{
    transform:scale(1.06);
}


/*=========================================
    PRODUCT INFO
=========================================*/

.similar-product-info{
    padding-top:10px;
}


/*=========================================
    PRODUCT NAME
=========================================*/

.similar-product-info h3 {
    margin: 10px 0 15px;
    font-size: 24px;
    line-height: 20.33px;
    font-weight: 400;
    color: #000000;
}


/*=========================================
    VIEW BUTTON
=========================================*/

.similar-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border: 1px solid #29256a;
    border-radius: 4px;
    background: transparent;
    color: #29256a;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}


/*=========================================
    BUTTON HOVER
=========================================*/

.similar-product-btn:hover{
    background:#29256a;

    color:#fff;

    transform:translateY(-2px);
}


/*=========================================
    BOTTOM CTA
=========================================*/

.similar-products-cta{
    margin-top:35px;

    padding:30px;

    text-align:center;

    background:#fff;
}


/*=========================================
    CTA TEXT
=========================================*/

.similar-products-cta p{
    margin:0 auto 15px;

    max-width:850px;

    font-weight:400;

    font-size:16px;
    line-height:24px;

    color:#000;
}


/*=========================================
    CTA BUTTON
=========================================*/

.similar-products-cta-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:7px 18px;

    border-radius:4px;

    background:#29256a;

    color:#fff;

    font-size:10px;
    line-height:1.4;

    text-decoration:none;

    transition:
        background .3s ease,
        transform .3s ease;
}


.similar-products-cta-btn:hover{
    background:#1f1c55;

    color:#fff;

    transform:translateY(-2px);
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .similar-products-section{
        padding:45px 0 50px;
    }

    .similar-products-title{
        font-size:30px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .similar-products-section{
        padding:0px 0 45px;
    }

    .similar-products-title{
        font-size:24px;

        margin-bottom:22px;
    }

    .similar-product-info{
        padding-top:8px;
        text-align: center;
    }



    .similar-products-cta{
        margin-top:25px;

        padding:18px 20px;
    }

}


/*=========================================
    CONTACT / LOCATION SECTION
=========================================*/

.contact-location-section{
    padding:5px 0 60px;
}


/*=========================================
    HEADING
=========================================*/

.contact-location-heading{
    text-align:center;
    margin-bottom:28px;
}

.contact-location-heading h2{
    margin:0 0 5px;

    font-weight:500;
    font-size:36px;
    line-height:1.2;

    text-transform:uppercase;

    color:#000;
}

.contact-location-heading p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}


/*=========================================
    LOCATION CARD
=========================================*/

.contact-location-card{
    position:relative;

    height:100%;

    padding:28px 30px 35px;

    background:#fff;

    min-height:185px;
}


/*=========================================
    CARD HEADING
=========================================*/

.contact-location-card h3 {
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 48.2px;
    color: #000;
}


/*=========================================
    DETAILS
=========================================*/

.contact-location-details{
    padding-right:130px;
}

.contact-detail{
    margin-bottom:15px;
}

.contact-detail:last-child{
    margin-bottom:0;
}


/*=========================================
    LABEL
=========================================*/
.contact-label {
    display: block;
    margin-bottom: 3px;
    font-weight: 400;
    font-size: 12px;
    line-height: 23px;
    text-transform: uppercase;
    color: #45B249;
}


/*=========================================
    DETAIL TEXT
=========================================*/

.contact-detail p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}


/*=========================================
    PHONE + EMAIL
=========================================*/

.contact-detail a{
    color:#000;

    text-decoration:none;

    transition:
        color .3s ease;
}

.contact-detail a:hover{
    color:#29256a;
}


/*=========================================
    MAP BUTTON
=========================================*/

.contact-map-btn {
    position: absolute;
    right: 20px;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #29256A;
    border-radius: 6.02px;
    background: #fff;
    color: #29256A;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.contact-map-btn img{
    width:12px;
    height:12px;

    object-fit:contain;

    transition:
        filter .3s ease;
}

.contact-map-btn:hover{
    background:#29256a;

    color:#fff;

    transform:translateY(-2px);
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .contact-location-section{
        padding:45px 0 50px;
    }

    .contact-location-heading h2{
        font-size:30px;
    }

    .contact-location-card{
        padding:25px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .contact-location-section{
        padding:40px 0 45px;
    }

    .contact-location-heading{
        margin-bottom:22px;
    }

    .contact-location-heading h2{
        font-size:24px;
    }

    .contact-location-heading p{
        font-size:11px;
        line-height:16px;
    }

    .contact-location-heading p br{
        display:none;
    }

    .contact-location-card{
        padding:22px 20px 65px;

        min-height:0;
    }

    .contact-location-card h3{
        font-size:17px;
    }

    .contact-location-details{
        padding-right:0;
    }

    .contact-detail p{
        font-size:11px;
        line-height:16px;
    }

    .contact-map-btn{
        right:20px;
        bottom:18px;
    }

}


/*=========================================
    REACH OUT SECTION
=========================================*/

.reach-out-section{
    padding:0px 0 55px;

    background:#faf8f6;
}


/*=========================================
    HEADING
=========================================*/

.reach-out-heading{
    text-align:center;

    margin-bottom:16px;
}

.reach-out-heading h2{
    margin:0;

    font-weight:500;

    font-size:36px;

    line-height:1.2;

    text-transform:uppercase;

    color:#000;
}


/*=========================================
    FORM
=========================================*/

.reach-out-form {
    max-width: 700px;
    margin: 0 auto;
}

/*=========================================
    FIELD
=========================================*/

.form-field{
    position:relative;
}


/*=========================================
    INPUT / SELECT / TEXTAREA
=========================================*/

.reach-out-form input, .reach-out-form select, .reach-out-form textarea {
    display: block;
    width: 100%;
    border: 1px solid #D8D0C0;
    border-radius: 5px;
    background: #fff0;
    color: #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 13.55px;
    line-height: 100%;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}


/* Input */

.reach-out-form input, .reach-out-form select {
    height: 42px;
    padding: 5px 14px;
}


/* Textarea */

.reach-out-form textarea {
    min-height: 40px;
    padding: 10px 13px;
    resize: none;
}


/*=========================================
    PLACEHOLDER
=========================================*/

.reach-out-form input::placeholder,
.reach-out-form textarea::placeholder{

    color:#333;

    opacity:1;
}


/*=========================================
    SELECT
=========================================*/

.reach-out-form select{

    appearance:none;

    -webkit-appearance:none;

    padding-right:55px;

    cursor:pointer;
}


.select-arrow {
    position: absolute;
    top: 24px;
    right: 10px;
    height: 42px;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: #45B249;
    font-size: 13.55px;
}


/*=========================================
    FOCUS
=========================================*/

.reach-out-form input:focus,
.reach-out-form select:focus,
.reach-out-form textarea:focus{

    border-color:#29256a;

    box-shadow:
        0 0 0 2px rgba(41,37,106,.06);
}


/*=========================================
    INVALID
=========================================*/

.reach-out-form
.form-field.invalid
input,

.reach-out-form
.form-field.invalid
select,

.reach-out-form
.form-field.invalid
textarea{

    border-color:#dc3545;
}


/*=========================================
    VALID
=========================================*/

.reach-out-form
.form-field.valid
input,

.reach-out-form
.form-field.valid
select,

.reach-out-form
.form-field.valid
textarea{

    border-color:#49b848;
}


/*=========================================
    ERROR MESSAGE
=========================================*/

.form-error{
    display:block;
    min-height:0;
    margin-top:3px;
    color:#dc3545;
    font-size:11px;
    line-height:11px;
    opacity:0;
    visibility:hidden;
    transition:opacity .2s ease;
}


/* Show error */

.form-field.invalid
.form-error{

    opacity:1;

    visibility:visible;
}


/*=========================================
    SUBMIT
=========================================*/

.reach-out-submit{

    display:flex;

    justify-content:center;

    margin-top:10px;
}


.reach-out-btn{

    border:0;

    border-radius:4px;

    padding:6px 18px;

    background:#29256a;

    color:#fff;

    font-family:inherit;

    font-size:9px;

    line-height:14px;

    cursor:pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}


.reach-out-btn:hover{

    background:#1f1c55;

    transform:translateY(-2px);
}


.reach-out-btn:active{

    transform:translateY(0);
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .reach-out-heading h2{
        font-size:30px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .reach-out-section{

        padding:40px 0 45px;
    }


    .reach-out-heading{

        margin-bottom:20px;
    }


    .reach-out-heading h2{

        font-size:24px;
    }


    .reach-out-form{

        max-width:100%;

        padding:0 15px;
    }


    .reach-out-form input,
    .reach-out-form select{

        height:40px;

        font-size:11px;
    }


    .reach-out-form textarea{

        min-height:80px;

        font-size:11px;
    }


    .select-arrow{

        height:40px;

        font-size:9px;
    }


    .reach-out-submit{

        margin-top:12px;
    }


    .reach-out-btn{

        padding:8px 20px;

        font-size:10px;
    }

}


/*=========================================
    PRELAM COLLECTION
=========================================*/

.prelam-collection-section{
    padding:5px 0 60px;
}


/*=========================================
    SECTION TITLE
=========================================*/

.prelam-section-title{
    margin:0 0 25px;

    text-align:center;

    font-weight:500;
    font-size:36px;
    line-height:1.2;

    text-transform:uppercase;

    color:#000;
}


/*=========================================
    MAIN CARD
=========================================*/

.prelam-main-card{
    padding:30px 32px 35px;

    background:#fff;
}


/*=========================================
    PRODUCT IMAGE
=========================================*/

.prelam-product-image{
    height:100%;

    overflow:hidden;
}

.prelam-product-image picture{
    display:block;

    height:100%;

    overflow:hidden;
}

.prelam-product-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .7s cubic-bezier(.22,.61,.36,1);
}


/* Image hover */

.prelam-product-image:hover img{
    transform:scale(1.04);
}


/*=========================================
    PRODUCT CONTENT
=========================================*/

.prelam-product-content{
    position:relative;

    height:100%;
}


/*=========================================
    HEADER
=========================================*/

.prelam-product-header{
    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:20px;

    margin-bottom:15px;
}

.prelam-product-header h3{
        margin: 0 0 20px;
    color: #000;
    font-size: 30px;
    line-height: 38.2px;
    font-weight: 500;
    text-transform: uppercase;
}


/*=========================================
    PRODUCT LOGO
=========================================*/

.prelam-product-logo{
    flex:0 0 auto;
}

.prelam-product-logo img{
    display:block;

    max-width:199px;
    max-height:66px;

    width:auto;
    height:auto;

    object-fit:contain;
}


/*=========================================
    DESCRIPTION
=========================================*/

.prelam-product-description p {
    margin: 0 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000;
}


/*=========================================
    FEATURE TITLE
=========================================*/

.prelam-feature-title{
    margin: 15px 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000;
}


/*=========================================
    FEATURE LIST
=========================================*/

.prelam-feature-list{
    margin:0;

    padding:0;

    list-style:none;
}


/* User requested typography */

.prelam-feature-list li {
    position: relative;
    margin: 0 0 2px;
    padding-left: 22px;
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    color: #000;
}


/* Green check */

.prelam-feature-list li::before {
    content: "";
    background: url(../images/product/check-circle.svg);
    position: absolute;
    left: 0;
    top: 6px;
    color: #49b848;
    font-size: 12px;
    font-weight: 600;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
}


/*=========================================
    PRODUCT TEXT
=========================================*/

.prelam-product-text{
    margin: 10px 0 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    color: #000;
}


/*=========================================
    DISCOVER BUTTON
=========================================*/

.prelam-discover-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:7px 17px;

    border-radius:4px;

    background:#29256a;

    color:#fff;

    font-weight:400;

    font-size:10px;

    line-height:14px;

    text-decoration:none;

    transition:
        background .3s ease,
        transform .3s ease;
}

.prelam-discover-btn:hover{
    background:#1f1c55;

    color:#fff;

    transform:translateY(-2px);
}


/*=========================================
    IDEAL USE
=========================================*/
.prelam-use-item-all {
    display: flex;
    gap: 80px;
}
.prelam-ideal-use{
    margin-top:15px;
}

.prelam-ideal-use h4, .prelam-features-bottom h4 {
    margin: 0 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000;
}

.prelam-features-all {
    display: flex;
    gap: 25px 10px;
    flex-wrap: wrap;
    align-items: center;
}
/*=========================================
    IDEAL USE ITEM
=========================================*/

.prelam-use-item{
    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:5px;
}

.prelam-use-item img{
    display:block;

    width:auto;
    height:60px;

    object-fit:contain;
}
.low-emission-card .prelam-use-item img {
    display: block;
    width: auto;
    height: 85px;
    object-fit: contain;
}

.prelam-use-item span {
    display: block;
    font-weight: 400;
    font-size: 10.63px;
    line-height: 11.76px;
    color: #979797;
    margin-top: 10px;
}
.low-emission-card .prelam-use-item span {
    margin-top: 0;
}


/*=========================================
    BOTTOM FEATURES
=========================================*/

.prelam-features-bottom{
    margin-top:15px;
}


/*=========================================
    FEATURE ITEM
=========================================*/

.prelam-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    width: 190px;
}

.prelam-feature-item img {
    display: block;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.prelam-feature-item span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #000;
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .prelam-section-title{
        font-size:30px;
    }

    .prelam-main-card{
        padding:25px;
    }

    .prelam-product-header h3{
        font-size:22px;
    }

    

    .prelam-product-logo img{
        max-width:120px;
    }
    .prelam-use-item-all {
        display: flex;
        gap: 27px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){
    .prelam-use-item-all {
        gap: 27px;
        display: flex;
        justify-content: flex-start;
    }
.mdf-benefit-card h3 {
    font-size: 18px;
}
    .prelam-use-item {
    width: 27%;
}
    .prelam-features-all {
        display: flex;
        gap: 25px 10px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .prelam-collection-section{
        padding:40px 0 0px;
    }

    .prelam-section-title{
        font-size:24px;

        margin-bottom:20px;
    }

    .prelam-main-card{
        padding:20px 10px 25px;
    }


    /* Image */

    .prelam-product-image{
        height:auto;
    }

    .prelam-product-image picture{
        height:auto;
    }

    .prelam-product-image img{
        height:auto;
    }


    /* Product Header */

    .prelam-product-header{
        margin-top:5px;

        gap:12px;
    }

.prelam-product-header h3 {
        font-size: 19px;
        line-height: 24px;
    }

    .prelam-product-logo img{
        max-width:100px;
        max-height:45px;
    }


    /* Product description */



    /* Feature list */




    /* Ideal use */

    .prelam-use-item img{
        height:44px;
    }




    /* Bottom features */

.prelam-feature-item {
        gap: 8px;
        width: 140px;
    }

    .prelam-feature-item img{
        width:38px;
        height:38px;
    }

    .prelam-feature-item span {
        font-size: 12px;
        line-height: 13px;
    }

}

/*=========================================
    BACK TO TOP
=========================================*/

.back-to-top{
    position:fixed;

    right:25px;
    bottom:25px;

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #29256a;
    border-radius:50%;

    background:#29256a;
    color:#fff;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    z-index:9999;

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease,
        background .3s ease;
}


/* Show button */

.back-to-top.show{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}


/* Arrow */

.back-to-top span{
    display:block;

    font-size:20px;
    line-height:1;

    transform:translateY(-1px);

    transition:
        transform .3s ease;
}


/* Hover */

.back-to-top:hover{
    background:#fff;

    color:#29256a;

    transform:translateY(-4px);
}

.back-to-top:hover span{
    transform:translateY(-3px);
}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .back-to-top{

        right:15px;
        bottom:15px;

        width:40px;
        height:40px;
    }

    .back-to-top span{
        font-size:18px;
    }

}


/*=========================================
    BUILD BANNER
=========================================*/

.build-banner{
    position:relative;

    width:100%;

    overflow:hidden;
}


/*=========================================
    IMAGE
=========================================*/

.build-banner-media{
    display:block;

    width:100%;
}

.build-banner-media img{
    display:block;

    width:100%;
    height:auto;

    object-fit:cover;
}


/*=========================================
    OVERLAY
=========================================*/

.build-banner-overlay{
    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    z-index:1;

    pointer-events:none;
}


/*=========================================
    TEXT
=========================================*/

.build-banner-content{
    position:absolute;

    top:50%;
    left:50%;

    z-index:2;

    width:100%;

    padding:20px;

    text-align:center;

    color:#fff;

    transform:translate(-50%, -50%);
}


.build-banner-content h1{
    margin:0 0 6px;

    font-weight:500;

    font-size:36px;

    line-height:1.2;

    text-transform:uppercase;

    color:#fff;
}


.build-banner-content p{
    margin:0 auto 2px;

    font-weight:400;

    font-size:14px;

    line-height:20px;

    color:#fff;
}


/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .build-banner-content h1{
        font-size:30px;
    }

    .build-banner-content p{
        font-size:13px;

        line-height:18px;
    }

}


/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .build-banner-content{
        padding:15px;
    }

    .build-banner-content h1{
        font-size:24px;

        line-height:1.25;

        margin-bottom:8px;
    }

    .build-banner-content p{
        font-size:11px;

        line-height:16px;
    }

}