.banner-dm {
    position: relative;
    color: #fff;
    display: flex;
    width: 100%;
    /* background: url('./assets/'); */
    background: #00c3eb;
    background: linear-gradient(90deg, rgba(0, 195, 235, 1) 0%, rgba(9, 9, 121, 1) 70%, rgba(2, 0, 36, 1) 100%);
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin-bottom: 50px;
    gap: 90px;
}

.banner-content, .content-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.content-wrapper {
    flex-direction: column;
    width: 100%;
}

.banner-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    padding: 4px;
    width: 45%;
    background: linear-gradient(330deg, #ffffffe8, #ffffff00, white);
}

.banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 100%;
}

.banner-heading {
    font-weight: 700;
    font-size: 46px;
}

.banner-sub-heading {
    font-size: 18px;
}

.banner-span {
    font-weight: 200 !important;
}

.banner-box {
    padding: 10px 100px;
    border: 2px solid #fd3434;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.banner-check-icon {
    height: 20px;
    width: 30px;
}

.banner-text {
    margin-top: 20px;
}

.banner-bottom {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgb(35, 149, 224) 50%, rgba(2, 0, 36, 1) 80%);
    width: 70%;
    display: flex;
    justify-content: center;
    padding: 10px;
    align-items: center;
    gap: 50px;
    /* padding: 20px 0; */
    position: absolute;
    border-radius: 20px;
    bottom: -20px;
}

.bottom-text-wrapper {
    display: flex;
    padding: 5px 10px;
    gap: 5px;
    background: white;
    color: #000;
    align-items: center;
    border-radius: 20px;
}

.bottom-text {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.banner-bottom-icon {
    height: 15px;
    width: 22px;
}

@media screen and (max-width: 768px) {
    .banner-dm {
        flex-direction: column;
        margin-bottom: 70px;
        gap: 20px;
        background: linear-gradient(300deg, rgba(0, 195, 235, 1) 0%, rgba(9, 9, 121, 1) 70%, rgba(2, 0, 36, 1) 100%);
    }

    .banner-heading {
        font-size: 28px;
    }

    .banner-sub-heading {
        font-size: 12px;
    }

    .banner-content, .content-wrapper {
        width: 100%;
    }

    .banner-box {
        padding: 10px 40px;
        font-size: 16px;
    }

    .banner-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .banner-check-icon {
        height: 10px;
        width: 15px;
    }

    .banner-image-wrapper {
        width: 100%;

    }

    .banner-bottom {
        background: linear-gradient(120deg, rgba(2, 0, 36, 1) 0%, rgb(35, 149, 224) 50%, rgba(2, 0, 36, 1) 80%);
        flex-wrap: wrap;
        width: 95%;
        gap: 10px;
        position: absolute;
        border-radius: 10px;
        bottom: -40px;

    }

    .bottom-text-wrapper {
        display: flex;
        padding: 5px 10px;
        gap: 5px;
        background: white;
        color: #000;
        align-items: center;
        border-radius: 20px;
    }

    .bottom-text {
        font-size: 8px;
        margin: 0;
    }

    .banner-bottom-icon {
        height: 15px;
        width: 22px;
    }

}

@media screen and (min-width: 769px) and (max-width: 1260px) {
    .banner-dm {
        gap: 60px;
        margin-bottom: 70px;
        background: linear-gradient(300deg, rgba(0, 195, 235, 1) 0%, rgba(9, 9, 121, 1) 70%, rgba(2, 0, 36, 1) 100%);
    }

    .banner-heading {
        font-size: 36px;
    }

    .banner-sub-heading {
        font-size: 14px;
    }


    .banner-box {
        padding: 10px 80px;
        font-size: 20px;
    }

    .banner-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .banner-check-icon {
        height: 10px;
        width: 15px;
    }

    .banner-image-wrapper {
        width: 45%;

    }

}