/* HEADER */

.overview-header{
    margin-bottom:30px;
	text-align:center;
}

.overview-tag{
    display:inline-block;
    background:rgba(236,29,37,0.08);
    color:var(--accent-red);
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
	text-align:center;
}

.overview-header h1{
    font-size:52px;
    font-weight:800;
    color:var(--primary-blue);
    margin-bottom:18px;
    line-height:1;
}


/* CONTENT CARD */

.overview-content-card{
    background:var(--bg-light);
    border-radius:30px;
    padding:45px;
    position:relative;
    overflow:hidden;
    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
    border-left:6px solid var(--primary-blue);
}

/* TOP DECOR */

.overview-content-card::before{
    content:"";
    position:absolute;
    top:-60px;
    right:-60px;
    width:180px;
    height:180px;
    background:rgba(38,52,137,0.06);
    border-radius:50%;
}

/* TEXT */

.overview-content-card p{
    font-size:17px;
    line-height:1.95;
    color:#444;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.overview-content-card p:last-child{
    margin-bottom:0;
}

/* MOBILE */

@media(max-width:991px){

    .overview-header h1{
        font-size:38px;
    }

    .overview-content-card{
        padding:30px 22px;
        border-radius:24px;
    }

    .overview-content-card p{
        font-size:15px;
        line-height:1.85;
    }

}

@media(max-width:576px){

    .overview-header h1{
        font-size:30px;
    }

    .overview-tag{
        font-size:11px;
        padding:7px 14px;
    }

}