/* Documents section */
.documents {}

.documents-card {
    margin-left: auto;
    margin-right: auto;
    background-color: #272636;
    border-radius: 30px;
    width: 1128px;
    height: 591px;
}

.documents .leftside {
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.documents .leftside img {
    width: 407px;
    height: 437px;
}

.documents .rightside {
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.documents .rightside .section-heading5 {
    font-size: 30px;
    font-weight: 400;
    font-family: myFirstFont2;
    line-height: 30px;
    color: #12F280;
    width: 343px;
    height: 60px;
    text-align: left;
    margin-bottom: 1rem;
}

.documents .rightside .sub-heading {
    font-size: 16px;
    font-weight: 400;
    font-family: myFirstFont3;
    line-height: 20px;
    color: #FFFFFF;
    width: 416px;
    height: 40px;
    text-align: left;
    margin-bottom: 1rem;
}

.documents .rightside .documents-need {
    gap: 10px;
    position: relative;
    z-index: 8;
}

.documents .rightside .documents-need .cards {
    /* width: 220px;
    height: 90px;
    border-radius: 20px;
    background-color: transparent;
    box-shadow: none;

    align-items: center;
    padding: 0 1rem;
    border: 2px solid white;
    border-image: linear-gradient(90deg, #575570, #272636, #34333C) 1; */
    /* background: linear-gradient(90deg, #575570,#272636, #34333C); */

    width: 220px;
    height: 90px;
    border-radius: 10px;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 1rem;
    transition: background-color 0.3s ease;
    position: relative;
    background: #272636;
    flex-direction: row;
}

.documents .rightside .documents-need .cards::after {
    content: '';
    width: 223px;
    height: 94px;
    background: linear-gradient(to right, #575570, #272636, #34333C);
    position: absolute;
    left: -1.5px;
    z-index: -1;
    border-radius: 11px;
}
.documents .rightside .documents-need .cards:hover {
    background-color: #35364a;
}
.documents .rightside .documents-need .cards img {
    width: 30px;
}

.documents .rightside .documents-need .cards span {
    font-size: 15px;
    font-weight: 400;
    font-family: myFirstFont3;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 0;
    margin-left: 1rem;
    text-align: left;
}

.documents hr {
    width: 80%;
    color: #D2D6DB;
    border-width: 1px;
    margin: 3rem auto;
    opacity: unset;
}

@media (max-width: 1199px) {
    .documents-card {
        width: 90%;
        height: fit-content;
        padding: 2rem;
    }

    .documents .rightside .documents-need {
        align-items: center;
        justify-content: center;
    }

    .documents .rightside .documents-need .cards {
        width: 200px;
        height: 80px;
    }

    .documents .rightside .documents-need .cards::after {
        width: 204px;
        height: 84px;
    }

    .documents .rightside .documents-need .cards span {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 1024px) {
    .documents .rightside .documents-need .cards {
        width: 330px;
        height: 60px;
    }

    .documents .rightside .documents-need .cards::after {
        width: 333px;
        height: 64px;
    }
}

@media (max-width: 991px) {
    .documents-card {
        flex-direction: column-reverse;
        padding: 3rem 2rem;
    }

    .documents .rightside .sub-heading,
    .documents .rightside .section-heading5 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }



    .documents .rightside .documents-need {
        width: 330px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .documents .rightside .sub-heading {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {

    .documents .rightside .sub-heading,
    .documents .rightside .section-heading5 {
        width: 90%;
        height: fit-content;
    }

    .documents .leftside img {
        width: 100%;
        height: fit-content;
    }
}

@media (max-width: 426px) {
    .documents-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .documents .rightside .documents-need .cards,
    .documents .rightside .documents-need {
        width: 100%;
    }

    .documents .rightside .documents-need .cards::after {
        width: 101%;
    }

    .documents .rightside .documents-need .cards span {
        font-size: 12px;
        line-height: 16px;
    }

    .documents hr {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 321px) {}