

/*=================================
  Sustainability Hero
=================================*/

.sustainability-hero{
    background:#fff;
    padding:110px 0 90px;
    overflow:hidden;
}

.sustainability-container{

    width:min(1450px,92%);
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;

}

/*=================================
 Left Content
=================================*/

.sustainability-tag{

    display:inline-block;
    font-size:15px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#86B93B;
    font-weight:600;
    margin-bottom:22px;

}

.sustainability-content h1{

    font-size:75px;
    line-height:1.05;
    color:#101828;
    font-weight:450;
    margin-bottom:35px;

}

.sustainability-content h1 span{

    color:#86B93B;

}

.sustainability-content p{

    font-size:20px;
    line-height:1.9;
    color:#667085;
    max-width:620px;
    margin-bottom:40px;

}

/*=================================
 Premium Link
=================================*/

.hero-link{

    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    color:#101828;

    font-size:18px;

    font-weight:600;

    position:relative;

    transition:.35s;

}

.hero-link::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#86B93B;

    transition:.35s;

}

.hero-link:hover{

    color:#86B93B;

}

.hero-link:hover::after{

    width:100%;

}

/*=================================
 Hero Gallery
=================================*/

.hero-gallery{

    position:relative;

    width:700px;

    height:650px;

    margin:auto;

}

/* Green Glow */

.hero-gallery::before{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    background:rgba(134,185,59,.18);

    border-radius:50%;

    filter:blur(100px);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

}

/*=================================
 Cards
=================================*/

.gallery-card{

    position:absolute;

    overflow:hidden;

    border-radius:24px;

    background:#fff;

    box-shadow:0 35px 90px rgba(0,0,0,.12);

    transition:.5s ease;

}

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/*=========================
 Main Image
==========================*/

.card-main{

    width:380px;

    height:470px;

    top:70px;

    left:120px;

    z-index:3;

    animation:floatMain 6s ease-in-out infinite;

}

/*=========================
 Left Image
==========================*/

.card-back{

    width:250px;

    height:320px;

    top:0;

    left:20px;

    z-index:1;

    animation:floatBack 7s ease-in-out infinite;

}

/*=========================
 Right Image
==========================*/

.card-front{

    width:200px;

    height:270px;

    right:55px;

    bottom:0;

    z-index:2;

    animation:floatFront 5s ease-in-out infinite;

}

/*=================================
 Hover
=================================*/

.hero-gallery:hover .card-main{

    transform:translateY(-15px) scale(1.02);

}

.hero-gallery:hover .card-back{

    transform:translate(-12px,-12px);
    z-index:5;
    animation:floatFront 5s ease-in-out infinite;

}

.hero-gallery:hover .card-front{

    transform:translate(12px,12px);
    z-index:5;
    animation:floatFront 5s ease-in-out infinite;

}

/*=================================
 Floating Animation
=================================*/

@keyframes floatMain{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}

@keyframes floatBack{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-6px);
}

100%{
transform:translateY(0);
}

}

@keyframes floatFront{

0%{
transform:translateY(0);
}

50%{
transform:translateY(8px);
}

100%{
transform:translateY(0);
}

}

/*=================================
  Laptop
=================================*/

@media (max-width:1200px){

    .hero-gallery{
        width:560px;
        height:540px;
    }

    .card-main{
        width:350px;
        height:440px;
        left:105px;
        top:60px;
    }

    .card-back{
        width:210px;
        height:270px;
        left:10px;
        top:0;
    }

    .card-front{
        width:210px;
        height:270px;
        right:10px;
        bottom:0;
    }

}

/*=================================
  Tablet
=================================*/

@media (max-width:991px){

    .sustainability-container{
        grid-template-columns:1fr;
        gap:60px;
        text-align:center;
    }

    .sustainability-content p{
        margin:0 auto 35px;
    }

    .hero-gallery{
        width:460px;
        height:480px;
        margin:auto;
    }

    .card-main{
        width:300px;
        height:380px;
        left:80px;
        top:50px;
    }

    .card-back{
        width:170px;
        height:220px;
        left:0;
        top:0;
    }

    .card-front{
        width:170px;
        height:220px;
        right:0;
        bottom:0;
    }

}

/*=================================
  Mobile
=================================*/
/*=================================
 Mobile
=================================*/

@media (max-width:576px){

    .sustainability-hero{
        padding:70px 0;
    }

    .sustainability-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .sustainability-content h1{
        font-size:36px;
        line-height:1.1;
    }

    .sustainability-content p{
        font-size:17px;
        line-height:1.8;
        margin:0 auto 30px;
    }

    /* Gallery */

    .hero-gallery{
        width:100%;
        height:auto;
        display:flex;
        justify-content:center;
        align-items:center;
        margin:20px auto 0;
    }

    /* Hide side cards */

    .card-back,
    .card-front{
        display:none;
    }

    /* Main image only */

    .card-main{
        position:relative;

        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

        transform:none;

        width:90%;
        max-width:320px;
        height:auto;

        border-radius:20px;
    }

    .card-main img{
        width:100%;
        height:auto;
        display:block;
        aspect-ratio:4/5;
        object-fit:cover;
        border-radius:20px;
    }

    /* Remove glow */

    .hero-gallery::before{
        display:none;
    }

}






/*=================================================
  Sustainability Journey
=================================================*/

.journey{
    padding:120px 0;
    background:#fafafa;
}

.journey-header{
    max-width:900px;
    margin:0 auto 100px;
    text-align:center;
}

.journey-header span{
    display:inline-block;
    color:#86B93B;
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:18px;
}

.journey-header h2{
    font-size:60px;
    color:#111827;
    line-height:1.1;
    margin-bottom:25px;
}

.journey-header h2 span{
    color:#86B93B;
}

.journey-header p{
    font-size:20px;
    line-height:1.8;
    color:#667085;
}

/*=================================================
 Timeline
=================================================*/

.timeline{

    position:relative;

    width:min(1450px,92%);
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:8%;
    right:8%;
    top:18px;

    height:4px;

    background:#86B93B;

}

/*=================================================
 Each Step
=================================================*/

.step{

    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;

}

/* Green Node */

.node{

    width:34px;
    height:34px;

    border-radius:50%;

    background:#86B93B;

    border:8px solid #fff;

    box-shadow:0 0 25px rgba(134,185,59,.25);

    position:relative;

    z-index:5;

}

/* Hanging Line */

.connector{

    width:5px;

    height:110px;

    background:#86B93B;

    border-radius:30px;

}

/*=================================================
 Card
=================================================*/

.card{
    width:100%;
    max-width:320px;
    height:560px;              /* fixed height */

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;

    padding:35px 30px;

    background:#fff;
    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    margin:0 auto;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.12);

}

/*=================================================
 Icon
=================================================*/

/*.icon{*/

/*    width:120px;*/
/*    height:120px;*/

/*    border-radius:50%;*/

/*    background:#fff;*/

/*    display:flex;*/
/*    justify-content:center;*/
/*    align-items:center;*/

/*    box-shadow:*/
/*        0 10px 35px rgba(134,185,59,.12);*/

/*    margin-bottom:30px;*/

/*}*/
/*.icon{*/

/*    width:120px;*/
/*    height:120px;*/

/*    border-radius:50%;*/

/*    background:#fff;*/

/*    display:flex;*/
/*    justify-content:center;*/
/*    align-items:center;*/

/*    margin-bottom:35px;*/

/*    flex-shrink:0;*/
/*}*/






.icon svg{

    width:54px;
    height:54px;

    stroke:#86B93B;

}

/*=================================================
 Heading
=================================================*/

.card h3{

    min-height:85px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:18px;

    text-align:center;

}

/* Divider */

.divider{

    width:45px;
    height:4px;

    border-radius:50px;

    background:#86B93B;

    margin-bottom:25px;

}

/*=================================================
 Description
=================================================*/

.card p{

    font-size:18px;

    line-height:1.8;

    color:#667085;

    margin-top:auto;

}






/*=================================================
 Hover
=================================================*/

.step:hover .connector{

    background:#75ab2d;

}

.step:hover .node{

    transform:scale(1.08);

}

.step:hover .icon{

    transform:translateY(-6px);

    box-shadow:
        0 20px 45px rgba(134,185,59,.20);

}

.node,
.connector,
.icon{

    transition:.35s;

}

/*=================================================
 Responsive
=================================================*/

@media(max-width:1200px){

.timeline{

grid-template-columns:repeat(2,1fr);

row-gap:80px;

}

.timeline::before{

display:none;

}

}

@media(max-width:768px){

.timeline{

grid-template-columns:1fr;

}

.connector{

height:70px;

}

.card{

height:auto;

min-height:470px;

max-width:380px;

}

.journey-header h2{

font-size:42px;

}

.journey-header p{

font-size:17px;

}

}






.icon{

    width:90px;
    height:90px;

    border-radius:50%;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto auto 30px;

    box-shadow:0 12px 30px rgba(134,185,59,.12);

}

.icon i{

    font-size:42px;

    color:#86B93B;

}





/*third section - comparison*/

/*=====================================
Comparison Section
======================================*/

.compare-section{

    position:relative;

    background:url("../images/environment.png") center/cover no-repeat;

    min-height:750px;

    overflow:hidden;

}

/* Split Overlay */

.compare-overlay{

    display:grid;

    grid-template-columns:1fr 1fr;

    min-height:750px;

}

/* LEFT */

.compare-side{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:80px;

}

.left{

    background:rgba(28,28,28,.28);

    color:#fff;

}

.right{

    background:rgba(134,185,59,.32);

    color:#fff;

}

/* Headings */

.compare-side h2{

    font-size:48px;

    margin-bottom:50px;

}

/* List */

.compare-side ul{

    list-style:none;

    padding:0;

    margin:0;

}

.compare-side li{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

    font-size:24px;

    line-height:1.5;

}

/* Icons */

.cross,
.check{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.cross{

    background:#ff4d4d;

    color:#fff;

}

.check{

    background:#fff;

    color:#86B93B;

}

/* Divider */

/*.compare-overlay::before{*/

/*    content:"";*/

/*    position:absolute;*/

/*    left:50%;*/

/*    top:0;*/

/*    width:2px;*/

/*    height:100%;*/

/*    background:rgba(255,255,255,.35);*/

/*}*/

/* Responsive */

@media(max-width:992px){

.compare-overlay{

grid-template-columns:1fr;

}

.compare-side{

padding:60px 30px;

}

.compare-side h2{

font-size:36px;

}

.compare-side li{

font-size:20px;

}

.compare-overlay::before{

display:none;

}

}


/*section - 4 commitment */


/*=========================================
  COMMITMENT SECTION
=========================================*/

.commitment{

    padding:120px 0;

    background:#fff;

    overflow:hidden;

}

.commitment-container{

    width:min(1500px,94%);

    margin:auto;

    display:grid;

    grid-template-columns:48% 52%;

    gap:90px;

    align-items:stretch;

}

/*==============================
LEFT IMAGE
==============================*/

.commitment-image{

    position:relative;

    height:100%;

    display:flex;

}

.commitment-image img{

    width:100%;

    min-height:900px;

    height:100%;

    object-fit:cover;

    border-radius:32px;

    display:block;

    box-shadow:
        0 30px 80px rgba(0,0,0,.12);

    transition:.6s;

}

.commitment-image:hover img{

    transform:scale(1.03);

}

/*==============================
RIGHT CONTENT
==============================*/

.commitment-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.commitment-tag{

    display:inline-block;

    color:#86B93B;

    font-size:15px;

    font-weight:600;

    letter-spacing:4px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.commitment-content h2{

    font-size:64px;

    line-height:1.05;

    color:#111827;

    margin-bottom:30px;

}

.commitment-content>p{

    font-size:20px;

    line-height:1.9;

    color:#667085;

    margin-bottom:55px;

    max-width:700px;

}

/*==============================
LIST
==============================*/

.commitment-list{

    display:flex;

    flex-direction:column;

    gap:34px;

}

/* Item */

.commitment-item{

    display:flex;

    align-items:flex-start;

    gap:24px;

}

/* Icon */

.commitment-icon{

    width:72px;

    height:72px;

    flex-shrink:0;

    border-radius:50%;

    background:#F5F9ED;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    box-shadow:
        0 10px 30px rgba(134,185,59,.12);

    transition:.35s;

}

.commitment-item:hover .commitment-icon{

    transform:translateY(-6px);

}

/* Heading */

.commitment-item h4{

    font-size:30px;

    color:#111827;

    margin-bottom:10px;

}

/* Text */

.commitment-item p{

    font-size:18px;

    color:#667085;

    line-height:1.8;

}

/*==============================
BUTTON
==============================*/

.commitment-btn{

    margin-top:55px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#111827;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.commitment-btn:hover{

    color:#86B93B;

    transform:translateX(8px);

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1200px){

.commitment-container{

grid-template-columns:1fr;

gap:70px;

}

.commitment-image{

height:650px;

}

.commitment-image img{

min-height:650px;

}

.commitment-content{

text-align:center;

}

.commitment-content>p{

margin:0 auto 50px;

}

.commitment-item{

text-align:left;

}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.commitment{

padding:80px 0;

}

.commitment-container{

width:92%;

}

.commitment-image{

height:420px;

}

.commitment-image img{

min-height:420px;

border-radius:24px;

}

.commitment-content h2{

font-size:40px;

}

.commitment-content>p{

font-size:17px;

}

.commitment-list{

gap:24px;

}

.commitment-item{

gap:16px;

}

.commitment-icon{

width:58px;

height:58px;

font-size:24px;

}

.commitment-item h4{

font-size:22px;

}

.commitment-item p{

font-size:16px;

}

}

