*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fafafa;
overflow-x:hidden;
color:#222;
}

.blank_one_content_about {
	width:100%;
	height:70px;
}	
/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:80px 8%;
background:
linear-gradient(135deg,#fff7cc,#fff 60%);
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
width:700px;
height:700px;
background:#ffd10020;
border-radius:50%;
top:-250px;
right:-200px;
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
z-index:2;
}

.hero-text h4{
color:#d20000;
letter-spacing:3px;
margin-bottom:10px;
}

.hero-text h1{
font-size:4rem;
line-height:1.1;
font-weight:800;
margin-bottom:20px;
}

.hero-text h1 span{
color:#d40000;
}

.hero-text p{
font-size:1.1rem;
line-height:1.8;
color:#666;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
padding:15px 35px;
background:#d40000;
color:white;
text-decoration:none;
border-radius:50px;
transition:.4s;
font-weight:600;
}

.hero-btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(212,0,0,.25);
}

.hero-image{
text-align:center;
position:relative;
}

.hero-image img{
width:100%;
max-width:420px;
animation:float 5s ease-in-out infinite;
filter:drop-shadow(0 25px 35px rgba(0,0,0,.25));
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-20px);}
}

/* SECTION */

section{
padding:100px 8%;
}

.title{
text-align:center;
margin-bottom:60px;
}

.title h2{
font-size:3rem;
font-weight:800;
position:relative;
display:inline-block;
}

.title h2::after{
content:'';
width:80px;
height:4px;
background:#d40000;
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:-15px;
}

/* STORY */

.story{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.story-image img{
width:100%;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.story-text p{
font-size:1.05rem;
line-height:2;
margin-bottom:20px;
color:#555;
}

/* TIMELINE */

.timeline{
background:#fff7d9;
}

.timeline-wrap{
max-width:1000px;
margin:auto;
position:relative;
}

.timeline-wrap::before{
content:'';
position:absolute;
left:50%;
width:4px;
height:100%;
background:#d40000;
transform:translateX(-50%);
}

.time-box{
width:45%;
background:white;
padding:30px;
margin:30px 0;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:relative;
}

.time-box:nth-child(odd){
margin-right:auto;
}

.time-box:nth-child(even){
margin-left:auto;
}

.time-box h3{
color:#d40000;
margin-bottom:10px;
}

/* COUNTERS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat{
background:white;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.stat:hover{
transform:translateY(-10px);
}

.stat h3{
font-size:3rem;
color:#d40000;
}

.stat p{
font-weight:600;
margin-top:10px;
}

/* VALUES */

.values{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.value{
background:white;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.value:hover{
transform:translateY(-10px);
}

.value i{
font-size:55px;
margin-bottom:20px;
color:#d40000;
}

.value h4{
margin-bottom:15px;
font-size:1.4rem;
}

/* FOOTER */

.footer{
background:#111;
color:white;
text-align:center;
padding:50px;
}

.footer h3{
font-size:2rem;
margin-bottom:10px;
color:#ffd100;
}

/* ANIMATION */

.reveal{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:991px){

.hero-content,
.story{
grid-template-columns:1fr;
text-align:center;
}

.hero-text h1{
font-size:2.8rem;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.values{
grid-template-columns:1fr;
}

.timeline-wrap::before{
left:20px;
}

.time-box{
width:100%;
margin-left:40px!important;
}

}