.download-brochures-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.download-brochures-container .download-brochures-card {
    display: flex;
    column-gap: 32px;
    font-family: "Akkurat";
    font-style: normal;
    position: relative;
}

.download-brochures-card .download-brochures-img-wrapper {
    border: 1px solid #0000001A;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
    max-height: 97px;
}

.download-brochures-card .download-brochures-img-wrapper img {
    width: 40px;
    height: 40px;
}

.download-brochures-card .download-brochures-text-img-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.download-brochures-card .download-brochures-text-img-wrapper h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 130%;
    color: #000000;
}
.download-brochures-card .download-brochures-text-img-wrapper .download-brochure-desc {
    font-family: "Akkurat";
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #515151;

}

.download-brochures-card .download-brochures-text-img-wrapper .download-with-icon {
    display: flex;
    column-gap: 4px;
}

.download-brochures-card .download-brochures-text-img-wrapper .download-with-icon.download-icon-text-swap {
    flex-direction: row-reverse;
}

.download-brochures-card .download-brochures-text-img-wrapper .download-with-icon img {
    width: 24px;
    height: 24px;
}

.download-brochures-card .download-brochures-text-img-wrapper .download-with-icon p {
    font-size: 20px;
    line-height: 140%;
    text-decoration: underline;
    color: #005F78;
}

.download-brochures-container .download-brochures-card:nth-child(even)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #0000001A;
    left: -56px;
    position: absolute;
}

/* crisil 1 academy look a like style */
.download-brochure-crisil1-academy .download-brochures-container .download-brochures-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 32px;
}
.download-brochure-crisil1-academy .download-brochures-card .download-brochures-text-img-wrapper h2 {
    font-family: "Albra";
}
.download-brochure-crisil1-academy .download-brochures-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.download-brochure-crisil1-academy .download-brochures-container .download-brochures-card:not(:nth-child(3n-2))::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #0000001A;
    left: -56px;
    position: absolute;
}

@media only screen and (max-width: 1000px) {
    .download-brochures-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-brochures-container .download-brochures-card::before {
        display: none;
    }

    .download-brochures-container .download-brochures-card:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -26px;
        width: 100%;
        height: 1px;
        background-color: #0000001A;
    }

    .download-brochures-card .download-brochures-img-wrapper {
        padding: 18px;
        max-height: 70px;
    }

    .download-brochures-card .download-brochures-img-wrapper img {
        width: 28px;
        height: 28px;
    }

    .download-brochures-card .download-brochures-text-img-wrapper h2 {
        font-size: 22px;
    }

    .download-brochures-card .download-brochures-text-img-wrapper .download-with-icon p {
        font-size: 18px;
    }

    .download-brochure-crisil1-academy .download-brochures-container .download-brochures-card {
        flex-direction: row;
    }
    .download-brochure-crisil1-academy .download-brochures-container .download-brochures-card:not(:first-child)::before {
        content: "";
        width: 1px;
        height: 100%;
        background-color: #0000001A;
        left: -56px;
        position: absolute;
    }
}