
 /* ========================================
       HERO BANNER
       ======================================== */
 .hero-banner img {
    /* background: url('../images/career-page-banner.jpg');*/
    /* border-radius: 16px;*/
     background-repeat: no-repeat;
     background-size: cover;
     max-width:100%;
     margin: 40px auto 0px auto;
     display:block;
 }

 .hero-banner__content {
     position: relative;
     z-index: 1;
 }

 .hero-banner__title {
     font-size: 32px;
     font-weight: 600;
     line-height: 1.2;
 }

 .gradient-text {
     background: linear-gradient(135deg, #e63946, #ff6b6b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }
 
 /* Job listing | Section - 4  */
.listing-container {
    max-width: 1150px;
    /* width: 100%; */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-block: 60px;

    .top-content {
        text-align: center;
    }

    .postings {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;

        .post {
            width: 100%;
            height: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom: var(--border-light-blue);
            border-radius: 8px;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            background: var(--bg-white);
            transition: background 0.2s ease;

            .content {
                width: 100%;
                height: auto;
                text-align: start;

                ul {
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    gap: 24px;
                    margin-top: 16px;

                    li {
                        list-style: none;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 4px;
                        color: var(--bg-grey5);
                    }
                }
            }

            a.linkedin-cta {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                flex-shrink: 0;
                text-decoration: none;
                color: unset;

                img {
                    width: 24px;
                    height: 24px;
                    object-fit: cover;
                }

                p {
                    color: var(--text-black-primary);
                }
            }

            &:hover {
                background: #F4F9FF;
                transition: background 0.2s ease;
                border-bottom: 1px solid transparent;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
            }
        }
    }

    .notfound-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 40px;
        border: var(--border-light-blue);
        background: var(--section-gradient);
        border-radius: 12px;

        h4 {
            max-width: 393px;
            width: 100%;
        }

        .right-content {
            max-width: 476px;
            width: 100%;
            height: auto;

            text-align: start;

            a {
                width: 100%;
                height: auto;
                text-decoration: none;
                display: flex;
                justify-content: start;
                align-items: flex-start;
                gap: 4px;
                /*margin-top: 32px;*/
                color: var(--bg-black-primary);
            }
        }
    }

    .nopost-container {
        position: relative;
        width: 100%;
        max-width: 1160px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .gradient-bg {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(244, 249, 255, 0.60) 54.5%, rgba(255, 255, 255, 0.60) 100%);
            filter: blur(25px);
            z-index: -1;
        }

        .sub-heading-primary {
            margin-top: 40px;
        }

        .para-primary {
            margin-top: 8px;
        }

        a {
            width: 100%;
            height: auto;
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 4px;
            margin-top: 32px;
            color: var(--bg-black-primary);
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            max-width: 100%;
            width: auto;
            align-items: center;
            gap: 32px;
            margin-block: 60px;
            margin-inline: 24px;

            .top-content {
                /*text-align: start;*/
            }

            .postings {
                gap: 16px;

                .post {
                    border: var(--border-light-blue);
                    background: var(--section-gradient);
                    padding: 16px;
                    align-items: end;
                    border-bottom-left-radius: 8px;
                    border-bottom-right-radius: 8px;

                    .content {
                        ul {
                            gap: 12px;
                            flex-direction: column;
                        }
                    }
                }
            }

            .notfound-container {
                flex-direction: column;
                padding: 32px 20px;

                h4 {
                    line-height: 24px;
                    font-weight: 400;
                }

                .para-primary {
                    margin-top: 8px;
                }
            }

            .nopost-container {
                margin-inline: auto;

                .brief-case {
                    width: 143px;
                    height: 105px;
                }

                .sub-heading-primary {
                    margin-top: 28px;
                }

                a {
                    margin-top: 24px;
                }
            }
        }
    }

    @media (min-width: 984px) and (max-width: 1070px) {
        .container {
            margin-inline: auto !important;
        }
    }
}

 
        /* latest insights - Section 4  */
.latest-insights {
    position: relative;
    height: auto;
    padding: 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    border: var(--border-light-blue);
    border-radius: 20px;
    background: var(--section-gradient);
    margin-block: var(--spacer-120);

    .triangle_graphic {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .left-content {
        max-width: 390px;
        width: 100%;
        height: auto;

        .para-primary {
            margin-top: 8px;
        }
    }

    .right-content {
        max-width: 625px;
        width: 100%;
        height: auto;
    }

    @media screen and (max-width: 1024px) {
        & {
            flex-direction: column;
            gap: 32px;
            padding: 40px 20px;
            margin-block: var(--spacer-60);
        }
    }
}

/* Form CSS */
.form {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
    max-width: 625px;
    height: auto;

    .screen-reader-response {
        display: none;
    }

    .form-row {
        width: 100%;
        display: flex;
        gap: 24px;
        justify-content: start;
        align-items: start;
        margin-top: 20px;

        p {
            width: 50%;
        }

    }

    .form-row-inner {
        p {
            width: 100%;
            display: flex;
            justify-content: start;
            align-items: start;
        }
    }

    input,
    select {
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #D8E5F4;
        background: #FFF;
        width: 100%;
        font-family: "Sora", sans-serif;
        color: var(--text-black-primary);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
    }

    select:focus-visible,
    input:focus-visible {
        outline: 0;
    }

    input::placeholder,
    select::placeholder {
        color: var(--text-grey2);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
    }

    input[type='submit'] {
        border-radius: 8px;
        background: #E6323A;
        padding: 16px 32px;
        border: none;
        color: #fff;
        margin-top: 40px;
        width: fit-content;
        color: var(--text-white);
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0;
    }

    select[name="country-code"] {
        width: fit-content;
        padding-right: 0;
        border-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        font-family: "Sora", sans-serif;
        color: var(--text-black-primary);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        padding: 14px;
        padding-right: 0;
    }

    input[type='tel'] {
        width: 185px;
        padding-left: 15px;
        border-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .wpcf7-not-valid-tip {
        font-size: 14px;
    }

    .wpcf7-response-output {
        margin-top: 20px;
        font-size: 14px;
    }

    &:last-child {
        .form-row {
            p {
                width: 100%;
            }

        }
    }

    @media screen and (max-width: 1024px) {
        & {

            .form-row {
                flex-direction: column;
            }

            input[type='tel'] {
                width: 100%;
            }

            input[type='submit'] {
                width: 100%;
                font-size: 14px;
                line-height: 20px;
                margin-top: 32px;
            }
        }
    }
}
#kh-companyShortName{display:none;}
