body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#eef2f5;
}

/* SECTION */
.resources-section{
    padding:80px 50px;
}

.section-label{
    color:#6b8ba4;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    display:flex;
    align-items:center;
}

.section-label::after{
    content:"";
    height:2px;
    width:60px;
    background:#f25c2a;
    margin-left:15px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#2b3c48;
    margin-bottom:60px;
}

/* GRID */
.resource-grid{
    display:flex;
    flex-wrap: wrap;
}

/* CARD */
.resource-card{
    background:#f3f4f6;
    border-radius:12px;
    padding:40px;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:0.3s;
    border: 1px solid #f25c2a33;
    margin: 30px;
}

.resource-card:hover{
    transform:translateY(-5px);
}

/* CARD TOP */
.card-icon{
    width:60px;
    height:45px;
    border:3px solid #7ea4bf;
    border-radius:6px;
    margin-bottom:20px;
        align-items: center;
    display: flex;
    justify-content: center;
}

.card-title{
    font-size:17px;
    font-weight:700;
    color:#324a5e;
    margin-bottom:15px;
}

.card-desc{
    font-size:16px;
    line-height:1.6;
    color:#5a6a75;
    margin-bottom:30px;
}

/* IMAGE */
.card-image img{
       width: 100%;
    border-radius: 6px;
    max-height: 220px;
    max-width: 292px;
}


#RESOURCES a{
    font-size: 17px!important;
}
