.opp-industries-carousel,
.opp-industries-carousel * {
    box-sizing: border-box;
}

.opp-industries-carousel {
    --opp-primary: #06008b;
    --opp-text: #06008b;
    --opp-active-text: #ffffff;
    --opp-card-bg: #ffffff;
    --opp-gap: 36px;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 46px;
    overflow: visible;
    font-family: inherit;
}

.opp-industries-window {
    width: 100%;
    overflow: hidden;
    padding: 4px 0 10px;
}

.opp-industries-track {
    display: flex;
    align-items: stretch;
    gap: var(--opp-gap);
    transform: translateX(0);
    transition: transform 420ms ease;
    will-change: transform;
}

.opp-industry-card {
    flex: 0 0 calc((100% - (var(--opp-gap) * 3)) / 4);
    min-height: 386px;
    background: var(--opp-card-bg);
    border: 5px solid var(--opp-primary);
    border-radius: 29px;
    color: var(--opp-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 72px 30px 38px;
    cursor: pointer;
    transition: background-color 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
    box-shadow: none;
}

.opp-industry-card:hover,
.opp-industry-card.is-active {
    background: var(--opp-primary);
    color: var(--opp-active-text);
}

.opp-industry-card:hover {
    transform: translateY(-2px);
}

.opp-industry-icon {
    width: 154px;
    height: 154px;
    min-width: 154px;
    min-height: 154px;
    border-radius: 50%;
    background: var(--opp-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 43px;
    overflow: hidden;
    transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.opp-industry-card:hover .opp-industry-icon,
.opp-industry-card.is-active .opp-industry-icon {
    background: #ffffff;
    color: var(--opp-primary);
}

.opp-industry-icon svg {
    width: 88px;
    height: 88px;
    display: block;
}

.opp-industry-icon img {
    width: 88px;
    height: 88px;
    max-width: 88px;
    max-height: 88px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 240ms ease, transform 240ms ease;
}

.opp-industry-card:hover .opp-industry-icon img,
.opp-industry-card.is-active .opp-industry-icon img {
    filter: none;
}

.opp-industry-card h3 {
    margin: 0;
    padding: 0;
    color: currentColor;
    font-size: clamp(28px, 2.3vw, 41px);
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -0.7px;
    text-align: center;
    max-width: 100%;
    word-break: normal;
}

.opp-industry-arrow {
    flex: 0 0 auto;
    width: 32px;
    height: 58px;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent !important;
    color: var(--opp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    box-shadow: none !important;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    z-index: 5;
}

.opp-industry-arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    font-weight: 500;
    line-height: 0.7;
    transform: translateY(-2px);
}

.opp-industry-arrow:hover,
.opp-industry-arrow:focus,
.opp-industry-arrow:active {
    color: var(--opp-primary);
    background: transparent !important;
    box-shadow: none !important;
}

.opp-industry-arrow[disabled] {
    opacity: 0.35;
    cursor: default;
}

@media (min-width: 1300px) {
    .opp-industries-carousel {
        padding-left: 0;
        padding-right: 0;
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .opp-industries-carousel {
        --opp-gap: 26px;
        padding: 0 28px;
        gap: 14px;
    }

    .opp-industry-card {
        flex-basis: calc((100% - (var(--opp-gap) * 2)) / 3);
        min-height: 350px;
        padding-top: 55px;
    }

    .opp-industry-icon {
        width: 132px;
        height: 132px;
        min-width: 132px;
        min-height: 132px;
        margin-bottom: 36px;
    }

    .opp-industry-icon svg,
    .opp-industry-icon img {
        width: 78px;
        height: 78px;
        max-width: 78px;
        max-height: 78px;
    }
}

@media (max-width: 900px) {
    .opp-industry-card {
        flex-basis: calc((100% - var(--opp-gap)) / 2);
    }
}

@media (max-width: 640px) {
    .opp-industries-carousel {
        --opp-gap: 18px;
        padding: 0 4px;
        gap: 8px;
    }

    .opp-industries-window {
        padding-top: 2px;
    }

    .opp-industry-card {
        flex-basis: 100%;
        min-height: 320px;
        border-width: 4px;
        border-radius: 24px;
        padding: 42px 20px 32px;
    }

    .opp-industry-icon {
        width: 126px;
        height: 126px;
        min-width: 126px;
        min-height: 126px;
        margin-bottom: 32px;
    }

    .opp-industry-icon svg,
    .opp-industry-icon img {
        width: 74px;
        height: 74px;
        max-width: 74px;
        max-height: 74px;
    }

    .opp-industry-card h3 {
        font-size: 32px;
    }

    .opp-industry-arrow {
        width: 24px;
    }

    .opp-industry-arrow span {
        font-size: 58px;
    }
}
