#loans-main {
    div {
        width: 100%;
        margin: 0 auto;
        margin-top: 30vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        font-weight: 400;
    }

    .section-heading {
        font-size: 40px;
        margin-bottom: 1rem;
        letter-spacing: 4px;
        opacity: 0;
        animation: fadeUp 0.8s 0.2s cubic-bezier(.11, .92, .54, .97) forwards;
    }

    p:nth-of-type(2) {
        width: 70%;
        margin: 0 auto;
        font-size: 16px;
        letter-spacing: 1px;
        opacity: 0;
        animation: fadeUp 0.8s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
    }
}

#ploan-section {
    height: fit-content;
    width: 100%;
    background-color: white;
    color: black;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 0;
    font-weight: 400;
    scroll-margin-top: 70px;
}

#ploan-section {
    scroll-margin-top: 60px;
}

#ploan-section {
    #ploan-section-content {
        width: 85%;
        margin: 0 auto;

        ul {
            margin: 0;
            list-style-type: none;

            li {
                display: flex;
                align-items: flex-start;
                margin-bottom: 0.5rem;

                i {
                    margin-top: 5px;
                    margin-right: 1rem;

                }
            }
        }
    }

    #ploan-section-heading {
        font-size: 30px;
    }

    .ploan-section-sub-heading {
        font-size: 25px;
        margin-top: 2rem;
    }

    .ploan-content {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;

        p {
            font-size: 1rem;
        }

        #ploan-para-1 {
            width: 50%;
        }

        #ploan-image-1,
        #ploan-image-2,
        #ploan-image-3,
        #ploan-image-4 {
            width: 50%;
            height: 250px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
            align-self: center;
        }
    }

    .ploan-content:nth-of-type(2) {
        ul{
            li {
                i {
                    font-size: 5px;
                    align-self: center;
                }
            }
        }
    }
}