.escort-content-section{
    padding:80px 20px;
    /* background:#fff; */
}





.escort-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.escort-box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:4px solid #E31777;
}

.escort-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.escort-box h3{
    color:#111;
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.escort-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

.escort-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:767px){

.escort-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:28px;
}

.section-title p{
    font-size:15px;
}

.escort-box{
    padding:25px;
}

}