.achieve-goals-cards-section{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #032576;
    position: relative;
}

.achieve-goals-cards-section .achieve-tablet-bg-image{
    display: none;
}

.achieve-goals-cards-section-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 80px;
    padding: 140px 100px 80px;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.achieve-goals-cards-section-content .main-h2{
    color: var(--n-white);
    text-align: start;
    width: 100%;
    max-width: 800px;
}

.achieve-goals-cards-section-content .achieve-goals-cards{
    display: grid;
    width: 100%;
    align-items: stretch;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.achieve-goals-cards-section-content .achieve-goals-card{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 72px;
    border: 1px solid #85C4FF80;
    border-radius: 16px;
    padding: 20px;
}

.achieve-goals-cards-section-content .achieve-goals-card .main-h4-semibold{
    color: var(--n-white);
    text-wrap-style: auto;
}

.achieve-goals-cards-section-content .achieve-goals-card img{
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

@media screen and (max-width: 1919px) {
    .achieve-goals-cards-section-content{
        padding: 100px 80px 40px;
    }

    .achieve-goals-cards-section-content .main-h2{
        max-width: 640px;
    }

    .achieve-goals-cards-section-content .achieve-goals-card{
        gap: 62px;
    }

    .achieve-goals-cards-section-content .achieve-goals-card img{
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width: 1439px) {
    .achieve-goals-cards-section-content{
        padding: 80px 60px 40px;
    }

    .achieve-goals-cards-section-content .main-h2{
        max-width: 560px;
    }

    .achieve-goals-cards-section-content .achieve-goals-card{
        gap: 36px;
        padding: 16px;
    }

    .achieve-goals-cards-section-content .achieve-goals-card img{
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 1079px) {
    .achieve-goals-cards-section-content {
        background: linear-gradient(180deg, #3A81FB 0%, #032576 100%) !important;
    }

    .achieve-goals-cards-section-content{
        gap: 60px;
        padding: 100px 40px 40px;
        align-items: center;
    }

    .achieve-goals-cards-section-content .main-h2 {
        text-align: center;
        max-width: unset;
    }

    .achieve-goals-cards-section .achieve-tablet-bg-image{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 768 / 251;
        pointer-events: none;
        object-fit: cover;
        object-position: center;
    }

    .achieve-goals-cards-section-content .achieve-goals-cards{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

@media screen and (max-width: 577px) {
    .achieve-goals-cards-section-content{
        gap: 40px;
        padding: 60px 16px 20px;
    }

    .achieve-goals-cards-section-content .main-h2 br{
        display: none;
    }

    .achieve-goals-cards-section .achieve-tablet-bg-image{
        display: none;
    }

    .achieve-goals-cards-section-content .achieve-goals-cards{
        display: flex;
        flex-direction: column;
    }

    .achieve-goals-cards-section-content .achieve-goals-card{
        gap: 16px;
        flex-direction: row;
        align-items: start;
    }
}