/* ==========================================================================
   Layout: How It Works
   ========================================================================== */

.pb-hiw {
    border-radius: 8px;
    margin: 16px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.02), 0 4px 22px 0 rgba(0, 0, 0, 0.04), 0 10px 58px 0 rgba(0, 0, 0, 0.05), 0 19px 134px 0 rgba(0, 0, 0, 0.07);
    background: var(--brand-blue-500);
    position: relative;
    overflow: hidden;
}

.pb-hiw:after {
    bottom: auto;
    top: 0;
    background-position: top;
    background-image: url("data:image/svg+xml,%3Csvg width='1408' height='874' viewBox='0 0 1408 874' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_5169_6604)'%3E%3Cpath d='M1857.28 807.52L1976.24 425.447L2121.22 -234.588L13.8892 -919.999L-267.704 -54.2249L-29.269 50.0527L889.149 54.363L1470.4 183.066L1857.28 807.52Z' fill='%23C22383' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_5169_6604' x='-667.704' y='-1320' width='3188.93' height='2527.52' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='200' result='effect1_foregroundBlur_5169_6604' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.pb-hiw__inner {
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    display: flex;
    gap: 20px;
    overflow: hidden;
    padding: 100px 16px;
}

/* Content (left) ---------------------------------------------------------- */

.pb-hiw__content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.pb-hiw__inner .gfBtn {
    margin-top: 40px;
}

.pb-hiw__label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white-tranparent-60);
    margin: 0 0 40px 0;
}

.pb-hiw__heading {
    font-family: var(--second-family);
    font-weight: 550;
    font-size: 54px;
    line-height: 119%;
    letter-spacing: -0.02em;
    background: linear-gradient(159deg, rgba(255, 255, 255, 0.9) 0%, #fff 50%, rgba(255, 255, 255, 0.9) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 60px 0;
}

/* Feature list ------------------------------------------------------------ */

.pb-hiw__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pb-hiw__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pb-hiw__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.pb-hiw__item-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pb-hiw__item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}

.pb-hiw__item-title {
    font-family: var(--second-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    letter-spacing: 0.18px;
    color: var(--base-white, #FFF);
}

.gfBtn--ctaWhite {
    width: max-content;
}

.pb-hiw__item-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}

/* CTA button -------------------------------------------------------------- */

.pb-hiw__cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #fff;
    color: var(--text-heading, #111);
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    width: fit-content;
    transition: opacity 0.2s ease;
}

.pb-hiw__cta:hover {
    opacity: 0.9;
}

.pb-hiw__cta>span:first-child {
    padding: 14px 20px;
}

.pb-hiw__cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1B5DF8;
    color: #fff;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

/* Media (right) ----------------------------------------------------------- */

.pb-hiw__media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-hiw__image-frame {
    border-radius: 12px;
    border: 13px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
    width: 100%;
    line-height: 0;
}

.pb-hiw__image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
        transform: scale(1.05);

}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1024px) {
    .pb-hiw__inner {
        padding: 56px 40px;
        gap: 36px;
    }

    .pb-hiw__content {
        flex: 0 0 46%;
    }
}

@media (max-width: 768px) {
        .single-solutions .pb-ls .pb-ls__track{
        animation: none;
    }
    .pb-hiw {
        padding: 12px;
    }
.pb-hiw__image-frame{
    border-radius: 8px;
border: 7px solid #FFF;
}
.pb-hiw .gfBtn:not(.gfBtn--text):not(.gfBtn--textLight):not(.gfBtn--iconOnly){
    margin-top: 0;
}
.pb-hiw__item {
    align-items: flex-start;
}
    .pb-hiw__inner {
        flex-direction: column;
        padding: 48px 28px;
        gap: 40px;
        border-radius: 16px;
    }

    .pb-hiw__content {
        flex: none;
    }

    .pb-hiw__media {
        width: 100%;
    }

    .pb-hiw__inner {
        padding: 16px 0 0 0;
    }

    .pb-hiw__label {
        font-size: 15px;
        line-height: 160%;
        letter-spacing: 0.05em;
        margin-bottom: 24px;
    }

    .pb-hiw__heading {
        font-size: 28px;
        line-height: 129%;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }

    .pb-hiw__list {
        gap: 16px;
        margin-bottom: 24px;
    }

    .pb-hiw__item-title {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.01em;
    }

    .pb-hiw__item-desc {
        font-size: 14px;
        line-height: 157%;
        letter-spacing: 0.02em;
    }
    .single-solutions .pb-ls{
        padding: 60px 0 40px 0;
    }
}