.color-white {
    color: #FFFFFF !important;
}

.font-24 {
    font-size: 24px !important;
}

.innoexplorer-consumer-img-container {
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.innoexplorer-consumer-img-container img {
    position: absolute;
    bottom: 0px;
    right: 30px;
}

.innoexplorer-consumer-img-container img {
    right: 30px;
    max-width: 490px;
}

.innoexplorer-consumer-img-container .consumer-image {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.consumer-image.is-visible {
    opacity: 1;
}
.green-bouble-text {
    position: absolute;
    box-sizing: border-box;
    padding: 20px;

    display: flex !important;
    justify-content: center;
    align-items: center;
    --bubble-start-scale: 0.1;
    --bubble-end-scale: 1;
    --bubble-grow-duration: 0.5s;

    opacity: 0;
    transform: scale(var(--bubble-start-scale));
    transform-origin: 50% 50%;
    pointer-events: none;
}

.green-bouble-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #009D9C;
    border-radius: 50%;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.3);
}

.green-bouble-text p {
    position: relative;
    z-index: 1;

    margin: 0px;
    color: white;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.45px;
    text-align: center;
    line-height: 1.2;
}


.green-bouble-text.is-visible {
    pointer-events: auto;
    animation:
        bubbleGrow var(--bubble-grow-duration) ease-out forwards;
}

@keyframes bubbleGrow {
    from {
        opacity: 0;
        transform: scale(var(--bubble-start-scale));
    }
    to {
        opacity: 1;
        transform: scale(var(--bubble-end-scale));
    }
}


.green-bouble-1 {
    width: 130px;
    height: 130px;
    top: 45px;
    left: 110px;
    z-index: 1;
}

.green-bouble-1,
.green-bouble-2,
.green-bouble-3,
.green-bouble-5 {
    width: 130px;
    height: 130px;
    z-index: 1;
}

.green-bouble-1 {
    top: 45px;
    left: 110px;
}

.green-bouble-2 {
    top: 45px;
    right: 160px;
}

.green-bouble-3 {
    top: 100px;
    right: 16px;
}

.green-bouble-4 {
    width: 170px;
    height: 170px;
    bottom: 40px;
    left: 90px;
    z-index: 3;
}

.green-bouble-5 {
    bottom: 100px;
    right: 100px;
    width: 140px;
    height: 140px;
}

.lblGreen {
    color: #009D9C;
}

.consumer-text-container {
    padding-left: 100px;
    padding-right: 50px;
}

.step-box {
    background: #fff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.first-card {
    background-color: #D8ECEC;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 30px;
    position: relative;
    gap: 0px;
    z-index: 2;
}

.first-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: url('../img/inno/inno-explorer-consumer.png') no-repeat;
    width: 260px;
    height: 240px;
    background-size: contain;
    margin-bottom: -20px;
}

.first-card::after,
.maximize-result-container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-right: -57px;
    transform: translateY(-50%) scale(0);
    width: 80px;
    height: 80px;
    background: url('../img/inno/inno_explorer_blue_arrow.svg') no-repeat;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}
.maximize-result-container{
    position: relative;
}
.maximize-result-container::after {
    width: 48px;
    height: 48px;
    transform: rotate(90deg);
    opacity: 1;
    right: auto;
    margin-right: auto;
    left: 50%;
    margin-left: -24px;
    top: 100%;
    bottom: 0;
    margin-bottom: -22px;
    background-size: cover;
}
.first-card, .step-box:not(.first-card) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.first-card-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 50%;
}

.first-card-content h2 {
    font-size: 24px;
    color: #2D2D2D;
}

.first-card-content p {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.step-number {
    font-size: 5.875rem;
    font-weight: 700;
    line-height: 1;
    color: #e5f4f3;
}

.step-text {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    line-height: 1.2;
}

.step-box.is-visible,
.first-card.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.show-arrow::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.equal-height-row {
    overflow: visible;
}
.list-style-bullet {
    list-style-type: disc;
}

.col-md-54 {
    -ms-flex: 0 0 54%;
    flex: 0 0 54%;
    max-width: 54%;
}

.col-md-46 {
    -ms-flex: 0 0 46%;
    flex: 0 0 46%;
    max-width: 46%;
}

@media (min-width: 992px) {
    .equal-height-row {
        display: flex;
    }
}

@media(max-width: 768px) {
    .first-card::after {
        margin-right: 0px;
        top: auto;
        right: auto;
        bottom: 0px;
        left: 50%;
        margin-left: -40px;
        margin-bottom: -40px;
        transform: rotate(90deg) scale(0);
    }
    .show-arrow::after {
        transform: rotate(90deg) scale(1);
    }
    .col-md-54,
    .col-md-46 {
        max-width: 100%;
        flex: 100%;
    }
}

.concept-card {
    background-color: #F7F8FA;
    padding: 35px 10px;
    text-align: center;
    height: 100%;
}

.concept-card h2 {
    font-weight: 700;
    font-size: 64px;
    background: linear-gradient(135deg, #0097a7 0%, #283593 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.concept-label {
    font-weight: 600;
    font-size: 18px;
    color: #2D2D2D;
    line-height: 1.2;
}

.operator-plus {
    font-size: 64px;
    color: #009D9C;
    font-weight: 400;
    text-align: center;
}

.result-wrapper {
    margin-top: 30px;
    display: flex;
}

.gradient-stat-box {
    background: linear-gradient(135deg, #0097a7 0%, #283593 100%);
    color: white;
    padding: 25px;
    min-width: 180px;
    text-align: center;
}

.gradient-stat-box h2 {
    font-size: 64px;
    letter-spacing: 0.25px;
}

.gradient-stat-box span {
    color: #FFF;
    font-weight: 600;
}

.result-text-box {
    background: #F7F8FA;
    padding: 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-text-box h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2D2D2D;
}

.result-text-box p {
    font-size: 15px;
    color: #2D2D2D;
    margin-bottom: 0;
    line-height: 1.4;
}

.unlock-unmet-needs-container {
    border: solid 8px #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    background: #12195F;
    padding: 24px;
}

.stat-card {
    background-color: white;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-value {
    font-size: 36px;
    font-weight: 600;
    color: #2D2D2D;
    line-height: 1;
    margin-bottom: 0px;
}
.border-bottom-grey{
    border-bottom: solid 1px #e1e1e1;
}
.opacity-3{
    opacity: 0.3;
}
.clear{
    clear: both;
}
.bgr-teal{
    background: #009D9C !important;
}
.line-height-1-2{
    line-height: 1.2 !important;
}
.full-width-separator{
    height: 1px;
    width: 100%;
    margin: 20px 0px;
    background-color: #E1E1E1;
}
.lblBlue{
    color: #121B5A !important
}
.innovation-cicles-item{
    padding: 24px;
    background: white;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.innovation-cicles-item-icon-container{
    background: linear-gradient(135deg, #0097a7 0%, #283593 100%);
    padding: 30px;
}
@media(max-width: 1200px){
    .green-bouble-1{
        left: 0px;
    }
}
@media(max-width: 992px) {
    .container{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

}
@media (max-width: 768px) {
    .green-bouble-text {
        --bubble-end-scale: 0.6;
    }
    .consumer-text-container{
        padding: 0px;
    }
    .result-wrapper{
        display: block;
    }
    .innoexplorer-consumer-img-container .consumer-image{
        width: 100%;
    }
    .green-bouble-1{
        left: 0px;
        top: 50px;
        margin-left: -20px;
    }
    .green-bouble-2{
        top: 40px;
        right: 42px;
    }
    .green-bouble-3{
        right: 0px;
        margin-right: -15px;
    }
    .green-bouble-4{
        left: 0px;
        bottom: -10px;
    }
    .green-bouble-5{
        right: 0px;
        bottom: 130px;
        margin-right: -20px;
    }
}
@media (max-width: 768px) {
    .px-0-mobile{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .unlock-unmet-needs-container{
        border: 0px !important;
    }
    .font-14-mobile{
        font-size: 14px !important;
        letter-spacing: -0.8px !important;
    }
}
