/* ----- Opportunities ----- */
.opportunity-section {
    margin-top: 70px;
}
.opportunity-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.card-icon svg {
    height: 75px;
}
.opportunity-text {
    width: 50%;
}
.opportunity-text p {
    font-size: clamp(16px, 2vw, 20px);
    margin-top: 30px;
}
.opportunity-img {
    width: 50%;
    height: 400px;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 120px),
        calc(100% - 120px) 100%,
        0 100% 
    );
}
.opportunity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.opportunity-section .gold-card {
    clip-path: none;
}
.swiperOpp .pagination {
    display: none;
}
