.personal {
    &__body {
        &--box {
            padding: 3rem 5rem;
        }
        .padding-bottom{
            padding-bottom: 0 !important;
        }
    }
}

.identity {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 8rem;
    gap: 5rem;

    &__file {
        max-width: 55rem;
        width: 100%;

        &--heading {
            font-weight: 500;
            font-size: 3rem;
            text-align: left;
            margin-bottom: 3rem;

        }

        .upload {
            input {
                display: none;

            }

            label {
                width: 100%;
                display: block;
                height: 26rem;
                border-radius: 31px;
                background: $white;
                border: 1px solid #707070;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                .user {
                    width: 10rem;
                    margin: 0;
                    height: 8rem;
                    object-fit: contain;
                    margin-bottom: 5rem;
                }

                .text {
                    p {
                        font-weight: 400;
                        font-size: 1.7rem;
                        line-height: 3rem;

                        a {
                            color: $primary;
                        }
                    }
                }
            }
        }
    }

    &__text {
        display: flex;
        height: 100%;
        align-items: center;
        padding: 0 2rem;
        p {
            font-weight: 400;
            font-size: 1.7rem;
            line-height: 2.6rem;
            text-align: center;

        }
    }

    &__id-card {
        max-width: 54rem;
        width: 100%;
        height: 37rem;
        height: 375px;
        border-radius: 3rem;
        background: transparent;
        border: 1px solid #707070;
        display: flex;
        justify-content: center;
        align-items: center;

        &-img {
            width: 34rem;
            width: 100%;
            height: 21rem;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                margin: 0;
            }
        }

    }

    .files {
        border: none;
        filter: grayscale(100%);
    }
    .set-image{
        max-width: 100rem !important ;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: translateX(10rem);
        transform: scale(1.39);
    }
}

.grid-3fr {
    display: grid;
    grid-template-columns: 2fr 1.2fr 2fr;
}