main .grid-module .wrapper {
    width: 100%;
    z-index: 999;
    height: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 9.75rem;
    gap: 2.5rem;
}
main .grid-module .wrapper .inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    backdrop-filter: blur(40px);
    gap: 2px;
    max-width: 1200px;
}

main .grid-module .wrapper div.card {
    padding: 40px;
    color: white;
    text-align: left;
    background: rgba(170, 186, 220, 0.1);
    position: relative;
    border-radius: 8px;
    z-index: 3;
    display:flex;
    flex-direction: column;
    justify-content: center;
}
main .grid-module .wrapper div.card .number {
    color: #00a1ff;
    text-align: left;
    margin: 1rem 1.5rem;
    font-weight: 600;
}
main .grid-module .wrapper div.card .title {
    color: #fff;
    text-align: left;
}
main .grid-module .wrapper div.card .content {
    text-align: left;
    margin-left: 1.5rem;
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 40px;
    font-weight: 400;
}

main .grid-module .wrapper div.card.has-number .content {
    margin-bottom: 30px;
    margin-top: 0;
}
main .grid-module .wrapper div.card.nomargintop .content {
    margin-top:0 !important;
}
main .grid-module .wrapper div.card.nomargintop:not(.has-number) .content {
    text-align: center;
}
main .grid-module .wrapper div.card::before {
    content: none;
}

main .grid-module .wrapper div.card.has-number::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    width: 8px;
    height: 100px;
    background: linear-gradient(rgba(0, 111, 255, 0.2) 0%, rgba(0, 111, 255, 0) 100%);
    padding: 1rem 1.5rem;
}

main .grid-module .wrapper div.card.has-number.pre_heading_number::before{
    width: 20px;
}

main .grid-module .wrapper div.card.has-number p.square-marker {
    width: 8px;
    height: 8px;
    background-color: rgb(13, 141, 231);
    margin-right: 12px;
    margin-left: 0;
    top: 16px;
    left: 24px;
    display: block;
    position: relative;
}

@media screen and (max-width: 1024px) {


    main .grid-module .wrapper {
        padding: 4rem 1.25rem;
        justify-content: center;
    }

    main .grid-module .wrapper h3 {
        margin-top: 0;
    }

    main .grid-module .wrapper .inner-wrapper {
        grid-template-columns: 100%;
    }
    main .grid-module .wrapper div.card {
        padding: 1.5rem 2.5rem 2.5rem 1.50rem !important;
    }
    main .grid-module .wrapperdiv.card.has-number::before {
        left: 20px;
        height: 90px;
    }

    main .grid-module .wrapper div.card .content {
        font-size: 20px;
    }
    main .grid-module .wrapper div.card.has-number::before{
        left: 24px !important;
        height: 98px;
    }
    main .grid-module .wrapper div.card.has-number.pre_heading_number::before{
        left: 40px;
    }
}
