.elementor-42 .elementor-element.elementor-element-d3f5c87{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-40254fa *//* =========================================
   GLOBAL
========================================= */

.sjm-about-hero,
.sjm-about-hero *,
.sjm-about-overview,
.sjm-about-overview *,
.sjm-about-info-section,
.sjm-about-info-section * {
    box-sizing: border-box;
}


/* =========================================
   COMMON TAG
========================================= */

.sjm-section-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #c88708;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sjm-section-tag > span {
    width: 30px;
    height: 2px;

    background: #c88708;
}

.sjm-light-tag {
    color: #ffd96b;
}

.sjm-light-tag > span {
    background: #ffd96b;
}


/* =========================================
   SECTION 1 - HERO
========================================= */

.sjm-about-hero {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 130px 0 100px;

    background:
        linear-gradient(
            135deg,
            #061b3c 0%,
            #0b2f63 55%,
            #041832 100%
        );
}

.sjm-about-hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(218, 161, 20, 0.2),
            transparent 68%
        );
}

.sjm-about-hero-container {
    position: relative;
    z-index: 2;

    width: min(1300px, 90%);
    margin: auto;
}

.sjm-about-breadcrumb {
    display: flex;
    gap: 10px;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.6);

    font-size: 14px;
}

.sjm-about-breadcrumb a {
    color: #ffd96b;
    text-decoration: none;
}

.sjm-about-breadcrumb strong {
    color: #ffffff;
    font-weight: 500;
}

.sjm-about-hero-content {
    max-width: 850px;
}

.sjm-about-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;

    line-height: 1.15;
}

.sjm-about-hero h1 span {
    display: block;

    color: #e3ac25;
}

.sjm-about-hero p {
    max-width: 720px;

    margin: 25px 0 0;

    color: rgba(255,255,255,0.7);

    font-size: 17px;

    line-height: 1.9;
}

.sjm-about-hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 38px;
}

.sjm-btn-primary,
.sjm-btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 17px 28px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s;
}

.sjm-btn-primary {
    color: #061b3c;

    background:
        linear-gradient(
            135deg,
            #d89b12,
            #ffe89a
        );
}

.sjm-btn-primary:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

.sjm-btn-outline {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.3);
}

.sjm-btn-outline:hover {
    color: #061b3c;
    background: #ffffff;
}

.sjm-hero-bottom-shape {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 50px;

    background: #ffffff;

    clip-path:
        polygon(
            0 100%,
            100% 0,
            100% 100%
        );
}


/* =========================================
   SECTION 2 - ABOUT
========================================= */

.sjm-about-overview {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );
}

.sjm-about-container {
    width: min(1300px, 90%);
    margin: auto;
}

.sjm-about-intro-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 90px;
}

.sjm-about-content h2,
.sjm-vision-heading h2 {
    margin: 0;

    color: #071d42;

    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;

    line-height: 1.25;
}

.sjm-about-content h2 span,
.sjm-vision-heading h2 span {
    display: block;

    color: #c88708;
}

.sjm-about-content > p {
    margin: 20px 0 0;

    color: #667085;

    font-size: 16px;

    line-height: 1.9;
}

.sjm-about-content .sjm-lead-text {
    color: #344767;

    font-size: 18px;
    font-weight: 600;
}


/* IMAGE */

.sjm-about-visual {
    position: relative;
}

.sjm-about-image {
    overflow: hidden;

    border-radius: 20px;

    border: 7px solid #ffffff;

    box-shadow:
        0 25px 70px rgba(7,29,66,0.15);
}

.sjm-about-image img {
    width: 100%;
    display: block;
}

.sjm-purpose-card {
    position: absolute;

    left: -40px;
    bottom: 40px;

    width: 280px;

    padding: 25px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #061b3c,
            #123b78
        );

    box-shadow:
        0 20px 45px rgba(7,29,66,0.25);
}

.sjm-purpose-card span {
    display: block;

    margin-bottom: 8px;

    color: #ffd96b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.sjm-purpose-card strong {
    color: #ffffff;

    font-size: 18px;

    line-height: 1.6;
}


/* =========================================
   VISION & MISSION
========================================= */

.sjm-vision-heading {
    max-width: 800px;

    margin: 120px auto 55px;

    text-align: center;
}

.sjm-vision-heading .sjm-section-tag {
    justify-content: center;
}

.sjm-vision-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.sjm-vision-card {
    min-height: 420px;

    padding: 50px 45px;

    border-radius: 20px;

    transition: 0.3s;
}

.sjm-vision-card:hover {
    transform: translateY(-8px);
}

.sjm-vision-main {
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #061b3c,
            #123b78
        );

    box-shadow:
        0 25px 55px rgba(7,29,66,0.2);
}

.sjm-mission-main {
    background: #ffffff;

    border: 1px solid rgba(7,29,66,0.08);

    box-shadow:
        0 20px 50px rgba(7,29,66,0.08);
}

.sjm-card-number {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    color: #061b3c;

    font-size: 14px;
    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #d89b12,
            #ffe89a
        );
}

.sjm-card-label {
    display: block;

    margin-bottom: 10px;

    color: #c88708;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.sjm-vision-main .sjm-card-label {
    color: #ffd96b;
}

.sjm-vision-card h3 {
    margin: 0 0 20px;

    font-size: 30px;
}

.sjm-vision-main h3 {
    color: #ffffff;
}

.sjm-mission-main h3 {
    color: #071d42;
}

.sjm-vision-card p {
    margin: 0 0 16px;

    font-size: 15px;

    line-height: 1.9;
}

.sjm-vision-main p {
    color: rgba(255,255,255,0.72);
}

.sjm-mission-main p {
    color: #667085;
}

.sjm-mission-main ul {
    margin: 25px 0 0;
    padding: 0;

    list-style: none;
}

.sjm-mission-main li {
    display: flex;

    gap: 12px;

    margin-bottom: 14px;

    color: #344767;

    font-size: 15px;
}

.sjm-mission-main li span {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #061b3c;

    font-size: 11px;
}


/* =========================================
   SECTION 3 - WHY CHOOSE US
========================================= */

.sjm-about-info-section {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #061b3c,
            #0a2d60
        );
}

.sjm-info-container {
    width: min(1200px, 90%);
    margin: auto;
}

.sjm-why-heading,
.sjm-faq-heading {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}

.sjm-why-heading .sjm-section-tag,
.sjm-faq-heading .sjm-section-tag {
    justify-content: center;
}

.sjm-why-heading h2,
.sjm-faq-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 54px);

    font-weight: 800;

    line-height: 1.25;
}

.sjm-why-heading h2 span,
.sjm-faq-heading h2 span {
    display: block;

    color: #e3ac25;
}

.sjm-why-heading p {
    margin: 22px auto 0;

    color: rgba(255,255,255,0.65);

    font-size: 16px;

    line-height: 1.9;
}


/* WHY CARDS */

.sjm-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.sjm-why-card {
    padding: 32px 25px;

    border-radius: 16px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.3s;
}

.sjm-why-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255,215,102,0.4);
}

.sjm-why-number {
    margin-bottom: 25px;

    color: #ffd96b;

    font-size: 12px;
    font-weight: 800;
}

.sjm-why-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 20px;
}

.sjm-why-card p {
    margin: 0;

    color: rgba(255,255,255,0.62);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FAQ
========================================= */

.sjm-about-faq-wrapper {
    margin-top: 120px;
}

.sjm-about-faq-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.sjm-about-faq-item {
    overflow: hidden;

    border-radius: 12px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.1);
}

.sjm-about-faq-item summary {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 23px 28px;

    cursor: pointer;

    list-style: none;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.sjm-about-faq-item summary::-webkit-details-marker {
    display: none;
}

.sjm-about-faq-item summary > span {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffd96b;

    background: rgba(255,215,102,0.1);

    font-size: 11px;
}

.sjm-about-faq-item summary i {
    width: 30px;
    height: 30px;

    margin-left: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #061b3c;

    background: #e3ac25;

    font-style: normal;

    font-size: 20px;

    transition: 0.3s;
}

.sjm-about-faq-item[open] summary i {
    transform: rotate(45deg);
}

.sjm-about-faq-item > div {
    padding:
        0
        75px
        28px
        84px;

    color: rgba(255,255,255,0.68);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .sjm-about-intro-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .sjm-about-visual {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }

    .sjm-why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .sjm-about-hero {
        min-height: 520px;

        padding: 110px 0 90px;
    }

    .sjm-about-hero h1 {
        font-size: 40px;
    }

    .sjm-about-hero p {
        font-size: 15px;
    }

    .sjm-about-hero-buttons {
        flex-direction: column;
    }

    .sjm-btn-primary,
    .sjm-btn-outline {
        width: 100%;
    }

    .sjm-about-overview,
    .sjm-about-info-section {
        padding: 75px 0;
    }

    .sjm-about-container,
    .sjm-info-container {
        width: 90%;
    }

    .sjm-about-content h2,
    .sjm-vision-heading h2,
    .sjm-why-heading h2,
    .sjm-faq-heading h2 {
        font-size: 34px;
    }

    .sjm-about-content .sjm-lead-text {
        font-size: 16px;
    }

    .sjm-about-content > p {
        font-size: 15px;
    }

    .sjm-purpose-card {
        position: relative;

        left: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin: -25px auto 0;
    }

    .sjm-vision-heading {
        margin-top: 80px;
    }

    .sjm-vision-grid {
        grid-template-columns: 1fr;
    }

    .sjm-vision-card {
        min-height: auto;

        padding: 35px 25px;
    }

    .sjm-why-grid {
        grid-template-columns: 1fr;
    }

    .sjm-about-faq-wrapper {
        margin-top: 80px;
    }

    .sjm-about-faq-item summary {
        padding: 18px;

        gap: 12px;

        font-size: 14px;
    }

    .sjm-about-faq-item > div {
        padding:
            0
            20px
            22px
            64px;

        font-size: 14px;
    }

}/* End custom CSS */