  /*======================================
            HERO SECTION
======================================*/

.jp-hero-banner{
    position:relative;
    width:100%;
    overflow:hidden;
}

.jp-hero-bg{

  min-height: 476px;

    display:flex;
    align-items:center;

    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;

    position:relative;

}

/*.jp-hero-overlay{*/

/*    position:absolute;*/
/*    inset:0;*/

/*    background:linear-gradient(*/
/*        90deg,*/
/*        rgba(0,0,0,.72) 0%,*/
/*        rgba(0,0,0,.55) 35%,*/
/*        rgba(0,0,0,.20) 100%*/
/*    );*/

/*    z-index:1;*/

/*}*/

.jp-hero-content{

    position:relative;
    z-index:2;

    max-width:700px;

    color:#fff;

    padding:120px 0;

}

.jp-hero-subtitle{

    display:inline-block;

    color:#ff6b00;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.jp-hero-title{

    font-size:58px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

}

.jp-hero-text{

    font-size:18px;

    line-height:32px;

    color:#f3f3f3;

    margin-bottom:40px;

}

.jp-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.jp-btn-primary{

    display:inline-block;

    background:#ff6600;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.jp-btn-primary:hover{

    background:#fff;

    color:#ff6600;

}

.jp-btn-secondary{

    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.jp-btn-secondary:hover{

    background:#fff;

    color:#111;

}


/*==============================
        Tablet
==============================*/

@media(max-width:991px){

    .jp-hero-bg{

        min-height:620px;

    }

    .jp-hero-content{

        text-align:center;

        max-width:100%;

        padding:100px 20px;

    }

    .jp-hero-title{

        font-size:46px;

    }

    .jp-hero-buttons{

        justify-content:center;

    }

}


/*==============================
        Mobile
==============================*/

@media(max-width:767px){

    .jp-hero-bg{

        min-height:520px;

        background-position:center;

    }

    .jp-hero-content{

        padding:90px 15px;

    }

    .jp-hero-subtitle{

        font-size:13px;

        letter-spacing:1px;

    }

    .jp-hero-title{

        font-size:34px;

        line-height:1.3;

    }

    .jp-hero-text{

        font-size:16px;

        line-height:28px;

    }

    .jp-btn-primary,
    .jp-btn-secondary{

        width:100%;

        text-align:center;

    }

}

    /*=============================
        VIDEO SECTION
==============================*/

.jp-video-showcase{

    position:relative;

}

.jp-video-bg{

    position:relative;
    min-height:550px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;

}

.jp-video-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

}

.jp-video-content{

    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:850px;
    margin:auto;

}

.jp-video-content h2{

    font-size:46px;
    font-weight:700;
    margin:25px 0 15px;

}

.jp-video-content p{

    font-size:16px;
    line-height:28px;
    opacity:.9;

}

.jp-play-btn{

    width:95px;
    height:95px;
    border-radius:50%;
    border:none;
    background:#ff6600;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    transition:.35s;

}

.jp-play-btn:hover{

    transform:scale(1.08);
    background:#ffffff;
    color:#ff6600;

}


/* Ripple */

.jp-play-btn{

    position:relative;

}

.jp-play-btn::before,
.jp-play-btn::after{

    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.5);
    animation:jpRipple 2s infinite;

}

.jp-play-btn::after{

    animation-delay:1s;

}

@keyframes jpRipple{

    0%{

        transform:scale(1);
        opacity:1;

    }

    100%{

        transform:scale(1.8);
        opacity:0;

    }

}



/*=========================
      POPUP
==========================*/

#jpVideoPopup{

    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.88);
    z-index:999999;

}

.jp-popup-box{

    width:90%;
    max-width:1050px;
    position:relative;

}

.jp-popup-box video{

    width:100%;
    border-radius:12px;
    display:block;

}

.jp-close-btn{

    position:absolute;
    top:-45px;
    right:0;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#ff6600;
    color:#fff;
    font-size:28px;
    cursor:pointer;

}

.jp-close-btn:hover{

    background:#fff;
    color:#ff6600;

}



/*=========================
      RESPONSIVE
==========================*/

@media(max-width:768px){

    .jp-video-bg{

        min-height:420px;

    }

    .jp-video-content h2{

        font-size:28px;

    }

    .jp-video-content p{

        font-size:15px;

    }

    .jp-play-btn{

        width:75px;
        height:75px;
        font-size:26px;

    }

}

/* =========================================================
   COMMON SECTION
   ========================================================= */

.jp-seo-section {
    padding: 80px 0;
}

.jp-seo-section.bg-light {
    background: #f7f8fa;
}

.jp-seo-section.bg-soft {
    background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}

.jp-section-heading {
    margin-bottom: 45px;
}

.jp-section-heading.center {
    text-align: center;
}

.jp-section-heading__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ef7f1a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.jp-section-heading__tag::before,
.jp-section-heading__tag::after {
    content: "";
    width: 30px;
    height: 1px;
    background: #ef7f1a;
}

.jp-section-heading h2 {
    color: #045aa2;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
}

.jp-section-heading p {
    max-width: 850px;
    margin: 16px auto 0;
    color: #666;
}

/* =========================================================
   INTRO
   ========================================================= */

.jp-intro-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 35px rgba(0,0,0,.07);
    overflow: hidden;
}

.jp-intro-content {
    padding: 45px;
}

.jp-intro-content h2 {
    color: #045aa2;
    font-size: 30px;
    margin-bottom: 22px;
}

.jp-intro-content p:last-child {
    margin-bottom: 0;
}

.jp-intro-image {
    height: 100%;
    min-height: 360px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.05), rgba(0,0,0,.12)),
        url('../images/resources/about-us.webp') center center / cover no-repeat;
}
/* =========================================================
   INDUSTRIES WE SERVE
   ========================================================= */

.jp-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* =========================================================
   CARD
   ========================================================= */

.jp-industry-card {
    position: relative;
    min-width: 0;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 9px;
    padding: 28px 22px 25px;
    overflow: hidden;
    transition: all .3s ease;
}


/* Orange top accent */

.jp-industry-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 3px;
    background: #ef7f1a;
    z-index: 5;
    transition: width .3s ease;
}


/* Left orange accent on hover */

.jp-industry-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #ef7f1a;
    transition: height .3s ease;
}


/* Hover */

.jp-industry-card:hover {
    transform: translateY(-5px);
    border-color: #cfdce7;
    box-shadow: 0 14px 35px rgba(4, 90, 162, .10);
}

.jp-industry-card:hover::before {
    width: 100px;
}

.jp-industry-card:hover::after {
    height: 100%;
}


/* =========================================================
   IMAGE
   ========================================================= */

.jp-industry-card__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 158px;
    height: 118px;
    overflow: hidden;
    z-index: 1;

    /*
       Angled bottom-left corner
    */
    clip-path: polygon(
        22% 0,
        100% 0,
        100% 100%,
        42% 100%,
        0 60%
    );

    background: #edf3f7;
}


.jp-industry-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}


.jp-industry-card:hover .jp-industry-card__image img {
    transform: scale(1.07);
}


/* Slight white overlay */

.jp-industry-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.10),
        rgba(4,90,162,.03)
    );
}


/* =========================================================
   TOP / NUMBER
   ========================================================= */

.jp-industry-card__top {
    position: relative;
    z-index: 3;
    min-height: 45px;
}


.jp-industry-card__number {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5fb;
    color: #045aa2;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;

    border: 1px solid #e0edf7;
}


/* =========================================================
   TITLE
   ========================================================= */

.jp-industry-card h3 {
    position: relative;
    z-index: 3;

    max-width: 72%;

    color: #045aa2;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;

    margin: 14px 0 13px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.jp-industry-card p {
    position: relative;
    z-index: 3;

    color: #666;

    font-size: 13px;
    line-height: 1.75;

    margin: 0 0 20px;
}


/* =========================================================
   LABEL
   ========================================================= */

.jp-industry-card__label {
    position: relative;
    z-index: 3;

    color: #ef7f1a;

    font-size: 10px;
    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 10px;
}


/* =========================================================
   LIST
   ========================================================= */

/* =========================================================
   INDUSTRY APPLICATION LIST
   2 ITEMS PER ROW
   ========================================================= */

.jp-industry-card ul {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 22px;
    row-gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.jp-industry-card ul li {
    position: relative;

    padding-left: 15px;
    margin: 0;

    color: #555;

    font-size: 12.5px;
    line-height: 1.55;
}

.jp-industry-card ul li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 7px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ef7f1a;
}

/* =========================================================
   CARDS WITH MANY ITEMS
   Make lists slightly more compact
   ========================================================= */

.jp-industry-card ul li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE - LARGE TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .jp-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-industry-card__image {
        width: 135px;
        height: 100px;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 767px) {

    .jp-industry-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jp-industry-card {
        padding: 25px 20px;
    }

    .jp-industry-card__image {
        width: 150px;
        height: 105px;
    }

    .jp-industry-card h3 {
        font-size: 19px;
        max-width: 65%;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .jp-industry-card {
        padding: 23px 18px;
    }

    .jp-industry-card__image {
        width: 125px;
        height: 90px;
    }

    .jp-industry-card h3 {
        font-size: 18px;
        max-width: 67%;
    }

    .jp-industry-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .jp-industry-card ul li {
        font-size: 12.5px;
    }

}

/* =========================================================
   MANUFACTURING FACILITY
   ========================================================= */

.jp-manufacturing-image {
    position: relative;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.2)),
        url('../images/plant-images/plant-1.webp') center / cover no-repeat;
}

.jp-manufacturing-image::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    height: 4px;
    background: #ef7f1a;
    border-radius: 10px;
}

.jp-manufacturing-content {
    padding-left: 40px;
}

.jp-manufacturing-content h2 {
    color: #045aa2;
    font-size: 34px;
    margin-bottom: 8px;
}

.jp-manufacturing-content h3 {
    color: #333;
    font-size: 23px;
    margin-bottom: 20px;
}

.jp-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.jp-capability-item {
    background: #f6f8fa;
    border-left: 3px solid #045aa2;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    border-radius: 3px;
}

/* =========================================================
   RAW MATERIALS
   ========================================================= */

.jp-materials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.jp-material-card {
    text-align: center;
    background: #fff;
    border: 1px solid #e8edf2;
    padding: 25px 12px;
    border-radius: 8px;
    transition: .3s ease;
}

.jp-material-card:hover {
    border-color: #045aa2;
    box-shadow: 0 10px 25px rgba(4,90,162,.08);
    transform: translateY(-4px);
}

.jp-material-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5fb;
    color: #045aa2;
    font-size: 20px;
}

.jp-material-card h3 {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

/* =========================================================
   MANUFACTURING PROCESS
   ========================================================= */

.jp-process-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.jp-process-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dce8f2;
    transform: translateX(-50%);
}

.jp-process-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 45px;
}

.jp-process-step:last-child {
    margin-bottom: 0;
}

.jp-process-step:nth-child(even) .jp-process-content {
    grid-column: 2;
}

.jp-process-step:nth-child(even) .jp-process-number {
    order: 1;
}

.jp-process-content {
    background: #fff;
    border-radius: 9px;
    padding: 28px;
    border: 1px solid #e5eaf0;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.jp-process-content h3 {
    color: #045aa2;
    font-size: 20px;
    margin-bottom: 12px;
}

.jp-process-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.jp-process-content ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.jp-process-content ul li {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
}

.jp-process-number {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: #045aa2;
    border: 5px solid #fff;
    box-shadow: 0 5px 18px rgba(4,90,162,.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

/* =========================================================
   QUALITY ASSURANCE
   ========================================================= */

.jp-quality-intro {
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.jp-quality-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.jp-quality-item {
    background: #fff;
    border: 1px solid #e6ebf0;
    border-radius: 7px;
    padding: 20px 12px;
    text-align: center;
    transition: .3s ease;
}

.jp-quality-item:hover {
    transform: translateY(-4px);
    border-color: #ef7f1a;
}

.jp-quality-item span {
    display: block;
    width: 35px;
    height: 35px;
    margin: 0 auto 12px;
    background: #fff3e8;
    color: #ef7f1a;
    border-radius: 50%;
    line-height: 35px;
    font-weight: 700;
}

.jp-quality-item h3 {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    color: #444;
}

/* =========================================================
   TRUST / STRENGTHS
   ========================================================= */

.jp-trust-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.jp-trust-box {
    background: #045aa2;
    border-radius: 10px;
    padding: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.jp-trust-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 30px solid rgba(255,255,255,.06);
    border-radius: 50%;
    right: -60px;
    bottom: -60px;
}

.jp-trust-box h2 {
    color: #fff;
    font-size: 31px;
    margin-bottom: 20px;
}

.jp-trust-box p {
    color: rgba(255,255,255,.9);
    margin-bottom: 0;
}

.jp-strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.jp-strength-item {
    background: #fff;
    border: 1px solid #e6ebf0;
    border-radius: 7px;
    padding: 16px 18px;
    font-size: 14px;
    color: #444;
    font-weight: 600;
    position: relative;
    padding-left: 43px;
}

.jp-strength-item::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ef7f1a;
    font-weight: 800;
}

.jp-trust-bottom {
    margin-top: 30px;
}

/* =========================================================
   PARTNER SECTION
   ========================================================= */

.jp-partner-section {
    background:
        linear-gradient(90deg, rgba(4,90,162,.97), rgba(4,90,162,.86)),
        url('<?php echo path(); ?>assets/images/slider/video-bg.webp') center / cover;
    padding: 75px 0;
    color: #fff;
}

.jp-partner-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.jp-partner-content h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;
}

.jp-partner-content p {
    color: rgba(255,255,255,.9);
}

.jp-partner-content .thm-btn {
    margin-top: 15px;
}

/* =========================================================
   PREFERRED MANUFACTURER
   ========================================================= */

.jp-preferred-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 55px;
    align-items: start;
}

.jp-preferred-content h2 {
    color: #045aa2;
    font-size: 32px;
    margin-bottom: 8px;
}

.jp-preferred-content h3 {
    color: #333;
    font-size: 23px;
    margin-bottom: 20px;
}

.jp-technical-box {
    background: #f7f9fb;
    border-radius: 10px;
    padding: 35px;
    border-top: 4px solid #ef7f1a;
}

.jp-technical-box h3 {
    color: #045aa2;
    margin-bottom: 22px;
    font-size: 23px;
}

.jp-technical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.jp-technical-item {
    background: #fff;
    border: 1px solid #e4e9ee;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

/* =========================================================
   CUSTOMER SATISFACTION
   ========================================================= */

.jp-satisfaction {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.jp-satisfaction h2 {
    color: #045aa2;
    font-size: 30px;
    margin-bottom: 20px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.jp-final-cta {
    background: #f7f8fa;
    padding: 70px 0;
}

.jp-final-cta__box {
    background: #fff;
    border-radius: 10px;
    padding: 45px 50px;
    border: 1px solid #e7ebef;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    text-align: center;
}

.jp-final-cta__box h2 {
    color: #045aa2;
    font-size: 32px;
    margin-bottom: 18px;
}

.jp-final-cta__box p {
    max-width: 950px;
    margin: 0 auto 25px;
}

.jp-product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.jp-product-tags span {
    display: inline-block;
    background: #edf5fb;
    color: #045aa2;
    border: 1px solid #dcebf7;
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .jp-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jp-quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jp-trust-layout,
    .jp-preferred-layout {
        gap: 30px;
    }
}

@media (max-width: 991px) {

    .jp-seo-hero {
        min-height: 330px;
    }

    .jp-seo-hero h1 {
        font-size: 38px;
    }

    .jp-seo-section {
        padding: 60px 0;
    }

    .jp-intro-image {
        min-height: 300px;
    }

    .jp-manufacturing-content {
        padding-left: 0;
        padding-top: 35px;
    }

    .jp-trust-layout,
    .jp-preferred-layout {
        grid-template-columns: 1fr;
    }

    .jp-process-wrapper::before {
        left: 26px;
    }

    .jp-process-step {
        display: block;
        padding-left: 75px;
    }

    .jp-process-step:nth-child(even) .jp-process-content {
        grid-column: auto;
    }

    .jp-process-number {
        left: 26px;
    }
}

@media (max-width: 767px) {

    .jp-seo-hero {
        min-height: 290px;
    }

    .jp-seo-hero__content {
        padding: 50px 0;
    }

    .jp-seo-hero h1 {
        font-size: 30px;
    }

    .jp-seo-hero p {
        font-size: 14px;
    }

    .jp-section-heading h2 {
        font-size: 28px;
    }

    .jp-intro-content {
        padding: 30px 25px;
    }

    .jp-industry-grid {
        grid-template-columns: 1fr;
    }

    .jp-materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-capability-grid {
        grid-template-columns: 1fr;
    }

    .jp-quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-strength-grid {
        grid-template-columns: 1fr;
    }

    .jp-technical-grid {
        grid-template-columns: 1fr;
    }

    .jp-trust-box {
        padding: 30px;
    }

    .jp-final-cta__box {
        padding: 35px 22px;
    }

    .jp-partner-content h2,
    .jp-final-cta__box h2 {
        font-size: 27px;
    }
}

@media (max-width: 480px) {

    .jp-materials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jp-quality-grid {
        grid-template-columns: 1fr;
    }

    .jp-process-step {
        padding-left: 65px;
    }

    .jp-process-wrapper::before {
        left: 21px;
    }

    .jp-process-number {
        left: 21px;
        width: 44px;
        height: 44px;
    }
}