/*Quality Documents*/

.quality-docs{
    padding:80px 0;
    background:#f5f9ff;
}

.docs-box{
    background:#002964;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,41,100,.15);
}

/* Heading */

.docs-heading{
    padding:55px;
    text-align:center;
}

.docs-heading h2{
    color:#fff;
    font-size:42px;
    font-weight:600;
    line-height:1.4;
    margin:0;
}

.docs-heading span{
    color:#ff6b61;
}

/* Documents */

.docs-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.doc-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:35px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.05);
    border-top:1px solid rgba(255,255,255,.12);
    transition:.35s;
}

.doc-item:first-child{
    border-right:1px solid rgba(255,255,255,.12);
}

.doc-item:hover{
    background:rgba(255, 255, 255, 0.06);
}

/* Number */

.doc-number{
    width:55px;
    height:55px;
    border-radius:12px;
    background:#fff;
    color:#002964;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}

/* Text */

.doc-content{
    flex:1;
}

.doc-content h3{
    margin:0;
    font-size:20px;
    font-weight:600;
    line-height:1.5;
}

/* Arrow */

.doc-arrow{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#ff4d4d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.35s;
}

.doc-item:hover .doc-arrow{
    background:#fff;
    color:#ff4d4d;
    transform:translateX(6px);
}

/* Responsive */

@media(max-width:768px){

    .docs-heading{
        padding:40px 25px;
    }

    .docs-heading h2{
        font-size:30px;
    }

    .docs-list{
        grid-template-columns:1fr;
    }

    .doc-item:first-child{
        border-right:none;
    }

    .doc-content h3{
        font-size:18px;
    }
}