.opportunity_header {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.opportunity_card {
    border-radius: 16px;
    padding: 16px;
    gap: clamp(32px, 4.375vw, 63px);
}

.opportunity_card:not(:last-child) {
    margin-bottom: 32px;
}

.opportunity_card.card1 {
    background-color: var(--primary-green);
}

.opportunity_card.card2 {
    background-color: var(--blue);
}

.opportunity_card.card3 {
    background-color: var(--orange);
}

.opportunity_card.card4 {
    background-color: var(--primary-yellow);
}

.opportunity_databox p,
.opportunity_databox h4 {
    color: #ffffff;
}

.opportunity_img {
    flex-shrink: 0;
}

.opportunity_img img {
    max-width: 300px;
    width: 100%;
    height: 195px;
    object-fit: contain;
}

.card3 .opportunity_databox p,
.card3 .opportunity_databox h4 {
    color: #000000;
}

.card4 .opportunity_databox p,
.card4 .opportunity_databox h4 {
    color: #000000;
}

@media(max-width: 767px) {
    .opportunity-section {
        padding-top: 0;
    }

    .opportunity_wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .opportunity_img {
        margin-bottom: 32px;
    }

    .opportunity_img img {
        width: 100%;
        display: block;
    }

    .opportunity_databox h4 {
        margin-bottom: 12px !important;
    }

    .opportunity_card a.btn {
        width: 100%;
        padding: 10px;
    }

    .opportunity_card:not(:last-child) {
        margin-bottom: 22px;
    }

}