#investments-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;
        text-transform: capitalize;
        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;
    }
}


#sip-section,
#swp-section,
#mf-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;
}

#sip-section {
    scroll-margin-top: 60px;
}

#sip-section {
    #sip-section-content {
        width: 85%;
        margin: 0 auto;
    }

    #sip-section-heading {
        font-size: 30px;
    }

    .sip-section-sub-heading {
        font-size: 25px;
        margin-top: 2rem;
    }

    .sip-content {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;

        p {
            font-size: 1rem;
        }

        #sip-para-1,
        #sip-para-3,
        #sip-para-6,
        #sip-para-8 {
            width: 50%;
        }

        #sip-image-1,
        #sip-image-2,
        #sip-image-3,
        #sip-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;
        }

        /* #sip-para-2,
        #sip-para-4,
        #sip-para-5,
        #sip-para-7,
        #sip-para-9 {
            width: 90%;
        } */
    }
}

#swp-section {
    #swp-section-content {
        width: 85%;
        margin: 0 auto;
    }

    #swp-section-heading {
        font-size: 30px;
    }

    .swp-section-sub-heading {
        font-size: 25px;
        margin-top: 2rem;
    }

    .swp-content {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;

        p {
            font-size: 1rem;
        }

        table {
            width: 80%;
            border-collapse: collapse;
            margin: 0 auto;
            text-align: center;

        }

        th,
        td {
            border: 1px solid black;
            padding: 10px;
            text-align: center;
        }

        th {
            background-color: rgba(0, 0, 0, 0.418);
        }

        #swp-para-1,
        #swp-para-5 {
            width: 50%;
        }

        #swp-image-1,
        #swp-image-2,
        #swp-image-3,
        #swp-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;
        }
    }

    .swp-content:nth-of-type(4),
    .swp-content:nth-of-type(6),
    .swp-content:nth-of-type(8) {
        flex-direction: column;
        gap: 0.5rem;

        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;
                }
            }
        }
    }

    .swp-content:nth-of-type(4){
        flex-direction: row;
    }
}

#mf-section {
    #mf-section-content {
        width: 85%;
        margin: 0 auto;
    }

    #mf-section-heading {
        font-size: 30px;
    }

    .mf-section-sub-heading {
        font-size: 25px;
        margin-top: 2rem;
    }

    .mf-content {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;

        p {
            font-size: 1rem;
        }

        #mf-para-1,
        #mf-para-2,
        #mf-para-3 {
            width: 50%;
        }

        #mf-image-1,
        #mf-image-2,
        #mf-image-3,
        #mf-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;
        }
    }

    .mf-content:nth-of-type(3),
    .mf-content:nth-of-type(5),
    .mf-content:nth-of-type(7),
    .mf-content:nth-of-type(8) {
        flex-direction: column;
        gap: 0.5rem;

        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;
                }
            }
        }
    }

    .mf-content:nth-of-type(4) {
        div:nth-of-type(1) {
            width: 60%;

            ul {
                margin: 0;
                list-style-type: none;
                margin-top: 1rem;

                li {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 0.5rem;

                    i {
                        margin-top: 5px;
                        margin-right: 1rem;
                    }
                }
            }
        }
    }

    .mf-content:nth-of-type(6) {
        flex-direction: column;
        gap: 0.5rem;

        ul {
            margin: 0;
            list-style-type: none;

            li {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 0.5rem;

                div:nth-of-type(1) {
                    display: flex;

                    i {
                        margin-top: 5px;
                        margin-right: 1rem;
                    }
                }

                div:nth-of-type(2) {
                    margin-top: 10px;
                }

            }
        }
    }
}