/*=========================================================
HOME STATISTICS
=========================================================*/

.statistics-section{

padding:90px 0; 

background:linear-gradient(135deg,#E56A08,#ec7a1d);

position:relative;

overflow:hidden;

}

.statistics-section::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:320px;

height:320px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.statistics-section::after{

content:"";

position:absolute;

left:-100px;

bottom:-100px;

width:250px;

height:250px;

background:rgba(255,255,255,.04);

border-radius:50%;

}

.statistics-section .container{

position:relative;

z-index:2;

}


/*=========================================================
SECTION TITLE
=========================================================*/

.statistics-section .section-title{

text-align:center;

margin-bottom:60px;

}

.statistics-section .section-title span{

display:inline-block;

padding:8px 18px;

background:rgba(255,255,255,.15);

color:#fff;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.statistics-section .section-title h2{

font-size:40px;

font-weight:700;

color:#fff;

margin-bottom:15px;

}

.statistics-section .section-title p{

max-width:700px;

margin:auto;

color:rgba(255,255,255,.85);

line-height:28px;

}


/*=========================================================
GRID
=========================================================*/

.statistics-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}


/*=========================================================
CARD
=========================================================*/

.stat-card{

background:#fff;

border-radius:18px;

padding:35px 25px;

text-align:center;

transition:.35s;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.stat-card:hover{

transform:translateY(-10px);

}


/*=========================================================
ICON
=========================================================*/

.stat-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background: #E56A08;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:32px;

transition:.35s;

}

.stat-card:hover .stat-icon{

transform:rotateY(180deg);

background:#003366;

}


/*=========================================================
NUMBER
=========================================================*/

.stat-card h3{

font-size:42px;

font-weight:700;

color:#003366;

margin-bottom:10px;

}


/*=========================================================
TEXT
=========================================================*/

.stat-card p{

font-size:17px;

font-weight:500;

color:#666;

margin:0;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px){

.statistics-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.statistics-section{

padding:70px 0;

}

.statistics-section .section-title h2{

font-size:30px;

}

.statistics-grid{

grid-template-columns:1fr;

gap:25px;

}

.stat-card{

padding:30px 20px;

}

.stat-icon{

width:70px;

height:70px;

font-size:28px;

}

.stat-card h3{

font-size:34px;

}

}

@media(max-width:480px){

.statistics-section{

padding:60px 0;

}

.statistics-section .section-title h2{

font-size:26px;

}

.statistics-section .section-title p{

font-size:15px;

line-height:24px;

}

.stat-card{

padding:25px 18px;

}

.stat-icon{

width:65px;

height:65px;

font-size:24px;

margin-bottom:18px;

}

.stat-card h3{

font-size:30px;

}

.stat-card p{

font-size:15px;

}

}