/*==================================================
PREMIUM STATS
==================================================*/

.bt-stats{

padding:110px 0;

background:#0d47a1;

}

.bt-stats .bt-section-title h2{

color:#fff;

}

.bt-stats .bt-section-title p{

color:#d7e5ff;

}

.bt-stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.bt-stat-card{

background:#ffffff;

padding:40px 30px;

border-radius:20px;

text-align:center;

transition:.35s;

}

.bt-stat-card:hover{

transform:translateY(-8px);

}

.bt-stat-number{

font-size:48px;

font-weight:800;

color:#0d47a1;

margin-bottom:15px;

}

.bt-stat-card h3{

font-size:24px;

margin:0 0 15px;

}

.bt-stat-card p{

color:#64748b;

line-height:28px;

margin:0;

}

@media(max-width:991px){

.bt-stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.bt-stats{

padding:70px 0;

}

.bt-stats-grid{

grid-template-columns:1fr;

}

.bt-stat-number{

font-size:40px;

}

}