/*==========================
Hero
==========================*/

.hero{

padding:90px 0;

background:linear-gradient(135deg,#FFFDF8,#F7F7F2);

}

.hero-badge{

display:inline-block;

background:#176B3A;

color:#fff;

padding:10px 22px;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:25px;

}

.hero-title{

font-size:52px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

color:#222;

}

.hero-title span{

color:#176B3A;

display:block;

}

.hero-text{

font-size:18px;

line-height:1.8;

color:#666;

margin-bottom:35px;

max-width:520px;

}

.hero-btn{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:45px;

}

.hero-btn .btn{

padding:14px 35px;

border-radius:50px;

font-weight:600;

}

.hero-counter{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.counter-card{

background:#fff;

padding:25px;

border-radius:20px;

width:140px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.counter-card:hover{

transform:translateY(-8px);

}

.counter-card h2{

color:#176B3A;

font-size:34px;

font-weight:700;

margin-bottom:8px;

}

.counter-card p{

margin:0;

color:#666;

}

.hero-image{

display:flex;

justify-content:center;

}

.hero-image img{
    width:100%;
    max-width:1000px;
    aspect-ratio:18/14;
    object-fit:cover;
    border-radius:10px;
}


@media(max-width:992px){

.hero{

text-align:center;

padding:70px 0;

}

.hero-text{

margin:auto auto 35px;

}

.hero-btn{

justify-content:center;

}

.hero-counter{

justify-content:center;

}

.hero-title{

font-size:42px;

}

.hero-image img{

height:auto;

margin-top:30px;

}

}