/* ==========================================
   SCPM WHY CHOOSE PAGE PREMIUM DESIGN
========================================== */


.page-hero{

min-height:360px;

background:
linear-gradient(
135deg,
rgba(225,96,15,.95),
rgba(255,167,51,.85)
),
url("../images/why-bg.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

position:relative;

overflow:hidden;

}



.page-hero::after{

content:"";

position:absolute;

width:300px;
height:300px;

background:rgba(255,255,255,.12);

border-radius:50%;

right:-100px;
top:-100px;

}



.page-hero .container{

position:relative;
z-index:2;

}



.page-hero h1{

color:white;

font-size:52px;

font-weight:700;

margin-bottom:15px;

}



.page-hero p{

color:white;

font-size:21px;

letter-spacing:.5px;

}





/* MAIN SECTION */


.why-page{

padding:90px 7%;

background:#fff8f2;

}



.why-page .container{

max-width:1200px;

margin:auto;

}




.why-page h2{

text-align:center;

font-size:38px;

color:#8A3607;

margin-bottom:60px;

position:relative;

}



.why-page h2::after{

content:"";

width:80px;

height:4px;

background:#E1600F;

position:absolute;

bottom:-15px;

left:50%;

transform:translateX(-50%);

border-radius:20px;

}





/* CARDS */


.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}



.why-box{

background:white;

padding:40px 25px;

border-radius:25px;

text-align:center;

position:relative;

overflow:hidden;

box-shadow:

0 15px 40px rgba(0,0,0,.08);

transition:.4s;

border:1px solid #ffe1c2;

}




.why-box::before{

content:"";

position:absolute;

height:5px;

width:100%;

background:#E1600F;

top:0;

left:0;

}



.why-box:hover{

transform:translateY(-12px);

box-shadow:

0 25px 50px rgba(225,96,15,.18);

}




/* ICON */


.why-box i{

width:85px;

height:85px;

display:flex;

align-items:center;

justify-content:center;

margin:10px auto 25px;

background:#fff0df;

border-radius:50%;

font-size:38px;

color:#E1600F;

transition:.4s;

}



.why-box:hover i{

background:#E1600F;

color:white;

transform:rotateY(180deg);

}





.why-box h3{

font-size:22px;

color:#17211F;

margin-bottom:15px;

}




.why-box p{

font-size:15px;

line-height:1.8;

color:#5b625f;

}





/* RESPONSIVE */


@media(max-width:1000px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}




@media(max-width:600px){


.page-hero h1{

font-size:36px;

}


.page-hero p{

font-size:17px;

}



.why-page{

padding:60px 5%;

}


.why-grid{

grid-template-columns:1fr;

}



.why-page h2{

font-size:30px;

}


}