/*Documents of Compliance*/
.docs-section{
    padding:90px 0;
    background:#f7f9fc;
}

/* Heading */

.docs-heading{
    margin-bottom:50px;
    text-align:center;
}

.docs-heading h2{
    margin:0;
    font-size:44px;
    font-weight:600;
    color:#002964;
}

.docs-heading span{
    display:inline-block;
    margin-top:10px;
    color:#ff4b45;
    font-size:44px;
    font-weight:500;
    position:relative;
}

.docs-heading span::after{
    content:"";
    width:70px;
    height:3px;
    background:#ff4b45;
    display:block;
    margin:12px auto 0;
    border-radius:5px;
}

/* Grid */

.docs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* Card */

.docs-card{
    position:relative;
    padding:30px;
    min-height:220px;
    background:#fff;
    border:1px solid #e5edf7;
    border-radius:18px;
    text-decoration:none;
    color:#002964;
    display:flex;
    flex-direction:column;
    transition:.35s;
    overflow:hidden;
}

/* Top Border Animation */

.docs-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ff4b45;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.docs-card:hover::before{
    transform:scaleX(1);
}

/* Number */

.docs-code{
    color:#ff4b45;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

/* Title */

.docs-card strong{
    flex:1;
    font-size:20px;
    line-height:1.6;
    font-weight:600;
}

/* Arrow */

.docs-arrow{
    width:48px;
    height:48px;
    margin-top:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#002964;
    color:#fff;
    font-size:20px;
    transition:.35s;
}

/* Hover */

.docs-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,41,100,.12);
}

.docs-card:hover .docs-arrow{
    background:#ff4b45;
    transform:translateX(6px);
}

/* Remove old folded corner */

.docs-corner{
    display:none;
}

/* Last card center */

.docs-card:last-child{
    grid-column:2;
}

/* Responsive */

@media(max-width:991px){

    .docs-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .docs-card:last-child{
        grid-column:auto;
    }

}

@media(max-width:767px){

    .docs-heading h2{
        font-size:32px;
    }

    .docs-grid{
        grid-template-columns:1fr;
    }

}