.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-2b47d76 *//* =========================================
   KSH HERO
   ساخت سوله در شهرکرد
   Scoped Component
========================================= */

.ksh-hero {
    --ksh-navy: #051934;
    --ksh-gold: #EEAD16;
    --ksh-white: #ffffff;
    --ksh-text-soft: #c5ced8;

    width: 100%;
    position: relative;
    background: var(--ksh-navy);
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================
   Container
========================================= */

.ksh-hero *,
.ksh-hero *::before,
.ksh-hero *::after {
    box-sizing: border-box;
}

.ksh-hero__container {
    width: min(1240px, calc(100% - 40px));
    min-height: 690px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;

    gap: 70px;
    padding: 70px 0;

    position: relative;
    z-index: 2;
}


/* =========================================
   Background technical detail
========================================= */

.ksh-hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    left: -220px;
    bottom: -300px;

    border: 1px solid rgba(238, 173, 22, 0.14);
    border-radius: 50%;
}

.ksh-hero::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 38%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.018)
        );

    pointer-events: none;
}


/* =========================================
   Content
========================================= */

.ksh-hero__content {
    position: relative;
    z-index: 3;
    padding: 20px 0;
}


/* =========================================
   Eyebrow
========================================= */

.ksh-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: var(--ksh-gold);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;

    letter-spacing: 0.2px;
}

.ksh-hero__eyebrow-line {
    width: 38px;
    height: 2px;

    display: inline-block;

    background: var(--ksh-gold);
}


/* =========================================
   H1
========================================= */

.ksh-hero__title {
    margin: 0;

    color: var(--ksh-white);

    font-size: clamp(42px, 4.5vw, 70px);
    font-weight: 800;

    line-height: 1.25;
    letter-spacing: -1.5px;
}

.ksh-hero__title span {
    display: block;
    color: var(--ksh-gold);
}


/* =========================================
   Description
========================================= */

.ksh-hero__description {
    max-width: 590px;

    margin: 26px 0 0;

    color: var(--ksh-text-soft);

    font-size: 17px;
    line-height: 2.15;
    font-weight: 400;
}


/* =========================================
   Buttons
========================================= */

.ksh-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.ksh-hero__button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 3px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ksh-hero__button--primary {
    background: var(--ksh-gold);
    color: var(--ksh-navy);
}

.ksh-hero__button--primary:hover {
    background: #f4bd32;
    color: var(--ksh-navy);
    transform: translateY(-2px);
}

.ksh-hero__button--secondary {
    color: var(--ksh-white);
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
}

.ksh-hero__button--secondary:hover {
    color: var(--ksh-gold);
    border-color: var(--ksh-gold);
}


/* =========================================
   Features
========================================= */

.ksh-hero__features {
    display: flex;
    align-items: stretch;

    margin-top: 48px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding-top: 24px;
}

.ksh-hero__feature {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 7px;

    padding-left: 24px;

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ksh-hero__feature:first-child {
    padding-right: 0;
}

.ksh-hero__feature:last-child {
    border-left: 0;
}

.ksh-hero__feature strong {
    color: var(--ksh-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.ksh-hero__feature span {
    color: var(--ksh-white);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   Visual
========================================= */

.ksh-hero__visual {
    position: relative;

    min-height: 510px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   Image Frame
========================================= */

.ksh-hero__image-frame {
    width: 100%;
    height: 510px;

    position: relative;

    overflow: hidden;

    border-radius: 2px;

    background: #0a2545;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28);
}

.ksh-hero__image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    filter: saturate(0.85);
}

.ksh-hero__image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 52, 0.05) 0%,
            rgba(5, 25, 52, 0.08) 50%,
            rgba(5, 25, 52, 0.55) 100%
        );

    pointer-events: none;
}


/* =========================================
   Technical Label
========================================= */

.ksh-hero__technical-box {
    position: absolute;

    left: -24px;
    bottom: 35px;

    min-width: 155px;

    padding: 16px 20px;

    display: flex;
    flex-direction: column;

    gap: 3px;

    background: var(--ksh-gold);

    color: var(--ksh-navy);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.ksh-hero__technical-box span {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.ksh-hero__technical-box strong {
    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


/* =========================================
   Vertical Technical Line
========================================= */

.ksh-hero__vertical-line {
    position: absolute;

    right: -16px;
    top: 45px;

    width: 2px;
    height: 105px;

    background: var(--ksh-gold);
}


/* =========================================
   Corner
========================================= */

.ksh-hero__corner {
    position: absolute;

    right: -10px;
    bottom: -10px;

    width: 70px;
    height: 70px;

    border-right: 2px solid var(--ksh-gold);
    border-bottom: 2px solid var(--ksh-gold);

    pointer-events: none;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 1024px) {

    .ksh-hero__container {
        min-height: auto;

        grid-template-columns: 1fr 1fr;

        gap: 40px;

        padding: 55px 0;
    }

    .ksh-hero__title {
        font-size: clamp(38px, 5vw, 54px);
    }

    .ksh-hero__description {
        font-size: 15px;
    }

    .ksh-hero__visual {
        min-height: 430px;
    }

    .ksh-hero__image-frame {
        height: 430px;
    }

    .ksh-hero__technical-box {
        left: -12px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .ksh-hero {
        overflow: hidden;
    }

    .ksh-hero__container {
        width: min(100% - 28px, 600px);

        display: flex;
        flex-direction: column;

        gap: 38px;

        padding: 48px 0 55px;
    }

    .ksh-hero__content {
        width: 100%;
        padding: 0;
    }

    .ksh-hero__eyebrow {
        margin-bottom: 16px;

        font-size: 12px;
    }

    .ksh-hero__eyebrow-line {
        width: 28px;
    }

    .ksh-hero__title {
        font-size: clamp(36px, 10vw, 48px);

        line-height: 1.3;

        letter-spacing: -0.8px;
    }

    .ksh-hero__description {
        margin-top: 20px;

        font-size: 14px;
        line-height: 2;

        max-width: 100%;
    }

    .ksh-hero__actions {
        margin-top: 26px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }

    .ksh-hero__button {
        width: 100%;

        min-height: 49px;

        padding: 0 12px;

        font-size: 12px;
    }

    .ksh-hero__features {
        margin-top: 34px;

        padding-top: 19px;
    }

    .ksh-hero__feature {
        padding-left: 12px;
    }

    .ksh-hero__feature span {
        font-size: 11px;
    }

    .ksh-hero__visual {
        width: 100%;

        min-height: 300px;
    }

    .ksh-hero__image-frame {
        height: 300px;
    }

    .ksh-hero__technical-box {
        left: -8px;
        bottom: 18px;

        min-width: 125px;

        padding: 11px 14px;
    }

    .ksh-hero__technical-box span {
        font-size: 9px;
    }

    .ksh-hero__technical-box strong {
        font-size: 12px;
    }

    .ksh-hero__vertical-line {
        right: -7px;
        top: 25px;

        height: 70px;
    }

    .ksh-hero__corner {
        right: -5px;
        bottom: -5px;

        width: 48px;
        height: 48px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 420px) {

    .ksh-hero__container {
        width: calc(100% - 22px);

        padding-top: 40px;
    }

    .ksh-hero__title {
        font-size: 34px;
    }

    .ksh-hero__actions {
        grid-template-columns: 1fr;
    }

    .ksh-hero__features {
        gap: 0;
    }

    .ksh-hero__feature {
        padding-left: 8px;
    }

    .ksh-hero__feature span {
        font-size: 10px;
    }

    .ksh-hero__visual,
    .ksh-hero__image-frame {
        height: 260px;
        min-height: 260px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f50c2e9 *//* =========================================
   KSH INTRO 02
   ساخت سوله در شهرکرد
   Scoped / RTL / Responsive
========================================= */

.ksh-intro2 {
    --ksh-i2-navy: #051934;
    --ksh-i2-gold: #EEAD16;
    --ksh-i2-bg: #F7F9FB;
    --ksh-i2-white: #FFFFFF;
    --ksh-i2-text: #293749;
    --ksh-i2-muted: #687587;
    --ksh-i2-border: #DDE3E9;

    width: 100%;
    padding: 100px 20px;
    background: var(--ksh-i2-bg);

    direction: rtl;
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-intro2 *,
.ksh-intro2 *::before,
.ksh-intro2 *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.ksh-intro2__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.ksh-intro2__header {
    display: flex;
    align-items: flex-start;
    gap: 28px;

    margin-bottom: 55px;
}

.ksh-intro2__number {
    flex: 0 0 auto;

    font-size: 12px;
    font-weight: 800;
    color: var(--ksh-i2-gold);

    letter-spacing: 2px;

    padding-top: 12px;

    position: relative;
}

.ksh-intro2__number::after {
    content: "";

    position: absolute;

    top: 8px;
    right: -15px;

    width: 2px;
    height: 34px;

    background: var(--ksh-i2-gold);
}


.ksh-intro2__heading {
    max-width: 700px;
}

.ksh-intro2__eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--ksh-i2-muted);

    font-size: 13px;
    font-weight: 600;
}


.ksh-intro2__heading h2 {
    margin: 0;

    color: var(--ksh-i2-navy);

    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.55;
    font-weight: 800;
}

.ksh-intro2__heading h2 span {
    color: var(--ksh-i2-gold);
}


/* =========================================
   BODY
========================================= */

.ksh-intro2__body {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);

    gap: 75px;

    align-items: start;
}


/* =========================================
   CONTENT
========================================= */

.ksh-intro2__content {
    min-width: 0;

    color: var(--ksh-i2-text);
}

.ksh-intro2__content > p {
    margin: 0 0 25px;

    font-size: 16px;
    line-height: 2.25;

    color: var(--ksh-i2-text);
}


/* =========================================
   HIGHLIGHT
========================================= */

.ksh-intro2__highlight {
    position: relative;

    margin: 32px 0;

    padding: 24px 28px 24px 25px;

    background: var(--ksh-i2-navy);

    color: var(--ksh-i2-white);

    border-radius: 3px;

    overflow: hidden;
}

.ksh-intro2__highlight::after {
    content: "";

    position: absolute;

    left: -45px;
    bottom: -45px;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(238, 173, 22, 0.25);

    transform: rotate(45deg);
}

.ksh-intro2__highlight-mark {
    position: absolute;

    top: 0;
    right: 0;

    width: 4px;
    height: 100%;

    background: var(--ksh-i2-gold);
}

.ksh-intro2__highlight p {
    position: relative;
    z-index: 1;

    margin: 0;

    font-size: 15.5px;
    line-height: 2.25;
}

.ksh-intro2__highlight strong {
    color: var(--ksh-i2-gold);
    font-weight: 800;
}


/* =========================================
   QUESTIONS
========================================= */

.ksh-intro2__questions {
    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid var(--ksh-i2-border);
}

.ksh-intro2__questions-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 13px;

    color: var(--ksh-i2-navy);

    font-size: 15px;
    font-weight: 800;
}

.ksh-intro2__questions-title span {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    background: var(--ksh-i2-gold);

    transform: rotate(45deg);
}

.ksh-intro2__questions p {
    margin: 0;

    color: var(--ksh-i2-text);

    font-size: 15.5px;
    line-height: 2.2;
}


/* =========================================
   ARTICLE GUIDE
========================================= */

.ksh-intro2__article-guide {
    margin-top: 28px;

    padding-right: 18px;

    border-right: 2px solid var(--ksh-i2-gold);
}

.ksh-intro2__article-guide p {
    margin: 0;

    color: var(--ksh-i2-navy);

    font-size: 15.5px;
    line-height: 2.2;

    font-weight: 700;
}


/* =========================================
   IMAGE
========================================= */

.ksh-intro2__visual {
    position: relative;

    width: 100%;
}

.ksh-intro2__image-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 0.82 / 1;

    overflow: hidden;

    background: var(--ksh-i2-navy);

    border-radius: 3px;
}

.ksh-intro2__image-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* Image bottom gradient */

.ksh-intro2__image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 25, 52, 0.72),
            rgba(5, 25, 52, 0.02) 55%
        );

    pointer-events: none;
}


/* Technical label */

.ksh-intro2__image-label {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 2;

    padding-right: 13px;

    border-right: 3px solid var(--ksh-i2-gold);

    color: var(--ksh-i2-white);

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.ksh-intro2__image-label span {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.75;
}

.ksh-intro2__image-label strong {
    font-size: 15px;

    line-height: 1.35;

    letter-spacing: 1px;
}


/* Vertical decorative line */

.ksh-intro2__vertical-line {
    position: absolute;

    top: 30px;
    left: -22px;

    width: 1px;
    height: 150px;

    background: var(--ksh-i2-gold);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .ksh-intro2 {
        padding: 80px 24px;
    }

    .ksh-intro2__body {
        gap: 45px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 360px);
    }

    .ksh-intro2__heading h2 {
        font-size: 34px;
    }

    .ksh-intro2__content > p,
    .ksh-intro2__highlight p,
    .ksh-intro2__questions p,
    .ksh-intro2__article-guide p {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .ksh-intro2 {
        padding: 65px 18px;
    }

    .ksh-intro2__header {
        gap: 18px;

        margin-bottom: 35px;
    }

    .ksh-intro2__number {
        font-size: 10px;

        padding-top: 8px;
    }

    .ksh-intro2__number::after {
        top: 5px;
        right: -10px;

        height: 28px;
    }

    .ksh-intro2__eyebrow {
        margin-bottom: 6px;

        font-size: 11px;
    }

    .ksh-intro2__heading h2 {
        font-size: 26px;

        line-height: 1.65;
    }


    .ksh-intro2__body {
        display: flex;
        flex-direction: column;

        gap: 38px;
    }


    .ksh-intro2__content > p {
        margin-bottom: 20px;

        font-size: 14px;
        line-height: 2.15;

        text-align: justify;
    }


    .ksh-intro2__highlight {
        margin: 25px 0;

        padding: 20px 22px 20px 18px;
    }

    .ksh-intro2__highlight p {
        font-size: 14px;
        line-height: 2.15;

        text-align: justify;
    }


    .ksh-intro2__questions {
        margin-top: 25px;

        padding-top: 21px;
    }

    .ksh-intro2__questions-title {
        font-size: 14px;
        line-height: 1.8;
    }

    .ksh-intro2__questions p {
        font-size: 14px;
        line-height: 2.15;

        text-align: justify;
    }


    .ksh-intro2__article-guide {
        margin-top: 23px;

        padding-right: 14px;
    }

    .ksh-intro2__article-guide p {
        font-size: 14px;
        line-height: 2.1;

        text-align: justify;
    }


    .ksh-intro2__visual {
        width: 100%;
    }

    .ksh-intro2__image-frame {
        aspect-ratio: 1 / 0.92;
    }

    .ksh-intro2__image-label {
        right: 18px;
        bottom: 18px;

        padding-right: 10px;
    }

    .ksh-intro2__image-label strong {
        font-size: 12px;
    }

    .ksh-intro2__vertical-line {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .ksh-intro2 {
        padding: 55px 15px;
    }

    .ksh-intro2__heading h2 {
        font-size: 23px;
    }

    .ksh-intro2__content > p,
    .ksh-intro2__highlight p,
    .ksh-intro2__questions p,
    .ksh-intro2__article-guide p {
        font-size: 13.5px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-20a3b19 *//* =========================================
   KSH PROCESS SECTION
   ساخت سوله شهرکرد چگونه انجام می‌شود؟
   ========================================= */

.ksh-process {
    --kshp-navy: #051934;
    --kshp-navy-soft: #0a2647;
    --kshp-gold: #EEAD16;
    --kshp-bg: #F7F9FB;
    --kshp-white: #ffffff;
    --kshp-text: #263446;
    --kshp-muted: #697586;
    --kshp-border: #dfe5eb;

    width: 100%;
    padding: 95px 20px;
    background: var(--kshp-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-process *,
.ksh-process *::before,
.ksh-process *::after {
    box-sizing: border-box;
}

.ksh-process__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.ksh-process__header {
    margin-bottom: 55px;
    position: relative;
}

.ksh-process__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: var(--kshp-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.ksh-process__eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--kshp-gold);
    display: block;
}

.ksh-process__title {
    margin: 0;
    padding-right: 18px;

    position: relative;

    color: var(--kshp-navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.5;
    font-weight: 800;
}

.ksh-process__title::before {
    content: "";
    position: absolute;

    right: 0;
    top: 12px;

    width: 4px;
    height: 58px;

    background: var(--kshp-gold);
    border-radius: 20px;
}


/* =========================================
   INTRO
   ========================================= */

.ksh-process__intro {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);

    background: var(--kshp-white);
    border: 1px solid var(--kshp-border);

    margin-bottom: 70px;

    box-shadow: 0 15px 45px rgba(5, 25, 52, 0.05);
}

.ksh-process__intro-mark {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 30px;

    background: var(--kshp-navy);

    color: var(--kshp-gold);

    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ksh-process__intro-text {
    padding: 34px 42px;
}

.ksh-process__intro-text p {
    margin: 0;

    color: var(--kshp-text);

    font-size: 17px;
    line-height: 2.25;
    font-weight: 400;
}


/* =========================================
   STAGE
   ========================================= */

.ksh-process__stage {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);

    margin-bottom: 42px;
}

.ksh-process__stage-number {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 5px;

    border: 1px solid var(--kshp-gold);

    color: var(--kshp-gold);

    font-size: 14px;
    font-weight: 800;

    position: relative;
}

.ksh-process__stage-number::after {
    content: "";

    position: absolute;

    top: 100%;
    right: 50%;

    width: 1px;
    height: 38px;

    background: var(--kshp-gold);

    transform: translateX(50%);
}

.ksh-process__stage-content {
    padding-right: 12px;
}

.ksh-process__stage-content h3 {
    margin: 0 0 16px;

    color: var(--kshp-navy);

    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.6;
    font-weight: 800;
}

.ksh-process__line {
    width: 48px;
    height: 3px;

    margin-bottom: 22px;

    background: var(--kshp-gold);

    border-radius: 10px;
}

.ksh-process__stage-content p {
    max-width: 920px;

    margin: 0;

    color: var(--kshp-text);

    font-size: 16px;
    line-height: 2.25;
}


/* =========================================
   CHECKLIST
   ========================================= */

.ksh-process__checklist {
    margin-right: 90px;
    margin-bottom: 45px;
}

.ksh-process__checklist-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: var(--kshp-navy);

    font-size: 17px;
    font-weight: 800;
}

.ksh-process__checklist-title span {
    width: 5px;
    height: 28px;

    background: var(--kshp-gold);

    border-radius: 10px;
}


.ksh-process__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ksh-process__item {
    min-height: 72px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    background: var(--kshp-white);

    border: 1px solid var(--kshp-border);

    transition: border-color 0.2s ease,
                transform 0.2s ease;
}

.ksh-process__item:hover {
    border-color: var(--kshp-gold);
    transform: translateY(-2px);
}

.ksh-process__item-number {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(238, 173, 22, 0.1);

    color: var(--kshp-gold);

    font-size: 11px;
    font-weight: 800;
}

.ksh-process__item-text {
    color: var(--kshp-text);

    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
}


/* =========================================
   CONCLUSION
   ========================================= */

.ksh-process__conclusion {
    display: flex;
    align-items: stretch;

    margin-right: 90px;

    background: var(--kshp-navy);

    overflow: hidden;
}

.ksh-process__conclusion-accent {
    flex: 0 0 5px;

    background: var(--kshp-gold);
}

.ksh-process__conclusion p {
    margin: 0;
    padding: 25px 30px;

    color: var(--kshp-white);

    font-size: 16px;
    line-height: 2.1;
    font-weight: 600;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .ksh-process {
        padding: 75px 18px;
    }

    .ksh-process__intro {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .ksh-process__intro-text {
        padding: 28px 30px;
    }

    .ksh-process__stage {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .ksh-process__checklist,
    .ksh-process__conclusion {
        margin-right: 70px;
    }

    .ksh-process__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .ksh-process {
        padding: 60px 15px;
    }

    .ksh-process__header {
        margin-bottom: 35px;
    }

    .ksh-process__title {
        padding-right: 14px;

        font-size: 25px;
        line-height: 1.65;
    }

    .ksh-process__title::before {
        width: 3px;
        height: 45px;
        top: 10px;
    }


    /* Intro */

    .ksh-process__intro {
        display: block;
        margin-bottom: 50px;
    }

    .ksh-process__intro-mark {
        min-height: 42px;

        justify-content: flex-start;

        padding: 10px 18px;
    }

    .ksh-process__intro-text {
        padding: 22px 20px;
    }

    .ksh-process__intro-text p {
        font-size: 15px;
        line-height: 2.15;
    }


    /* Stage */

    .ksh-process__stage {
        display: block;
        margin-bottom: 35px;
    }

    .ksh-process__stage-number {
        width: 46px;
        height: 46px;

        margin-bottom: 20px;
    }

    .ksh-process__stage-number::after {
        display: none;
    }

    .ksh-process__stage-content {
        padding-right: 0;
    }

    .ksh-process__stage-content h3 {
        font-size: 21px;
        line-height: 1.7;
    }

    .ksh-process__stage-content p {
        font-size: 15px;
        line-height: 2.15;
    }


    /* Checklist */

    .ksh-process__checklist {
        margin-right: 0;
        margin-bottom: 35px;
    }

    .ksh-process__checklist-title {
        align-items: flex-start;

        font-size: 15px;
        line-height: 1.8;
    }

    .ksh-process__items {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .ksh-process__item {
        min-height: 64px;

        padding: 12px 14px;
    }

    .ksh-process__item-text {
        font-size: 14px;
    }


    /* Conclusion */

    .ksh-process__conclusion {
        margin-right: 0;
    }

    .ksh-process__conclusion p {
        padding: 20px 18px;

        font-size: 14px;
        line-height: 2.1;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 380px) {

    .ksh-process__title {
        font-size: 22px;
    }

    .ksh-process__intro-text {
        padding: 20px 16px;
    }

    .ksh-process__stage-content h3 {
        font-size: 19px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5e38b25 *//* =========================================
   KSH INDUSTRIAL DESIGN
   طراحی سوله صنعتی
   ========================================= */

.ksh-design {
    --kshd-navy: #051934;
    --kshd-navy-soft: #0a2647;
    --kshd-gold: #EEAD16;
    --kshd-bg: #ffffff;
    --kshd-bg-soft: #F7F9FB;
    --kshd-text: #263446;
    --kshd-muted: #697586;
    --kshd-border: #dfe5eb;
    --kshd-white: #ffffff;

    width: 100%;
    padding: 100px 20px;
    background: var(--kshd-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-design *,
.ksh-design *::before,
.ksh-design *::after {
    box-sizing: border-box;
}

.ksh-design__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.ksh-design__header {
    margin-bottom: 55px;
}

.ksh-design__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 14px;

    color: var(--kshd-gold);

    font-size: 13px;
    font-weight: 800;
}

.ksh-design__eyebrow span {
    width: 35px;
    height: 2px;

    background: var(--kshd-gold);

    display: block;
}

.ksh-design__title {
    position: relative;

    margin: 0;
    padding-right: 18px;

    color: var(--kshd-navy);

    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.55;
    font-weight: 800;
}

.ksh-design__title::before {
    content: "";

    position: absolute;
    right: 0;
    top: 12px;

    width: 4px;
    height: 58px;

    background: var(--kshd-gold);

    border-radius: 20px;
}


/* =========================================
   MAIN CONTENT
   ========================================= */

.ksh-design__main {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);

    gap: 65px;

    align-items: center;

    margin-bottom: 70px;
}

.ksh-design__content {
    order: 1;
}

.ksh-design__content p {
    margin: 0;

    color: var(--kshd-text);

    font-size: 17px;
    line-height: 2.35;
}


/* =========================================
   VISUAL
   ========================================= */

.ksh-design__visual {
    order: 2;
}

.ksh-design__visual-frame {
    position: relative;

    width: 100%;
    min-height: 390px;

    overflow: hidden;

    background: var(--kshd-navy);
}

.ksh-design__visual-frame img {
    width: 100%;
    height: 390px;

    display: block;

    object-fit: cover;
    object-position: center;

    filter: saturate(0.8);
}

.ksh-design__visual-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(5, 25, 52, 0.05) 35%,
            rgba(5, 25, 52, 0.58) 100%
        );

    pointer-events: none;
}

.ksh-design__visual-label {
    position: absolute;

    right: 22px;
    bottom: 20px;

    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 2px;

    padding-right: 13px;

    border-right: 3px solid var(--kshd-gold);
}

.ksh-design__visual-label span {
    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}

.ksh-design__visual-label strong {
    color: var(--kshd-white);

    font-size: 15px;
    letter-spacing: 1px;
}

.ksh-design__visual-corner {
    position: absolute;

    left: 18px;
    top: 18px;

    z-index: 2;

    width: 55px;
    height: 55px;

    border-left: 2px solid var(--kshd-gold);
    border-top: 2px solid var(--kshd-gold);

    opacity: 0.9;
}


/* =========================================
   BENEFITS
   ========================================= */

.ksh-design__benefits {
    margin-bottom: 85px;
}

.ksh-design__benefits-head {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: var(--kshd-navy);

    font-size: 17px;
    font-weight: 800;
}

.ksh-design__benefits-head span {
    width: 5px;
    height: 28px;

    background: var(--kshd-gold);

    border-radius: 10px;
}

.ksh-design__benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--kshd-border);
    border-bottom: 1px solid var(--kshd-border);
}

.ksh-design__benefit {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px 22px;

    border-left: 1px solid var(--kshd-border);
}

.ksh-design__benefit:first-child {
    border-right: 1px solid var(--kshd-border);
}

.ksh-design__benefit:last-child {
    border-left: none;
}

.ksh-design__benefit-number {
    color: var(--kshd-gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ksh-design__benefit p {
    margin: 0;

    color: var(--kshd-text);

    font-size: 14px;
    line-height: 1.9;
    font-weight: 700;
}


/* =========================================
   CLIMATE
   ========================================= */

.ksh-design__climate {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;

    background: var(--kshd-navy);

    overflow: hidden;

    position: relative;
}

.ksh-design__climate-content {
    padding: 48px 50px;
}

.ksh-design__climate-eyebrow {
    margin-bottom: 12px;

    color: var(--kshd-gold);

    font-size: 12px;
    font-weight: 800;
}

.ksh-design__climate-content h3 {
    margin: 0;

    color: var(--kshd-white);

    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.6;
    font-weight: 800;
}

.ksh-design__climate-line {
    width: 48px;
    height: 3px;

    margin: 22px 0;

    background: var(--kshd-gold);

    border-radius: 10px;
}

.ksh-design__climate-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    line-height: 2.3;
}

.ksh-design__climate-side {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px;

    background: var(--kshd-navy-soft);

    border-right: 1px solid rgba(238, 173, 22, 0.25);
}

.ksh-design__climate-number {
    color: var(--kshd-gold);

    font-size: 42px;
    line-height: 1;

    font-weight: 800;
}

.ksh-design__climate-caption {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.ksh-design__climate-caption span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    letter-spacing: 2px;
}

.ksh-design__climate-caption strong {
    color: var(--kshd-white);

    font-size: 13px;
    letter-spacing: 1px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .ksh-design {
        padding: 80px 18px;
    }

    .ksh-design__main {
        grid-template-columns: 1fr 0.85fr;
        gap: 35px;
    }

    .ksh-design__content p {
        font-size: 16px;
        line-height: 2.2;
    }

    .ksh-design__visual-frame,
    .ksh-design__visual-frame img {
        min-height: 350px;
        height: 350px;
    }

    .ksh-design__benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ksh-design__benefit:nth-child(2) {
        border-left: none;
    }

    .ksh-design__benefit:nth-child(3),
    .ksh-design__benefit:nth-child(4) {
        border-top: 1px solid var(--kshd-border);
    }

    .ksh-design__benefit:nth-child(4) {
        border-left: none;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

    .ksh-design {
        padding: 60px 15px;
    }

    .ksh-design__header {
        margin-bottom: 35px;
    }

    .ksh-design__title {
        padding-right: 14px;

        font-size: 25px;
        line-height: 1.65;
    }

    .ksh-design__title::before {
        width: 3px;
        height: 44px;
        top: 10px;
    }


    /* Main */

    .ksh-design__main {
        display: flex;
        flex-direction: column;

        gap: 30px;

        margin-bottom: 50px;
    }

    .ksh-design__content {
        order: 1;
    }

    .ksh-design__visual {
        order: 2;

        width: 100%;
    }

    .ksh-design__content p {
        font-size: 15px;
        line-height: 2.2;
    }

    .ksh-design__visual-frame,
    .ksh-design__visual-frame img {
        min-height: 280px;
        height: 280px;
    }

    .ksh-design__visual-label {
        right: 16px;
        bottom: 16px;
    }


    /* Benefits */

    .ksh-design__benefits {
        margin-bottom: 55px;
    }

    .ksh-design__benefits-head {
        font-size: 15px;
    }

    .ksh-design__benefits-grid {
        grid-template-columns: 1fr;

        border-bottom: none;
    }

    .ksh-design__benefit,
    .ksh-design__benefit:first-child,
    .ksh-design__benefit:last-child {
        min-height: auto;

        display: flex;
        flex-direction: row;
        align-items: center;

        gap: 15px;

        padding: 16px;

        border: 1px solid var(--kshd-border);
        border-bottom: none;
    }

    .ksh-design__benefit:last-child {
        border-bottom: 1px solid var(--kshd-border);
    }

    .ksh-design__benefit-number {
        flex: 0 0 32px;

        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: rgba(238, 173, 22, 0.1);
    }

    .ksh-design__benefit p {
        font-size: 14px;
    }


    /* Climate */

    .ksh-design__climate {
        display: flex;
        flex-direction: column;
    }

    .ksh-design__climate-content {
        padding: 30px 22px;
    }

    .ksh-design__climate-content h3 {
        font-size: 21px;
        line-height: 1.7;
    }

    .ksh-design__climate-content p {
        font-size: 14px;
        line-height: 2.2;
    }

    .ksh-design__climate-side {
        min-height: 95px;

        flex-direction: row;
        align-items: center;

        padding: 20px 22px;

        border-right: none;
        border-top: 1px solid rgba(238, 173, 22, 0.25);
    }

    .ksh-design__climate-number {
        font-size: 30px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 380px) {

    .ksh-design__title {
        font-size: 22px;
    }

    .ksh-design__visual-frame,
    .ksh-design__visual-frame img {
        min-height: 245px;
        height: 245px;
    }

    .ksh-design__climate-content {
        padding: 26px 18px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ee45474 *//* =========================================
   KSH - Execution Section
   مراحل ساخت و اجرای سوله
========================================= */

.ksh-execution {
    --ksh-ex-bg: #f7f9fb;
    --ksh-ex-white: #ffffff;
    --ksh-ex-navy: #051934;
    --ksh-ex-gold: #eead16;
    --ksh-ex-text: #263446;
    --ksh-ex-muted: #667384;
    --ksh-ex-border: #dfe5eb;

    width: 100%;
    padding: 100px 20px;
    background: var(--ksh-ex-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-execution *,
.ksh-execution *::before,
.ksh-execution *::after {
    box-sizing: border-box;
}

.ksh-execution__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================
   Header
========================= */

.ksh-execution__header {
    margin-bottom: 55px;
}

.ksh-execution__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: var(--ksh-ex-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
}

.ksh-execution__eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--ksh-ex-gold);
    display: block;
}

.ksh-execution__title {
    margin: 0;
    color: var(--ksh-ex-navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.35;
    font-weight: 800;
}

.ksh-execution__line {
    width: 70px;
    height: 4px;
    margin-top: 20px;
    background: var(--ksh-ex-gold);
}


/* =========================
   Intro
========================= */

.ksh-execution__intro {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;

    margin-bottom: 70px;
    padding: 30px 35px;

    background: var(--ksh-ex-white);
    border: 1px solid var(--ksh-ex-border);
    border-right: 4px solid var(--ksh-ex-gold);

    box-shadow: 0 12px 35px rgba(5, 25, 52, .05);
}

.ksh-execution__intro-number {
    color: var(--ksh-ex-gold);
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    direction: ltr;
}

.ksh-execution__intro-text p {
    margin: 0;
    color: var(--ksh-ex-text);
    font-size: 17px;
    line-height: 2.1;
}


/* =========================
   Step
========================= */

.ksh-execution__step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    gap: 65px;
    align-items: center;

    margin-bottom: 80px;
}

.ksh-execution__step--installation {
    grid-template-columns: minmax(380px, .9fr) minmax(0, 1fr);
}


/* =========================
   Step Content
========================= */

.ksh-execution__step-content {
    position: relative;
}

.ksh-execution__step-meta {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;
}

.ksh-execution__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: var(--ksh-ex-navy);
    color: var(--ksh-ex-gold);

    font-size: 16px;
    font-weight: 800;

    direction: ltr;
}

.ksh-execution__step-label {
    color: var(--ksh-ex-muted);
    font-size: 13px;
    font-weight: 700;
}

.ksh-execution__step-title {
    margin: 0;
    color: var(--ksh-ex-navy);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.5;
    font-weight: 800;
}

.ksh-execution__step-accent {
    width: 45px;
    height: 3px;
    margin: 18px 0 22px;

    background: var(--ksh-ex-gold);
}

.ksh-execution__step-text {
    margin: 0;
    color: var(--ksh-ex-text);
    font-size: 16px;
    line-height: 2.15;
}


/* =========================
   Image
========================= */

.ksh-execution__image {
    width: 100%;
}

.ksh-execution__image-frame {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #dfe4e8;
}

.ksh-execution__image-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(5, 25, 52, .04),
            rgba(5, 25, 52, .16)
        );

    pointer-events: none;
}

.ksh-execution__image-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .5s ease;
}

.ksh-execution__image-tag {
    position: absolute;
    right: 18px;
    bottom: 18px;

    z-index: 2;

    padding: 9px 13px;

    background: var(--ksh-execution-tag-bg, #051934);
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;

    direction: ltr;
}


/* =========================
   Process
========================= */

.ksh-execution__process {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    margin-top: 15px;
    padding-top: 35px;

    border-top: 1px solid var(--ksh-ex-border);
}

.ksh-execution__process-line {
    position: absolute;
    top: -2px;
    right: 0;

    width: 25%;
    height: 3px;

    background: var(--ksh-ex-gold);
}

.ksh-execution__process-item {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--ksh-ex-navy);
    font-size: 13px;
    font-weight: 700;
}

.ksh-execution__process-item span {
    color: var(--ksh-ex-gold);
    font-size: 12px;
    font-weight: 800;
    direction: ltr;
}


/* =========================
   Tablet
========================= */

@media (max-width: 900px) {

    .ksh-execution {
        padding: 80px 18px;
    }

    .ksh-execution__step,
    .ksh-execution__step--installation {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ksh-execution__step--installation .ksh-execution__image {
        order: 1;
    }

    .ksh-execution__step--installation .ksh-execution__step-content {
        order: 2;
    }

    .ksh-execution__image-frame {
        height: 360px;
    }

}


/* =========================
   Mobile
========================= */

@media (max-width: 600px) {

    .ksh-execution {
        padding: 65px 15px;
    }

    .ksh-execution__header {
        margin-bottom: 35px;
    }

    .ksh-execution__title {
        font-size: 28px;
        line-height: 1.5;
    }

    .ksh-execution__line {
        width: 55px;
        height: 3px;
        margin-top: 15px;
    }


    .ksh-execution__intro {
        grid-template-columns: 55px 1fr;

        margin-bottom: 50px;
        padding: 22px 18px;

        border-right-width: 3px;
    }

    .ksh-execution__intro-number {
        font-size: 27px;
    }

    .ksh-execution__intro-text p {
        font-size: 14px;
        line-height: 2.05;
    }


    .ksh-execution__step {
        gap: 25px;
        margin-bottom: 55px;
    }

    .ksh-execution__step-meta {
        margin-bottom: 14px;
    }

    .ksh-execution__step-number {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .ksh-execution__step-title {
        font-size: 23px;
        line-height: 1.55;
    }

    .ksh-execution__step-text {
        font-size: 14px;
        line-height: 2.1;
    }

    .ksh-execution__step-accent {
        margin: 14px 0 18px;
    }


    .ksh-execution__image-frame {
        height: 270px;
    }

    .ksh-execution__image-tag {
        right: 12px;
        bottom: 12px;
        padding: 7px 10px;
        font-size: 8px;
    }


    .ksh-execution__process {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;

        padding-top: 25px;
    }

    .ksh-execution__process-line {
        width: 45%;
    }

    .ksh-execution__process-item {
        font-size: 12px;
        line-height: 1.7;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-17add41 *//* =========================================
   KSH TYPES V2
   انواع سوله قابل ساخت در شهرکرد
========================================= */

.ksh-types-v2 {

    --kt2-bg: #f7f9fb;
    --kt2-white: #ffffff;
    --kt2-navy: #051934;
    --kt2-gold: #eead16;
    --kt2-text: #263446;
    --kt2-muted: #6c7785;
    --kt2-border: #dfe5eb;

    width: 100%;
    padding: 105px 20px;

    background: var(--kt2-bg);

    box-sizing: border-box;
    overflow: hidden;
}

.ksh-types-v2 *,
.ksh-types-v2 *::before,
.ksh-types-v2 *::after {
    box-sizing: border-box;
}

.ksh-types-v2__container {

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

}


/* =========================================
   HEADER
========================================= */

.ksh-types-v2__header {
    margin-bottom: 55px;
}

.ksh-types-v2__eyebrow {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: var(--kt2-gold);

    font-size: 13px;
    font-weight: 700;

}

.ksh-types-v2__eyebrow span {

    width: 30px;
    height: 2px;

    background: var(--kt2-gold);

}

.ksh-types-v2__title {

    margin: 0;

    color: var(--kt2-navy);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.4;

    font-weight: 800;

}

.ksh-types-v2__accent {

    width: 65px;
    height: 4px;

    margin-top: 20px;

    background: var(--kt2-gold);

}


/* =========================================
   INTRO
========================================= */

.ksh-types-v2__intro {

    display: grid;

    grid-template-columns: 135px minmax(0, 1fr);

    align-items: center;

    margin-bottom: 90px;

    padding: 35px 40px;

    background: var(--kt2-navy);

    border-right: 5px solid var(--kt2-gold);

}

.ksh-types-v2__intro-number {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    direction: ltr;

}

.ksh-types-v2__intro-number strong {

    color: var(--kt2-gold);

    font-size: 48px;
    line-height: 1;

}

.ksh-types-v2__intro-number span {

    margin-top: 8px;

    color: rgba(255,255,255,.45);

    font-size: 8px;

    letter-spacing: 1.8px;

}

.ksh-types-v2__intro-text p {

    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 2.2;

}


/* =========================================
   COMMON
========================================= */

.ksh-types-v2__number {

    margin-bottom: 8px;

    color: var(--kt2-gold);

    font-size: 14px;

    font-weight: 800;

    direction: ltr;

}

.ksh-types-v2__label {

    margin-bottom: 10px;

    color: var(--kt2-muted);

    font-size: 12px;

    font-weight: 700;

}

.ksh-types-v2__heading {

    margin: 0;

    color: var(--kt2-navy);

    font-size: clamp(24px, 3vw, 34px);

    line-height: 1.55;

    font-weight: 800;

}

.ksh-types-v2__heading-line {

    width: 45px;
    height: 3px;

    margin: 18px 0 22px;

    background: var(--kt2-gold);

}

.ksh-types-v2__text {

    margin: 0;

    color: var(--kt2-text);

    font-size: 16px;

    line-height: 2.15;

}

.ksh-types-v2__text--last {

    margin-top: 25px;

}

.ksh-types-v2__subheading {

    margin: 28px 0 15px;

    color: var(--kt2-navy);

    font-size: 15px;

    line-height: 1.8;

    font-weight: 800;

}


/* =========================================
   IMAGE SYSTEM
========================================= */

.ksh-types-v2__image-wrap {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #dfe4e8;

}

.ksh-types-v2__image-wrap::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(5,25,52,.02),
        rgba(5,25,52,.16)
    );

    pointer-events: none;

}

.ksh-types-v2__image-wrap img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

}

.ksh-types-v2__image-caption {

    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 9px 13px;

    background: var(--kt2-navy);

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    direction: ltr;

}

.ksh-types-v2__image-caption span {

    color: var(--kt2-gold);

}


/* =========================================
   INDUSTRIAL
========================================= */

.ksh-types-v2__industrial {

    display: grid;

    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);

    gap: 65px;

    align-items: center;

    margin-bottom: 105px;

}

.ksh-types-v2__industrial-image {

    height: 455px;

    position: relative;

}

.ksh-types-v2__industrial-image::before {

    content: "";

    position: absolute;

    right: -12px;
    top: 25px;

    width: 5px;
    height: calc(100% - 50px);

    background: var(--kt2-gold);

}

.ksh-types-v2__industrial-bottom {

    grid-column: 1 / -1;

    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);

    gap: 65px;

    padding-top: 45px;

    border-top: 1px solid var(--kt2-border);

}

.ksh-types-v2__list {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 9px 12px;

    margin: 0;

    padding: 0;

    list-style: none;

}

.ksh-types-v2__list li {

    position: relative;

    padding: 12px 20px 12px 10px;

    background: var(--kt2-white);

    border: 1px solid var(--kt2-border);

    color: var(--kt2-text);

    font-size: 13px;

    line-height: 1.7;

}

.ksh-types-v2__list li::before {

    content: "";

    position: absolute;

    right: 8px;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    background: var(--kt2-gold);

}


/* =========================================
   LIGHTWEIGHT
========================================= */

.ksh-types-v2__light {

    display: grid;

    grid-template-columns: minmax(370px, .8fr) minmax(0, 1.2fr);

    gap: 65px;

    align-items: center;

    margin-bottom: 105px;

    padding: 70px 0;

    border-top: 1px solid var(--kt2-border);

    border-bottom: 1px solid var(--kt2-border);

}

.ksh-types-v2__light-image {

    height: 510px;

}

.ksh-types-v2__light-image .ksh-types-v2__image-wrap {

    border-radius: 0 0 0 55px;

}

.ksh-types-v2__light-list {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin: 0;

    padding: 0;

    list-style: none;

}

.ksh-types-v2__light-list li {

    padding: 15px 18px;

    background: var(--kt2-white);

    border-top: 2px solid var(--kt2-gold);

    color: var(--kt2-text);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   HEAVY
========================================= */

.ksh-types-v2__heavy {

    margin-bottom: 105px;

    padding: 65px;

    background: var(--kt2-navy);

}

.ksh-types-v2__heavy-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

}

.ksh-types-v2__heavy .ksh-types-v2__number {

    color: var(--kt2-gold);

}

.ksh-types-v2__heavy .ksh-types-v2__label {

    color: rgba(255,255,255,.55);

}

.ksh-types-v2__heavy .ksh-types-v2__heading {

    color: #ffffff;

}

.ksh-types-v2__heavy-tag {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    color: var(--kt2-gold);

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 2px;

    direction: ltr;

}

.ksh-types-v2__heavy-tag span {

    color: rgba(255,255,255,.4);

    font-size: 8px;

    letter-spacing: 3px;

}

.ksh-types-v2__heavy-grid {

    display: grid;

    grid-template-columns: minmax(420px, 1fr) minmax(0, .9fr);

    gap: 50px;

    align-items: stretch;

}

.ksh-types-v2__heavy-image {

    min-height: 430px;

}

.ksh-types-v2__heavy-image .ksh-types-v2__image-wrap {

    border-left: 4px solid var(--kt2-gold);

}

.ksh-types-v2__heavy-content {

    padding-top: 5px;

}

.ksh-types-v2__heavy .ksh-types-v2__text {

    color: rgba(255,255,255,.82);

}

.ksh-types-v2__heavy .ksh-types-v2__subheading {

    color: #ffffff;

}

.ksh-types-v2__heavy-list {

    display: grid;

    gap: 9px;

    margin: 0;

    padding: 0;

    list-style: none;

}

.ksh-types-v2__heavy-list li {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 11px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.85);

    font-size: 13px;

    line-height: 1.7;

}

.ksh-types-v2__heavy-list li span {

    min-width: 25px;

    color: var(--kt2-gold);

    font-size: 10px;

    direction: ltr;

}

.ksh-types-v2__heavy .ksh-types-v2__text--last {

    color: rgba(255,255,255,.72);

}


/* =========================================
   AGRICULTURE
========================================= */

.ksh-types-v2__agriculture {

    display: grid;

    grid-template-columns: minmax(440px, 1fr) minmax(0, .85fr);

    gap: 65px;

    align-items: center;

    margin-bottom: 65px;

}

.ksh-types-v2__agri-image {

    height: 390px;

}

.ksh-types-v2__agri-image .ksh-types-v2__image-wrap {

    border-radius: 0 60px 0 0;

}

.ksh-types-v2__agri-content {

    padding-right: 10px;

}


/* =========================================
   BOTTOM NOTE
========================================= */

.ksh-types-v2__bottom-note {

    display: flex;

    align-items: center;

    gap: 14px;

    padding-top: 30px;

    border-top: 1px solid var(--kt2-border);

}

.ksh-types-v2__bottom-note span {

    flex: 0 0 auto;

    width: 35px;
    height: 3px;

    background: var(--kt2-gold);

}

.ksh-types-v2__bottom-note p {

    margin: 0;

    color: var(--kt2-muted);

    font-size: 13px;

    line-height: 1.9;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .ksh-types-v2 {

        padding: 85px 18px;

    }

    .ksh-types-v2__industrial,
    .ksh-types-v2__light,
    .ksh-types-v2__agriculture {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .ksh-types-v2__industrial-bottom {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .ksh-types-v2__industrial-image {

        height: 400px;

    }

    .ksh-types-v2__light-image {

        height: 400px;

    }

    .ksh-types-v2__heavy {

        padding: 45px;

    }

    .ksh-types-v2__heavy-grid {

        grid-template-columns: 1fr;

    }

    .ksh-types-v2__heavy-image {

        min-height: 380px;

    }

    .ksh-types-v2__agri-image {

        height: 380px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .ksh-types-v2 {

        padding: 65px 15px;

    }


    /* Header */

    .ksh-types-v2__header {

        margin-bottom: 35px;

    }

    .ksh-types-v2__title {

        font-size: 28px;

        line-height: 1.5;

    }

    .ksh-types-v2__accent {

        width: 52px;

        height: 3px;

        margin-top: 15px;

    }


    /* Intro */

    .ksh-types-v2__intro {

        grid-template-columns: 60px minmax(0, 1fr);

        margin-bottom: 60px;

        padding: 24px 18px;

        border-right-width: 3px;

    }

    .ksh-types-v2__intro-number strong {

        font-size: 28px;

    }

    .ksh-types-v2__intro-number span {

        font-size: 6px;

    }

    .ksh-types-v2__intro-text p {

        font-size: 14px;

        line-height: 2.1;

    }


    /* Common */

    .ksh-types-v2__heading {

        font-size: 23px;

        line-height: 1.6;

    }

    .ksh-types-v2__text {

        font-size: 14px;

        line-height: 2.1;

    }

    .ksh-types-v2__subheading {

        font-size: 14px;

        margin-top: 24px;

    }


    /* Industrial */

    .ksh-types-v2__industrial {

        gap: 30px;

        margin-bottom: 65px;

    }

    .ksh-types-v2__industrial-image {

        height: 280px;

    }

    .ksh-types-v2__industrial-image::before {

        right: -6px;

        width: 3px;

    }

    .ksh-types-v2__industrial-bottom {

        gap: 25px;

        padding-top: 30px;

    }

    .ksh-types-v2__list {

        grid-template-columns: 1fr;

    }

    .ksh-types-v2__list li {

        font-size: 13px;

    }


    /* Lightweight */

    .ksh-types-v2__light {

        gap: 30px;

        margin-bottom: 65px;

        padding: 45px 0;

    }

    .ksh-types-v2__light-image {

        height: 300px;

        order: 2;

    }

    .ksh-types-v2__light-content {

        order: 1;

    }

    .ksh-types-v2__light-image .ksh-types-v2__image-wrap {

        border-radius: 0 0 0 35px;

    }

    .ksh-types-v2__light-list {

        grid-template-columns: 1fr;

    }


    /* Heavy */

    .ksh-types-v2__heavy {

        margin-bottom: 65px;

        padding: 32px 20px;

    }

    .ksh-types-v2__heavy-top {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 30px;

    }

    .ksh-types-v2__heavy-tag {

        display: none;

    }

    .ksh-types-v2__heavy-grid {

        gap: 30px;

    }

    .ksh-types-v2__heavy-image {

        min-height: 270px;

    }

    .ksh-types-v2__heavy-list li {

        font-size: 13px;

    }


    /* Agriculture */

    .ksh-types-v2__agriculture {

        gap: 30px;

        margin-bottom: 45px;

    }

    .ksh-types-v2__agri-image {

        height: 275px;

        order: 2;

    }

    .ksh-types-v2__agri-content {

        order: 1;

        padding-right: 0;

    }

    .ksh-types-v2__agri-image .ksh-types-v2__image-wrap {

        border-radius: 0 35px 0 0;

    }


    /* Bottom */

    .ksh-types-v2__bottom-note {

        align-items: flex-start;

        padding-top: 22px;

    }

    .ksh-types-v2__bottom-note span {

        margin-top: 8px;

        width: 25px;

    }

    .ksh-types-v2__bottom-note p {

        font-size: 12px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-adb1949 *//* =========================================================
   KSH PRICE V3
   Scoped CSS - Elementor Free
========================================================= */

.ksh-price-v3 {
    --kps-navy: #051934;
    --kps-navy-light: #0a294d;
    --kps-gold: #EEAD16;
    --kps-white: #ffffff;
    --kps-bg: #f3f5f7;
    --kps-text: #263548;
    --kps-muted: #687688;

    width: 100%;
    padding: 90px 20px;
    background: var(--kps-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-price-v3 *,
.ksh-price-v3 *::before,
.ksh-price-v3 *::after {
    box-sizing: border-box;
}

.ksh-price-v3__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.ksh-price-v3__hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 285px;
    padding: 55px 60px;

    background:
        linear-gradient(
            135deg,
            var(--kps-navy) 0%,
            #082746 100%
        );

    border-radius: 24px;
    overflow: hidden;

    margin-bottom: 22px;
}

.ksh-price-v3__hero::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    left: -100px;
    bottom: -180px;

    border: 1px solid rgba(238,173,22,.25);
    border-radius: 50%;
}

.ksh-price-v3__hero::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    left: 70px;
    top: -130px;

    border: 1px solid rgba(238,173,22,.18);
    border-radius: 50%;
}

.ksh-price-v3__hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.ksh-price-v3__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 17px;

    color: var(--kps-gold);
    font-size: 13px;
    font-weight: 800;
}

.ksh-price-v3__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--kps-gold);
}

.ksh-price-v3__hero h2 {
    margin: 0;

    color: var(--kps-white);

    font-size: clamp(29px, 4vw, 46px);
    line-height: 1.55;
    font-weight: 850;
}

.ksh-price-v3__hero-text {
    max-width: 650px;

    margin: 15px 0 0;

    color: #c5ced9;

    font-size: 15px;
    line-height: 2;
}

.ksh-price-v3__hero-accent {
    position: absolute;

    right: 60px;
    bottom: 0;

    width: 90px;
    height: 5px;

    background: var(--kps-gold);
}


/* =========================================================
   INTRO
========================================================= */

.ksh-price-v3__intro {
    display: grid;
    grid-template-columns: 230px 1fr;

    background: var(--kps-white);

    border-radius: 20px;
    overflow: hidden;

    border: 1px solid #e3e7eb;

    margin-bottom: 55px;
}

.ksh-price-v3__intro-title {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 35px;

    background: var(--kps-gold);

    color: var(--kps-navy);
}

.ksh-price-v3__intro-title span {
    font-size: 15px;
    font-weight: 700;
}

.ksh-price-v3__intro-title strong {
    margin-top: 5px;

    font-size: 24px;
    line-height: 1.5;
    font-weight: 900;
}

.ksh-price-v3__intro-content {
    display: flex;
    align-items: center;

    padding: 30px 38px;
}

.ksh-price-v3__intro-content p {
    margin: 0;

    color: var(--kps-text);

    font-size: 16px;
    line-height: 2.15;
}

.ksh-price-v3__intro-content strong {
    color: var(--kps-navy);
    font-weight: 900;
}


/* =========================================================
   CONTENT GRID
========================================================= */

.ksh-price-v3__content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* =========================================================
   FACTOR CARDS
========================================================= */

.ksh-price-v3__item {
    position: relative;

    min-height: 310px;

    padding: 38px 38px 38px 42px;

    display: flex;
    align-items: center;

    background: var(--kps-white);

    border: 1px solid #e1e6eb;
    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.ksh-price-v3__item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(5,25,52,.10);
}

.ksh-price-v3__item-bar {
    position: absolute;

    top: 0;
    right: 0;

    width: 5px;
    height: 100%;

    background: var(--kps-gold);
}

.ksh-price-v3__item-body {
    width: 100%;
}

.ksh-price-v3__item h3 {
    position: relative;

    margin: 0 0 18px;

    padding-bottom: 15px;

    color: var(--kps-navy);

    font-size: 22px;
    line-height: 1.6;
    font-weight: 850;
}

.ksh-price-v3__item h3::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    background: var(--kps-gold);
}

.ksh-price-v3__item p {
    margin: 0;

    color: var(--kps-muted);

    font-size: 15px;
    line-height: 2.2;
}


/* =========================================================
   DARK CARD
========================================================= */

.ksh-price-v3__item--dark {
    background: var(--kps-navy);
    border-color: var(--kps-navy);
}

.ksh-price-v3__item--dark h3 {
    color: var(--kps-white);
}

.ksh-price-v3__item--dark p {
    color: #c5ced9;
}

.ksh-price-v3__item--dark h3::after {
    background: var(--kps-gold);
}


/* =========================================================
   GOLD CARD
========================================================= */

.ksh-price-v3__item--gold {
    background: var(--kps-gold);
    border-color: var(--kps-gold);
}

.ksh-price-v3__item--gold .ksh-price-v3__item-bar {
    background: var(--kps-navy);
}

.ksh-price-v3__item--gold h3 {
    color: var(--kps-navy);
}

.ksh-price-v3__item--gold p {
    color: #27394e;
}

.ksh-price-v3__item--gold h3::after {
    background: var(--kps-navy);
}


/* =========================================================
   IMAGES
========================================================= */

.ksh-price-v3__image {
    position: relative;

    width: 100%;
    min-height: 310px;

    margin: 0;

    border-radius: 20px;

    overflow: hidden;

    background: #dfe4e9;
}

.ksh-price-v3__image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 310px;

    object-fit: cover;

    transition: transform .5s ease;
}

.ksh-price-v3__image:hover img {
    transform: scale(1.04);
}

.ksh-price-v3__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,25,52,.75),
            transparent 50%
        );

    pointer-events: none;
}

.ksh-price-v3__image figcaption {
    position: absolute;

    right: 25px;
    bottom: 22px;

    z-index: 2;

    color: var(--kps-white);

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   FINAL NOTE
========================================================= */

.ksh-price-v3__note {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 45px;
    padding: 25px 30px;

    background: var(--kps-navy);

    border-radius: 17px;
}

.ksh-price-v3__note-line {
    width: 5px;
    min-width: 5px;

    height: 60px;

    background: var(--kps-gold);

    border-radius: 5px;
}

.ksh-price-v3__note strong {
    display: block;

    margin-bottom: 5px;

    color: var(--kps-gold);

    font-size: 16px;
}

.ksh-price-v3__note p {
    margin: 0;

    color: #d0d7df;

    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ksh-price-v3 {
        padding: 70px 18px;
    }

    .ksh-price-v3__hero {
        padding: 45px 38px;
    }

    .ksh-price-v3__hero-accent {
        right: 38px;
    }

    .ksh-price-v3__content {
        grid-template-columns: 1fr;
    }

    .ksh-price-v3__image {
        min-height: 340px;
    }

    .ksh-price-v3__image img {
        min-height: 340px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ksh-price-v3 {
        padding: 55px 14px;
    }

    .ksh-price-v3__hero {
        min-height: auto;

        padding: 38px 24px 45px;

        border-radius: 18px;
    }

    .ksh-price-v3__hero h2 {
        font-size: 27px;
        line-height: 1.65;
    }

    .ksh-price-v3__hero-text {
        font-size: 13px;
    }

    .ksh-price-v3__hero-accent {
        right: 24px;
        width: 65px;
    }


    /* Intro */

    .ksh-price-v3__intro {
        grid-template-columns: 1fr;

        border-radius: 15px;

        margin-bottom: 35px;
    }

    .ksh-price-v3__intro-title {
        padding: 20px 22px;
    }

    .ksh-price-v3__intro-title strong {
        font-size: 21px;
    }

    .ksh-price-v3__intro-content {
        padding: 22px;
    }

    .ksh-price-v3__intro-content p {
        font-size: 14px;
        line-height: 2.1;
    }


    /* Factors */

    .ksh-price-v3__content {
        gap: 15px;
    }

    .ksh-price-v3__item {
        min-height: auto;

        padding: 27px 24px 27px 28px;

        border-radius: 15px;
    }

    .ksh-price-v3__item h3 {
        font-size: 19px;
        line-height: 1.65;

        margin-bottom: 14px;
    }

    .ksh-price-v3__item p {
        font-size: 14px;
        line-height: 2.1;
    }


    /* Images */

    .ksh-price-v3__image {
        min-height: 235px;

        border-radius: 15px;
    }

    .ksh-price-v3__image img {
        min-height: 235px;
    }

    .ksh-price-v3__image figcaption {
        right: 18px;
        bottom: 17px;

        font-size: 12px;
    }


    /* Note */

    .ksh-price-v3__note {
        align-items: flex-start;

        gap: 14px;

        margin-top: 30px;

        padding: 20px;

        border-radius: 14px;
    }

    .ksh-price-v3__note-line {
        height: 50px;
    }

    .ksh-price-v3__note strong {
        font-size: 14px;
    }

    .ksh-price-v3__note p {
        font-size: 13px;
        line-height: 2;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-66ce326 *//* =========================================
   Karan Soole - Builder Section
   Scoped / RTL / Responsive
========================================= */

.ksh-builder-section {
    --ksh-builder-navy: #051934;
    --ksh-builder-gold: #EEAD16;
    --ksh-builder-white: #ffffff;
    --ksh-builder-text: #263446;
    --ksh-builder-muted: #687587;
    --ksh-builder-border: #e4e8ed;

    width: 100%;
    padding: 90px 20px;
    background: #f7f9fb;
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-builder-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   Header
========================================= */

.ksh-builder-header {
    position: relative;
    background: var(--ksh-builder-navy);
    padding: 55px 60px;
    border-radius: 24px;
    overflow: hidden;
    box-sizing: border-box;
}

.ksh-builder-header::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -100px;
    top: -120px;
    border: 1px solid rgba(238, 173, 22, 0.25);
    transform: rotate(45deg);
}

.ksh-builder-header::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    bottom: -100px;
    background: rgba(238, 173, 22, 0.08);
    transform: rotate(45deg);
}

.ksh-builder-header__accent {
    width: 55px;
    height: 4px;
    background: var(--ksh-builder-gold);
    border-radius: 10px;
    margin-bottom: 22px;
}

.ksh-builder-header h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 25px;
    color: var(--ksh-builder-white);

    font-size: 34px;
    line-height: 1.7;
    font-weight: 800;
}

.ksh-builder-header h2 span {
    color: var(--ksh-builder-gold);
}

.ksh-builder-header p {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0;

    color: #e8edf3;
    font-size: 17px;
    line-height: 2.2;
    font-weight: 400;
}

.ksh-builder-header strong {
    color: var(--ksh-builder-gold);
    font-weight: 800;
}


/* =========================================
   Main Layout
========================================= */

.ksh-builder-main {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 55px;

    margin-top: 55px;
    align-items: start;
}


/* =========================================
   Image
========================================= */

.ksh-builder-image {
    position: relative;
    min-height: 540px;

    border-radius: 22px;
    overflow: hidden;

    background: var(--ksh-builder-navy);

    box-shadow: 0 18px 45px rgba(5, 25, 52, 0.14);
}

.ksh-builder-image img {
    display: block;

    width: 100%;
    height: 540px;

    object-fit: cover;
}

.ksh-builder-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 25, 52, 0.88) 0%,
            rgba(5, 25, 52, 0.12) 48%,
            rgba(5, 25, 52, 0) 75%
        );

    pointer-events: none;
}

.ksh-builder-image__caption {
    position: absolute;
    right: 25px;
    left: 25px;
    bottom: 24px;

    z-index: 2;

    color: var(--ksh-builder-white);

    font-size: 15px;
    line-height: 1.9;
    font-weight: 700;
}


/* =========================================
   Features
========================================= */

.ksh-builder-features {
    padding-top: 8px;
}

.ksh-builder-features h3 {
    position: relative;

    margin: 0 0 18px;
    padding-right: 20px;

    color: var(--ksh-builder-navy);

    font-size: 27px;
    line-height: 1.7;
    font-weight: 800;
}

.ksh-builder-features h3::before {
    content: "";

    position: absolute;
    right: 0;
    top: 7px;

    width: 4px;
    height: 48px;

    background: var(--ksh-builder-gold);
    border-radius: 10px;
}

.ksh-builder-features__intro {
    margin: 0 0 30px;

    color: var(--ksh-builder-muted);

    font-size: 16px;
    line-height: 2;
}


/* =========================================
   Feature Items
========================================= */

.ksh-builder-item {
    display: flex;
    align-items: stretch;

    background: var(--ksh-builder-white);

    border: 1px solid var(--ksh-builder-border);
    border-radius: 16px;

    margin-bottom: 18px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(5, 25, 52, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ksh-builder-item:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(5, 25, 52, 0.10);
}

.ksh-builder-item__line {
    flex: 0 0 5px;

    background: var(--ksh-builder-gold);
}

.ksh-builder-item__content {
    padding: 24px 27px;
}

.ksh-builder-item h4 {
    margin: 0 0 10px;

    color: var(--ksh-builder-navy);

    font-size: 18px;
    line-height: 1.8;
    font-weight: 800;
}

.ksh-builder-item h4::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 8px;

    background: var(--ksh-builder-gold);
}

.ksh-builder-item p {
    margin: 0;

    color: var(--ksh-builder-text);

    font-size: 15px;
    line-height: 2.15;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 900px) {

    .ksh-builder-section {
        padding: 70px 18px;
    }

    .ksh-builder-header {
        padding: 45px 35px;
    }

    .ksh-builder-header h2 {
        font-size: 29px;
    }

    .ksh-builder-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ksh-builder-image {
        min-height: 420px;
    }

    .ksh-builder-image img {
        height: 420px;
    }

    .ksh-builder-features {
        padding-top: 0;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .ksh-builder-section {
        padding: 50px 14px;
    }

    .ksh-builder-header {
        padding: 32px 22px;

        border-radius: 18px;
    }

    .ksh-builder-header__accent {
        width: 45px;
        height: 3px;
        margin-bottom: 17px;
    }

    .ksh-builder-header h2 {
        font-size: 24px;
        line-height: 1.8;

        margin-bottom: 18px;
    }

    .ksh-builder-header p {
        font-size: 14px;
        line-height: 2.15;
    }

    .ksh-builder-main {
        margin-top: 35px;
        gap: 32px;
    }

    .ksh-builder-image {
        min-height: 300px;
        border-radius: 17px;
    }

    .ksh-builder-image img {
        height: 300px;
    }

    .ksh-builder-image__caption {
        right: 18px;
        left: 18px;
        bottom: 17px;

        font-size: 13px;
        line-height: 1.9;
    }

    .ksh-builder-features h3 {
        font-size: 22px;
        line-height: 1.8;

        padding-right: 15px;
    }

    .ksh-builder-features h3::before {
        width: 3px;
        height: 40px;
        top: 6px;
    }

    .ksh-builder-features__intro {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 22px;
    }

    .ksh-builder-item {
        margin-bottom: 14px;
        border-radius: 13px;
    }

    .ksh-builder-item__line {
        flex: 0 0 4px;
    }

    .ksh-builder-item__content {
        padding: 19px 18px;
    }

    .ksh-builder-item h4 {
        font-size: 16px;
        line-height: 1.8;
    }

    .ksh-builder-item p {
        font-size: 14px;
        line-height: 2.15;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 380px) {

    .ksh-builder-header {
        padding: 27px 18px;
    }

    .ksh-builder-header h2 {
        font-size: 21px;
    }

    .ksh-builder-image img {
        height: 270px;
    }

    .ksh-builder-item__content {
        padding: 17px 15px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e7672a9 */.ksh-mistakes {
--kshm-navy: #051934;
--kshm-gold: #EEAD16;
--kshm-bg: #f5f7fa;
--kshm-white: #ffffff;
--kshm-text: #263446;
--kshm-muted: #657284;


width: 100%;
padding: 95px 20px;
background: var(--kshm-bg);
box-sizing: border-box;
overflow: hidden;


}

.ksh-mistakes *,
.ksh-mistakes *::before,
.ksh-mistakes *::after {
box-sizing: border-box;
}

.ksh-mistakes__container {
width: 100%;
max-width: 1180px;
margin: 0 auto;
}

/* =========================
HEADER
========================= */

.ksh-mistakes__header {
max-width: 900px;
margin: 0 auto 55px;
text-align: center;
}

.ksh-mistakes__eyebrow {
display: inline-block;
margin-bottom: 18px;
padding: 7px 15px;
background: var(--kshm-gold);
color: var(--kshm-navy);
border-radius: 5px;
font-size: 13px;
font-weight: 800;
line-height: 1.6;
}

.ksh-mistakes__header h2 {
margin: 0;
color: var(--kshm-navy);
font-size: clamp(28px, 3.3vw, 42px);
line-height: 1.6;
font-weight: 800;
}

.ksh-mistakes__header h2 strong {
color: var(--kshm-gold);
font-weight: 900;
}

.ksh-mistakes__header-line {
width: 65px;
height: 4px;
margin: 22px auto 24px;
background: var(--kshm-gold);
border-radius: 10px;
}

.ksh-mistakes__header p {
margin: 0;
color: var(--kshm-text);
font-size: 16px;
line-height: 2.15;
}

/* =========================
VISUAL ROW
========================= */

.ksh-mistakes__visual-row {
display: grid;
grid-template-columns: 0.95fr 1.05fr;
gap: 34px;
align-items: stretch;
margin-bottom: 48px;
}

.ksh-mistakes__image {
min-height: 330px;
border-radius: 22px;
overflow: hidden;
background: var(--kshm-navy);
position: relative;
}

.ksh-mistakes__image::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(5, 25, 52, 0.08),
rgba(5, 25, 52, 0.35)
);
pointer-events: none;
}

.ksh-mistakes__image img {
display: block;
width: 100%;
height: 100%;
min-height: 330px;
object-fit: cover;
}

.ksh-mistakes__message {
position: relative;
display: flex;
align-items: center;
padding: 42px 42px 42px 48px;
background: var(--kshm-navy);
border-radius: 22px;
overflow: hidden;
}

.ksh-mistakes__message-accent {
position: absolute;
right: 0;
top: 0;
width: 7px;
height: 100%;
background: var(--kshm-gold);
}

.ksh-mistakes__message p {
margin: 0;
color: #ffffff;
font-size: 16px;
line-height: 2.2;
}

/* =========================
MISTAKE ITEMS
========================= */

.ksh-mistakes__item {
position: relative;
display: grid;
grid-template-columns: 310px 1fr;
gap: 38px;
padding: 34px 36px;
margin-bottom: 18px;
background: var(--kshm-white);
border-radius: 16px;
border-right: 5px solid var(--kshm-gold);
box-shadow: 0 8px 28px rgba(5, 25, 52, 0.06);
}

.ksh-mistakes__item:last-child {
margin-bottom: 0;
}

.ksh-mistakes__item-title {
display: flex;
align-items: flex-start;
gap: 13px;
}

.ksh-mistakes__dot {
flex: 0 0 11px;
width: 11px;
height: 11px;
margin-top: 10px;
background: var(--kshm-gold);
border-radius: 50%;
box-shadow: 0 0 0 5px rgba(238, 173, 22, 0.13);
}

.ksh-mistakes__item-title h3 {
margin: 0;
color: var(--kshm-navy);
font-size: 20px;
line-height: 1.8;
font-weight: 800;
}

.ksh-mistakes__item-content p {
margin: 0;
color: var(--kshm-muted);
font-size: 15px;
line-height: 2.15;
}

/* =========================
TABLET
========================= */

@media (max-width: 900px) {


.ksh-mistakes {
    padding: 75px 18px;
}

.ksh-mistakes__visual-row {
    grid-template-columns: 1fr;
    gap: 20px;
}

.ksh-mistakes__image,
.ksh-mistakes__image img {
    min-height: 300px;
}

.ksh-mistakes__message {
    padding: 32px 35px 32px 38px;
}

.ksh-mistakes__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 28px;
}

}

/* =========================
MOBILE
========================= */

@media (max-width: 600px) {

.ksh-mistakes {
    padding: 58px 14px;
}

.ksh-mistakes__header {
    margin-bottom: 38px;
}

.ksh-mistakes__eyebrow {
    font-size: 12px;
    padding: 6px 12px;
}

.ksh-mistakes__header h2 {
    font-size: 25px;
    line-height: 1.8;
}

.ksh-mistakes__header-line {
    margin: 18px auto 20px;
}

.ksh-mistakes__header p,
.ksh-mistakes__message p {
    font-size: 14px;
    line-height: 2.05;
}

.ksh-mistakes__visual-row {
    margin-bottom: 30px;
}

.ksh-mistakes__image,
.ksh-mistakes__image img {
    min-height: 235px;
}

.ksh-mistakes__image {
    border-radius: 16px;
}

.ksh-mistakes__message {
    padding: 27px 27px 27px 31px;
    border-radius: 16px;
}

.ksh-mistakes__message-accent {
    width: 5px;
}

.ksh-mistakes__item {
    padding: 23px 20px;
    gap: 13px;
    margin-bottom: 13px;
    border-right-width: 4px;
    border-radius: 13px;
}

.ksh-mistakes__item-title {
    gap: 11px;
}

.ksh-mistakes__dot {
    flex-basis: 9px;
    width: 9px;
    height: 9px;
    margin-top: 10px;
    box-shadow: 0 0 0 4px rgba(238, 173, 22, 0.13);
}

.ksh-mistakes__item-title h3 {
    font-size: 17px;
    line-height: 1.8;
}

.ksh-mistakes__item-content p {
    font-size: 14px;
    line-height: 2.1;
}


}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5c4cf4b */.ksh-compare {
--kshc-navy: #051934;
--kshc-gold: #EEAD16;
--kshc-bg: #f7f9fb;
--kshc-white: #ffffff;
--kshc-text: #263446;
--kshc-muted: #687586;

```
width: 100%;
padding: 95px 20px;
background: var(--kshc-bg);
overflow: hidden;
box-sizing: border-box;
```

}

.ksh-compare *,
.ksh-compare *::before,
.ksh-compare *::after {
box-sizing: border-box;
}

.ksh-compare__container {
width: 100%;
max-width: 1180px;
margin: 0 auto;
}

/* =========================
HEADER
========================= */

.ksh-compare__header {
max-width: 820px;
margin: 0 auto 58px;
text-align: center;
}

.ksh-compare__eyebrow {
display: inline-block;
padding: 7px 16px;
margin-bottom: 18px;
background: var(--kshc-navy);
color: var(--kshc-gold);
border-radius: 5px;
font-size: 13px;
font-weight: 800;
}

.ksh-compare__header h2 {
margin: 0;
color: var(--kshc-navy);
font-size: clamp(28px, 3.3vw, 42px);
line-height: 1.6;
font-weight: 800;
}

.ksh-compare__header h2 strong {
color: var(--kshc-gold);
font-weight: 900;
}

.ksh-compare__line {
width: 70px;
height: 4px;
margin: 21px auto 24px;
background: var(--kshc-gold);
border-radius: 10px;
}

.ksh-compare__header p {
margin: 0;
color: var(--kshc-text);
font-size: 16px;
line-height: 2.15;
}

/* =========================
MAIN
========================= */

.ksh-compare__main {
display: grid;
grid-template-columns: 0.92fr 1.08fr;
gap: 42px;
align-items: stretch;
}

/* =========================
IMAGE
========================= */

.ksh-compare__visual {
position: relative;
min-height: 570px;
background: var(--kshc-navy);
border-radius: 24px;
overflow: hidden;
}

.ksh-compare__visual-image {
width: 100%;
height: 100%;
min-height: 570px;
}

.ksh-compare__visual-image img {
display: block;
width: 100%;
height: 100%;
min-height: 570px;
object-fit: cover;
}

.ksh-compare__visual::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(5, 25, 52, 0.88) 0%,
rgba(5, 25, 52, 0.22) 48%,
rgba(5, 25, 52, 0.03) 100%
);
pointer-events: none;
}

.ksh-compare__visual-caption {
position: absolute;
right: 28px;
bottom: 27px;
left: 28px;
z-index: 2;
display: flex;
align-items: center;
gap: 13px;
}

.ksh-compare__visual-caption span {
width: 5px;
height: 38px;
flex: 0 0 5px;
background: var(--kshc-gold);
border-radius: 8px;
}

.ksh-compare__visual-caption p {
margin: 0;
color: #ffffff;
font-size: 16px;
line-height: 1.8;
font-weight: 700;
}

/* =========================
BENEFITS
========================= */

.ksh-compare__benefits {
display: flex;
flex-direction: column;
gap: 16px;
}

.ksh-compare__benefit {
position: relative;
display: grid;
grid-template-columns: 58px 1fr;
gap: 20px;
padding: 28px 30px;
background: var(--kshc-white);
border-radius: 17px;
border-right: 4px solid var(--kshc-navy);
box-shadow: 0 8px 28px rgba(5, 25, 52, 0.055);
}

.ksh-compare__benefit:first-child {
border-right-color: var(--kshc-gold);
}

.ksh-compare__benefit-icon {
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 4px;
}

.ksh-compare__benefit-icon span {
position: relative;
display: block;
width: 43px;
height: 43px;
background: var(--kshc-navy);
border-radius: 50%;
}

.ksh-compare__benefit:first-child .ksh-compare__benefit-icon span {
background: var(--kshc-gold);
}

.ksh-compare__benefit-icon span::after {
content: "";
position: absolute;
width: 13px;
height: 13px;
top: 15px;
right: 15px;
border: 3px solid #ffffff;
border-radius: 50%;
}

.ksh-compare__benefit-content h3 {
margin: 0 0 12px;
color: var(--kshc-navy);
font-size: 20px;
line-height: 1.7;
font-weight: 800;
}

.ksh-compare__benefit-content p {
margin: 0;
color: var(--kshc-muted);
font-size: 15px;
line-height: 2.15;
}

/* =========================
BOTTOM ACCENT
========================= */

.ksh-compare__bottom {
margin-top: 35px;
display: flex;
justify-content: flex-start;
}

.ksh-compare__bottom-line {
width: 100%;
height: 3px;
background: linear-gradient(
to left,
var(--kshc-gold) 0 22%,
var(--kshc-navy) 22% 100%
);
border-radius: 10px;
}

/* =========================
TABLET
========================= */

@media (max-width: 900px) {

```
.ksh-compare {
    padding: 75px 18px;
}

.ksh-compare__main {
    grid-template-columns: 1fr;
    gap: 25px;
}

.ksh-compare__visual,
.ksh-compare__visual-image,
.ksh-compare__visual-image img {
    min-height: 360px;
}

.ksh-compare__benefits {
    gap: 13px;
}
```

}

/* =========================
MOBILE
========================= */

@media (max-width: 600px) {

```
.ksh-compare {
    padding: 58px 14px;
}

.ksh-compare__header {
    margin-bottom: 38px;
}

.ksh-compare__eyebrow {
    font-size: 12px;
    padding: 6px 12px;
}

.ksh-compare__header h2 {
    font-size: 25px;
    line-height: 1.8;
}

.ksh-compare__line {
    width: 55px;
    height: 3px;
    margin: 17px auto 19px;
}

.ksh-compare__header p {
    font-size: 14px;
    line-height: 2.1;
}

.ksh-compare__main {
    gap: 20px;
}

.ksh-compare__visual {
    min-height: 255px;
    border-radius: 16px;
}

.ksh-compare__visual-image,
.ksh-compare__visual-image img {
    min-height: 255px;
}

.ksh-compare__visual-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 10px;
}

.ksh-compare__visual-caption span {
    width: 4px;
    height: 32px;
    flex-basis: 4px;
}

.ksh-compare__visual-caption p {
    font-size: 14px;
}

.ksh-compare__benefits {
    gap: 12px;
}

.ksh-compare__benefit {
    grid-template-columns: 43px 1fr;
    gap: 13px;
    padding: 21px 17px;
    border-right-width: 3px;
    border-radius: 13px;
}

.ksh-compare__benefit-icon span {
    width: 37px;
    height: 37px;
}

.ksh-compare__benefit-icon span::after {
    width: 11px;
    height: 11px;
    top: 13px;
    right: 13px;
    border-width: 2px;
}

.ksh-compare__benefit-content h3 {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.8;
}

.ksh-compare__benefit-content p {
    font-size: 14px;
    line-height: 2.1;
}

.ksh-compare__bottom {
    margin-top: 25px;
}
```

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-11c35ab *//* =========================================
   KSH - Company Selection Section
   Scoped / Elementor Safe
========================================= */

.ksh-company-selection {
    --kcs-navy: #051934;
    --kcs-navy-soft: #0a2647;
    --kcs-gold: #EEAD16;
    --kcs-bg: #f5f7fa;
    --kcs-white: #ffffff;
    --kcs-text: #263446;
    --kcs-muted: #687587;

    width: 100%;
    padding: 95px 20px;
    background: var(--kcs-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-company-selection *,
.ksh-company-selection *::before,
.ksh-company-selection *::after {
    box-sizing: border-box;
}


/* Container */

.ksh-company-selection__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   Header
========================================= */

.ksh-company-selection__header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.ksh-company-selection__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;
    color: var(--kcs-gold);
    letter-spacing: .2px;
}

.ksh-company-selection__eyebrow::before,
.ksh-company-selection__eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--kcs-gold);
}

.ksh-company-selection__header h2 {
    margin: 0 0 22px;

    color: var(--kcs-navy);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.65;
    font-weight: 900;
}

.ksh-company-selection__header h2 span {
    color: var(--kcs-gold);
}

.ksh-company-selection__intro {
    max-width: 760px;
    margin: 0 auto;

    color: var(--kcs-muted);
    font-size: 16px;
    line-height: 2.15;
}


/* =========================================
   Main Layout
========================================= */

.ksh-company-selection__main {
    display: grid;
    grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: center;

    direction: ltr;
}


/* =========================================
   Visual
========================================= */

.ksh-company-selection__visual {
    direction: rtl;
    position: relative;
}

.ksh-company-selection__image {
    position: relative;

    width: 100%;
    min-height: 500px;

    border-radius: 24px;
    overflow: hidden;

    background: var(--kcs-navy);

    box-shadow:
        0 24px 60px rgba(5, 25, 52, .16);
}

.ksh-company-selection__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 25, 52, .02) 30%,
            rgba(5, 25, 52, .78) 100%
        );
}

.ksh-company-selection__image img {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: block;

    object-fit: cover;
}


/* Visual Label */

.ksh-company-selection__visual-label {
    position: absolute;

    right: -25px;
    bottom: 35px;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    color: var(--kcs-white);
    background: var(--kcs-navy);

    border-right: 4px solid var(--kcs-gold);
    border-radius: 8px 0 0 8px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(5, 25, 52, .22);
}

.ksh-company-selection__visual-label span {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;
    background: var(--kcs-gold);
}


/* =========================================
   Steps
========================================= */

.ksh-company-selection__steps {
    direction: rtl;

    position: relative;

    display: flex;
    flex-direction: column;

    padding-right: 34px;
}


/* Vertical connector */

.ksh-company-selection__steps::before {
    content: "";

    position: absolute;

    right: 10px;
    top: 30px;
    bottom: 30px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--kcs-gold),
            rgba(238, 173, 22, .18)
        );
}


/* Individual Step */

.ksh-company-selection__step {
    position: relative;

    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 25px;

    padding: 0 0 42px;
}

.ksh-company-selection__step:last-child {
    padding-bottom: 0;
}


/* Step Mark */

.ksh-company-selection__step-mark {
    position: relative;

    width: 22px;
    height: 22px;

    margin-top: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;

    border: 1px solid var(--kcs-gold);
    border-radius: 50%;

    background: var(--kcs-bg);
}

.ksh-company-selection__step-mark span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--kcs-gold);
}


/* Step Content */

.ksh-company-selection__step-content {
    padding: 24px 26px;

    background: var(--kcs-white);

    border-radius: 14px;

    border-top: 3px solid var(--kcs-navy);

    box-shadow: 0 10px 30px rgba(5, 25, 52, .06);
}

.ksh-company-selection__step:nth-child(2)
.ksh-company-selection__step-content {
    border-top-color: var(--kcs-gold);
}

.ksh-company-selection__step:nth-child(3)
.ksh-company-selection__step-content {
    border-top-color: var(--kcs-navy);
}

.ksh-company-selection__step-content h3 {
    position: relative;

    margin: 0 0 15px;

    padding-bottom: 13px;

    color: var(--kcs-navy);

    font-size: 20px;
    line-height: 1.8;
    font-weight: 900;
}

.ksh-company-selection__step-content h3::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 5px;

    background: var(--kcs-gold);
}

.ksh-company-selection__step-content p {
    margin: 0;

    color: var(--kcs-text);

    font-size: 15px;
    line-height: 2.15;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 900px) {

    .ksh-company-selection {
        padding: 75px 20px;
    }

    .ksh-company-selection__header {
        margin-bottom: 45px;
    }

    .ksh-company-selection__main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ksh-company-selection__visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .ksh-company-selection__image,
    .ksh-company-selection__image img {
        min-height: 400px;
    }

    .ksh-company-selection__steps {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .ksh-company-selection {
        padding: 60px 15px;
    }

    .ksh-company-selection__header {
        margin-bottom: 35px;
    }

    .ksh-company-selection__eyebrow {
        font-size: 12px;
    }

    .ksh-company-selection__eyebrow::before,
    .ksh-company-selection__eyebrow::after {
        width: 18px;
    }

    .ksh-company-selection__header h2 {
        font-size: 27px;
        line-height: 1.75;
    }

    .ksh-company-selection__intro {
        font-size: 14px;
        line-height: 2.15;
    }


    /* Image */

    .ksh-company-selection__image,
    .ksh-company-selection__image img {
        min-height: 300px;
    }

    .ksh-company-selection__image {
        border-radius: 18px;
    }

    .ksh-company-selection__visual-label {
        right: 12px;
        bottom: 15px;

        max-width: calc(100% - 24px);

        padding: 11px 14px;

        font-size: 11px;
        line-height: 1.7;

        border-right-width: 3px;
    }


    /* Steps */

    .ksh-company-selection__steps {
        padding-right: 27px;
    }

    .ksh-company-selection__steps::before {
        right: 7px;
        top: 25px;
        bottom: 25px;
    }

    .ksh-company-selection__step {
        grid-template-columns: 16px minmax(0, 1fr);
        gap: 18px;

        padding-bottom: 28px;
    }

    .ksh-company-selection__step-mark {
        width: 16px;
        height: 16px;
        margin-top: 8px;
    }

    .ksh-company-selection__step-mark span {
        width: 6px;
        height: 6px;
    }

    .ksh-company-selection__step-content {
        padding: 18px 17px;
        border-radius: 11px;
    }

    .ksh-company-selection__step-content h3 {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .ksh-company-selection__step-content h3::after {
        width: 32px;
        height: 2px;
    }

    .ksh-company-selection__step-content p {
        font-size: 13.5px;
        line-height: 2.2;
    }

}


/* =========================================
   Very Small Screens
========================================= */

@media (max-width: 380px) {

    .ksh-company-selection {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ksh-company-selection__header h2 {
        font-size: 24px;
    }

    .ksh-company-selection__step {
        gap: 14px;
    }

    .ksh-company-selection__step-content {
        padding: 16px 14px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2cfd5c3 *//* =========================================
   KSH - Specialist Benefits
   Scoped / Elementor Safe
========================================= */

.ksh-specialist-benefits {
    --ksb-navy: #051934;
    --ksb-navy-soft: #0a2647;
    --ksb-gold: #EEAD16;
    --ksb-bg: #f7f9fb;
    --ksb-white: #ffffff;
    --ksb-text: #263446;
    --ksb-muted: #687587;

    width: 100%;
    padding: 100px 20px;
    background: var(--ksb-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-specialist-benefits *,
.ksh-specialist-benefits *::before,
.ksh-specialist-benefits *::after {
    box-sizing: border-box;
}


/* Container */

.ksh-specialist-benefits__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   Intro
========================================= */

.ksh-specialist-benefits__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 70px;
    align-items: center;

    margin-bottom: 65px;
}


/* Text */

.ksh-specialist-benefits__intro-text {
    max-width: 650px;
}

.ksh-specialist-benefits__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--ksb-gold);

    font-size: 13px;
    font-weight: 800;
}

.ksh-specialist-benefits__eyebrow::before {
    content: "";

    width: 32px;
    height: 2px;

    background: var(--ksb-gold);
    border-radius: 10px;
}

.ksh-specialist-benefits__intro h2 {
    margin: 0 0 22px;

    color: var(--ksb-navy);

    font-size: clamp(29px, 3.2vw, 42px);
    line-height: 1.65;
    font-weight: 900;
}

.ksh-specialist-benefits__intro h2 span {
    color: var(--ksb-gold);
}

.ksh-specialist-benefits__intro p {
    margin: 0;

    color: var(--ksb-text);

    font-size: 16px;
    line-height: 2.2;
}


/* =========================================
   Image
========================================= */

.ksh-specialist-benefits__image {
    position: relative;

    height: 390px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--ksb-navy);

    box-shadow: 0 22px 55px rgba(5, 25, 52, .15);
}

.ksh-specialist-benefits__image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            rgba(5, 25, 52, .08),
            rgba(5, 25, 52, .62)
        );
}

.ksh-specialist-benefits__image::after {
    content: "";

    position: absolute;

    right: 24px;
    bottom: 24px;

    width: 65px;
    height: 65px;

    z-index: 2;

    border-right: 4px solid var(--ksb-gold);
    border-bottom: 4px solid var(--ksb-gold);

    opacity: .9;
}

.ksh-specialist-benefits__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   Benefits Section
========================================= */

.ksh-specialist-benefits__benefits {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    background: var(--ksb-navy);

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 22px 50px rgba(5, 25, 52, .12);
}


/* Benefits Heading */

.ksh-specialist-benefits__benefits-heading {
    position: relative;

    padding: 48px 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--ksb-navy-soft);
}

.ksh-specialist-benefits__benefits-heading > span {
    width: 48px;
    height: 4px;

    margin-bottom: 24px;

    background: var(--ksb-gold);

    border-radius: 5px;
}

.ksh-specialist-benefits__benefits-heading h3 {
    margin: 0;

    color: var(--ksb-white);

    font-size: 22px;
    line-height: 2;

    font-weight: 800;
}


/* Benefits List */

.ksh-specialist-benefits__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0;

    padding: 24px;
}


/* Benefit Item */

.ksh-specialist-benefits__item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 90px;

    padding: 20px 22px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    color: var(--ksb-white);
}

.ksh-specialist-benefits__item:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.ksh-specialist-benefits__item:nth-child(5) {
    grid-column: span 2;

    border-left: 0;
    border-bottom: 0;
}


/* Check */

.ksh-specialist-benefits__check {
    position: relative;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    border: 1px solid var(--ksb-gold);
    border-radius: 50%;
}

.ksh-specialist-benefits__check::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 4px;

    top: 7px;
    right: 6px;

    border-right: 2px solid var(--ksb-gold);
    border-bottom: 2px solid var(--ksb-gold);

    transform: rotate(45deg);
}

.ksh-specialist-benefits__item p {
    margin: 0;

    color: var(--ksb-white);

    font-size: 15px;
    line-height: 1.9;
    font-weight: 600;
}


/* =========================================
   Closing
========================================= */

.ksh-specialist-benefits__closing {
    display: flex;
    align-items: center;
    gap: 18px;

    max-width: 850px;

    margin: 48px auto 0;

    padding: 25px 30px;

    background: var(--ksb-white);

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(5, 25, 52, .05);
}

.ksh-specialist-benefits__closing-line {
    flex: 0 0 4px;

    width: 4px;
    height: 52px;

    background: var(--ksb-gold);

    border-radius: 10px;
}

.ksh-specialist-benefits__closing p {
    margin: 0;

    color: var(--ksb-navy);

    font-size: 15px;
    line-height: 2.1;
    font-weight: 700;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 900px) {

    .ksh-specialist-benefits {
        padding: 75px 20px;
    }

    .ksh-specialist-benefits__intro {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .ksh-specialist-benefits__intro-text {
        max-width: none;
    }

    .ksh-specialist-benefits__image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .ksh-specialist-benefits__benefits {
        grid-template-columns: 1fr;
    }

    .ksh-specialist-benefits__benefits-heading {
        padding: 35px 30px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .ksh-specialist-benefits {
        padding: 60px 15px;
    }

    .ksh-specialist-benefits__intro {
        gap: 30px;
        margin-bottom: 40px;
    }

    .ksh-specialist-benefits__eyebrow {
        font-size: 12px;
    }

    .ksh-specialist-benefits__intro h2 {
        font-size: 27px;
        line-height: 1.75;
    }

    .ksh-specialist-benefits__intro p {
        font-size: 14px;
        line-height: 2.2;
    }


    /* Image */

    .ksh-specialist-benefits__image {
        height: 280px;
        border-radius: 17px;
    }

    .ksh-specialist-benefits__image::after {
        right: 16px;
        bottom: 16px;

        width: 48px;
        height: 48px;

        border-width: 3px;
    }


    /* Benefits */

    .ksh-specialist-benefits__benefits {
        border-radius: 17px;
    }

    .ksh-specialist-benefits__benefits-heading {
        padding: 30px 22px;
    }

    .ksh-specialist-benefits__benefits-heading h3 {
        font-size: 18px;
        line-height: 2;
    }

    .ksh-specialist-benefits__list {
        grid-template-columns: 1fr;

        padding: 10px 15px;
    }

    .ksh-specialist-benefits__item,
    .ksh-specialist-benefits__item:nth-child(5) {
        min-height: auto;

        padding: 18px 8px;

        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);

        gap: 13px;
    }

    .ksh-specialist-benefits__item:last-child {
        border-bottom: 0;
    }

    .ksh-specialist-benefits__check {
        flex: 0 0 22px;

        width: 22px;
        height: 22px;
    }

    .ksh-specialist-benefits__item p {
        font-size: 13.5px;
        line-height: 1.9;
    }


    /* Closing */

    .ksh-specialist-benefits__closing {
        margin-top: 30px;
        padding: 20px 17px;
        gap: 13px;
    }

    .ksh-specialist-benefits__closing-line {
        height: 48px;
    }

    .ksh-specialist-benefits__closing p {
        font-size: 13.5px;
        line-height: 2.1;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09d964e *//* =========================================
   KSH - FAQ Section
   Scoped / Elementor Free Safe
========================================= */

.ksh-faq {
    --kfaq-navy: #051934;
    --kfaq-navy-soft: #0a2647;
    --kfaq-gold: #EEAD16;
    --kfaq-bg: #f5f7fa;
    --kfaq-white: #ffffff;
    --kfaq-text: #263446;
    --kfaq-muted: #718093;

    width: 100%;
    padding: 100px 20px;
    background: var(--kfaq-bg);
    box-sizing: border-box;
    overflow: hidden;
}

.ksh-faq *,
.ksh-faq *::before,
.ksh-faq *::after {
    box-sizing: border-box;
}


/* =========================================
   Container
========================================= */

.ksh-faq__container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================
   Header
========================================= */

.ksh-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.ksh-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;

    color: var(--kfaq-gold);

    font-size: 13px;
    font-weight: 800;
}

.ksh-faq__eyebrow::before,
.ksh-faq__eyebrow::after {
    content: "";

    width: 32px;
    height: 1px;

    background: var(--kfaq-gold);
}

.ksh-faq__header h2 {
    margin: 0;

    color: var(--kfaq-navy);

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.5;
    font-weight: 900;
}

.ksh-faq__header h2 span {
    color: var(--kfaq-gold);
}

.ksh-faq__line {
    width: 55px;
    height: 4px;

    margin: 18px auto 0;

    background: var(--kfaq-gold);

    border-radius: 10px;
}


/* =========================================
   FAQ List
========================================= */

.ksh-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================================
   FAQ Item
========================================= */

.ksh-faq__item {
    position: relative;

    background: var(--kfaq-white);

    border: 1px solid rgba(5, 25, 52, .08);
    border-radius: 13px;

    overflow: hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.ksh-faq__item[open] {
    border-color: rgba(238, 173, 22, .65);

    box-shadow:
        0 14px 35px rgba(5, 25, 52, .08);
}


/* =========================================
   Question
========================================= */

.ksh-faq__item summary {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    min-height: 76px;

    padding: 20px 25px;

    cursor: pointer;

    list-style: none;

    color: var(--kfaq-navy);

    font-size: 17px;
    line-height: 1.8;
    font-weight: 800;
}

.ksh-faq__item summary::-webkit-details-marker {
    display: none;
}

.ksh-faq__item summary::marker {
    display: none;
}


/* Gold Right Accent */

.ksh-faq__item summary::before {
    content: "";

    position: absolute;

    top: 18px;
    bottom: 18px;
    right: 0;

    width: 4px;

    background: var(--kfaq-navy);

    border-radius: 4px 0 0 4px;

    transition: background .25s ease;
}

.ksh-faq__item[open] summary::before {
    background: var(--kfaq-gold);
}


/* =========================================
   Plus / Minus Icon
========================================= */

.ksh-faq__item summary i {
    position: relative;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: var(--kfaq-navy);

    transition:
        background .25s ease,
        transform .25s ease;
}

.ksh-faq__item summary i::before,
.ksh-faq__item summary i::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 12px;
    height: 2px;

    background: var(--kfaq-gold);

    border-radius: 5px;

    transform: translate(-50%, -50%);
}

.ksh-faq__item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ksh-faq__item[open] summary i {
    background: var(--kfaq-gold);
    transform: rotate(180deg);
}

.ksh-faq__item[open] summary i::before,
.ksh-faq__item[open] summary i::after {
    background: var(--kfaq-navy);
}

.ksh-faq__item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}


/* =========================================
   Answer
========================================= */

.ksh-faq__answer {
    padding: 0 25px 25px 75px;
}

.ksh-faq__answer p {
    margin: 0;

    padding: 20px 22px;

    color: var(--kfaq-text);

    background: #f7f9fb;

    border-right: 2px solid var(--kfaq-gold);
    border-radius: 8px;

    font-size: 15px;
    line-height: 2.25;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 768px) {

    .ksh-faq {
        padding: 75px 20px;
    }

    .ksh-faq__header {
        margin-bottom: 38px;
    }

    .ksh-faq__item summary {
        padding: 18px 20px;

        font-size: 16px;
    }

    .ksh-faq__answer {
        padding: 0 20px 20px 45px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .ksh-faq {
        padding: 60px 15px;
    }

    .ksh-faq__eyebrow {
        font-size: 12px;
    }

    .ksh-faq__eyebrow::before,
    .ksh-faq__eyebrow::after {
        width: 20px;
    }

    .ksh-faq__header h2 {
        font-size: 28px;
    }

    .ksh-faq__list {
        gap: 10px;
    }

    .ksh-faq__item {
        border-radius: 11px;
    }

    .ksh-faq__item summary {
        min-height: 68px;

        padding: 16px 17px 16px 14px;

        gap: 12px;

        font-size: 14px;
        line-height: 1.9;
    }

    .ksh-faq__item summary::before {
        top: 16px;
        bottom: 16px;
        width: 3px;
    }

    .ksh-faq__item summary i {
        flex: 0 0 30px;

        width: 30px;
        height: 30px;
    }

    .ksh-faq__item summary i::before,
    .ksh-faq__item summary i::after {
        width: 10px;
    }

    .ksh-faq__answer {
        padding: 0 14px 14px 14px;
    }

    .ksh-faq__answer p {
        padding: 15px 14px;

        font-size: 13.5px;
        line-height: 2.2;

        border-right-width: 2px;
    }

}


/* =========================================
   Very Small Screens
========================================= */

@media (max-width: 380px) {

    .ksh-faq {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ksh-faq__item summary {
        font-size: 13.5px;
        padding-right: 15px;
    }

    .ksh-faq__item summary i {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c9c6cad *//* =========================================
   KSH - Final Summary
   Scoped / Elementor Free Safe
========================================= */

.ksh-final-summary {
    --kfs-navy: #051934;
    --kfs-navy-soft: #0a2647;
    --kfs-gold: #EEAD16;
    --kfs-white: #ffffff;
    --kfs-text: #e9edf2;

    width: 100%;
    padding: 95px 20px;

    background:
        linear-gradient(
            135deg,
            var(--kfs-navy) 0%,
            var(--kfs-navy-soft) 100%
        );

    box-sizing: border-box;
    overflow: hidden;
}

.ksh-final-summary *,
.ksh-final-summary *::before,
.ksh-final-summary *::after {
    box-sizing: border-box;
}


/* =========================================
   Container
========================================= */

.ksh-final-summary__container {
    position: relative;

    width: 100%;
    max-width: 1080px;

    margin: 0 auto;
    padding: 55px 65px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(238, 173, 22, 0.22);
    border-radius: 24px;

    overflow: hidden;
}


/* =========================================
   Decorative Accent
========================================= */

.ksh-final-summary__accent {
    position: absolute;

    top: 0;
    right: 0;

    width: 7px;
    height: 145px;

    background: var(--kfs-gold);

    border-radius: 0 0 0 10px;
}


/* =========================================
   Content
========================================= */

.ksh-final-summary__content {
    position: relative;
    z-index: 2;

    max-width: 920px;
}


/* =========================================
   Eyebrow
========================================= */

.ksh-final-summary__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: var(--kfs-gold);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .2px;
}

.ksh-final-summary__eyebrow::before {
    content: "";

    width: 34px;
    height: 2px;

    margin-left: 12px;

    background: var(--kfs-gold);

    border-radius: 10px;
}


/* =========================================
   Heading
========================================= */

.ksh-final-summary__content h2 {
    margin: 0 0 30px;

    color: var(--kfs-white);

    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.5;
    font-weight: 900;
}

.ksh-final-summary__content h2 span {
    color: var(--kfs-gold);
}


/* =========================================
   Text
========================================= */

.ksh-final-summary__text {
    position: relative;

    padding-right: 28px;
}

.ksh-final-summary__text::before {
    content: "";

    position: absolute;

    right: 0;
    top: 7px;

    width: 3px;
    height: calc(100% - 14px);

    background: var(--kfs-gold);

    border-radius: 10px;
}

.ksh-final-summary__text p {
    margin: 0;

    color: var(--kfs-text);

    font-size: 16px;
    line-height: 2.35;
    font-weight: 400;
}

.ksh-final-summary__text strong {
    color: var(--kfs-gold);
    font-weight: 800;
}


/* =========================================
   Bottom Decorative Line
========================================= */

.ksh-final-summary__bottom {
    display: flex;
    align-items: center;

    width: 100%;

    margin-top: 45px;

    gap: 10px;
}

.ksh-final-summary__bottom span {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    background: var(--kfs-gold);

    border-radius: 50%;
}

.ksh-final-summary__bottom div {
    width: 100%;
    height: 1px;

    background: rgba(238, 173, 22, 0.35);
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 768px) {

    .ksh-final-summary {
        padding: 75px 20px;
    }

    .ksh-final-summary__container {
        padding: 45px 40px;
        border-radius: 20px;
    }

    .ksh-final-summary__accent {
        width: 5px;
        height: 110px;
    }

    .ksh-final-summary__content h2 {
        margin-bottom: 25px;
    }

    .ksh-final-summary__text {
        padding-right: 22px;
    }

    .ksh-final-summary__text p {
        font-size: 15px;
        line-height: 2.25;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .ksh-final-summary {
        padding: 55px 14px;
    }

    .ksh-final-summary__container {
        padding: 36px 23px;

        border-radius: 16px;
    }

    .ksh-final-summary__accent {
        width: 4px;
        height: 90px;
    }

    .ksh-final-summary__eyebrow {
        margin-bottom: 12px;

        font-size: 12px;
    }

    .ksh-final-summary__eyebrow::before {
        width: 24px;
        height: 2px;

        margin-left: 9px;
    }

    .ksh-final-summary__content h2 {
        margin-bottom: 22px;

        font-size: 28px;
        line-height: 1.65;
    }

    .ksh-final-summary__text {
        padding-right: 17px;
    }

    .ksh-final-summary__text::before {
        width: 2px;
        top: 5px;
        height: calc(100% - 10px);
    }

    .ksh-final-summary__text p {
        font-size: 13.5px;
        line-height: 2.25;
    }

    .ksh-final-summary__bottom {
        margin-top: 30px;
    }

}


/* =========================================
   Very Small Screens
========================================= */

@media (max-width: 380px) {

    .ksh-final-summary {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ksh-final-summary__container {
        padding: 30px 18px;
    }

    .ksh-final-summary__content h2 {
        font-size: 25px;
    }

    .ksh-final-summary__text p {
        font-size: 13px;
    }

}/* End custom CSS */