body{

background:#f3f5f8;

}


.vfb-dashboard{

max-width:1400px;

margin:40px auto;

padding:0 30px;

}


.vfb-header{

text-align:center;

margin-bottom:55px;

}


.vfb-header h1{

margin:0;

font-size:72px;

font-weight:800;

color:#07163f;

}


.vfb-header p{

margin-top:18px;

font-size:24px;

color:#394968;

}



/* GRID */

.vfb-grid{

display:grid;

grid-template-columns:
repeat(
3,
1fr
);

gap:40px;

}



/* CARD */

.vfb-card{

background:#fff;

border-radius:36px;

padding:38px;

text-decoration:none;

color:#111;

min-height:300px;

box-shadow:
0 12px 35px
rgba(0,0,0,.08);

transition:.25s;

}


.vfb-card:hover{

transform:
translateY(-8px);

}


.vfb-card-head{

display:flex;

align-items:center;

gap:22px;

margin-bottom:45px;

}


.vfb-icon{

font-size:64px;

width:72px;

text-align:center;

}


.vfb-card h2{

margin:0;

font-size:30px;

font-weight:800;

color:#07163f;

line-height:1.1;

}


.vfb-card p{

margin:0;

font-size:20px;

line-height:1.8;

color:#45526e;

}



/* MOBILE */

@media(max-width:1000px){

.vfb-grid{

grid-template-columns:
repeat(
2,
1fr
);

}

}


@media(max-width:700px){

.vfb-grid{

grid-template-columns:
1fr;

}

.vfb-header h1{

font-size:46px;

}

.vfb-header p{

font-size:18px;

}

.vfb-card{

min-height:220px;

}

}