/* ================================
   GLOBAL START
================================ */

:root {
    --primary-blue: #003b82;
    --dark-blue: #06265c;
    --text-dark: #10234d;
    --text-muted: #5f6f89;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

/*====================================
            HEADER
====================================*/

.main-header{
    background:#fff;
    box-shadow:0 2px 18px rgba(0,0,0,.05);
    position: sticky;
top: 0;
z-index: 999;
}

.main-header .navbar{
    height:95px;
}

.header-logo{
    width:210px;
    height:auto;
    transition:.3s;
}
.navbar-nav{
    gap:34px;
}

.navbar-nav .nav-link{

    color:#0b2d68;
    font-size:16px;
    font-weight:600;
    padding:0;

    position:relative;

    transition:.3s;
}

.navbar-nav .nav-link:hover{

    color:#0057b8;

}

.navbar-nav .nav-link.active{

    color:#0057b8;

}

.navbar-nav .nav-link::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#0057b8;

    transition:.3s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:100%;

}


.language-btn{

    border:none;

    background:transparent;

    color:#0b2d68;

    font-weight:600;

    padding:0;

}

.language-btn:focus{

    box-shadow:none;

}

.language-dropdown .dropdown-menu{

    border:none;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    margin-top:20px;

}

.language-dropdown .dropdown-item{

    padding:12px 20px;

    font-weight:500;

}

.language-dropdown .dropdown-item:hover{

    background:#f4f8ff;

    color:#0057b8;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler i{

    font-size:34px;

    color:#0b2d68;

}



/*====================================
              HERO
====================================*/

.hero-section{
    position:relative;
    min-height:640px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.85) 38%, rgba(255,255,255,.1) 68%),
        url("../images/hero/hero-bg.jpg");
    background-size:cover;
    background-position:center right;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:650px;
}

.hero-content h1{
    color:#003b82;
    font-size:58px;
    font-weight:800;
    margin-bottom:18px;
}

.hero-content h2{
    color:#0b2d68;
    font-size:38px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:22px;
}

.hero-content p{
    color:#3d4f70;
    font-size:17px;
    line-height:1.8;
    max-width:560px;
    margin-bottom:32px;
}

.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#003b82;
    color:#fff;
    padding:15px 28px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#06265c;
    color:#fff;
    transform:translateY(-2px);
}

/*====================================
            FEATURES
====================================*/

.features-section{
    margin-top:-65px;
    position:relative;
    z-index:10;
}

.features-wrapper{
    background:#fff;
    border-radius:10px;
    box-shadow:0 15px 45px rgba(0,0,0,.10);
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    overflow:hidden;
}

.feature-card{
    text-align:center;
    padding:38px 35px;
    border-right:1px solid #edf1f7;
}

.feature-card:last-child{
    border-right:none;
}

.feature-card i{
    font-size:52px;
    color:#003b82;
    margin-bottom:20px;
    display:block;
}

.feature-card h4{
    font-size:18px;
    font-weight:700;
    color:#0b2d68;
    margin-bottom:12px;
}

.feature-card p{
    font-size:14px;
    line-height:1.7;
    color:#5f6f89;
    margin:0;
}


/*====================================
            ABOUT
====================================*/

.about-section{

    padding:100px 0;

}

.about-image{

    overflow:hidden;

    border-radius:16px;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:16px;

}

.section-subtitle{

    color:#003b82;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    display:block;

    margin-bottom:15px;

}

.about-content h2{

    color:#0b2d68;

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:24px;

}

.about-content p{

    color:#5f6f89;

    line-height:1.9;

    font-size:16px;

    margin-bottom:35px;

}




/*====================================
            STATISTICS
====================================*/

.stats-section{
    padding-bottom:70px;
}

.stats-wrapper{
    background:#003b82;
    border-radius:8px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    overflow:hidden;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:30px 35px;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.18);
}

.stat-item:last-child{
    border-right:none;
}

.stat-item i{
    font-size:44px;
}

.stat-item h3{
    font-size:28px;
    font-weight:700;
    margin:0;
}

.stat-item p{
    font-size:14px;
    margin:0;
    opacity:.9;
}



/*====================================
            PRODUCTS
====================================*/

.products-section{

    padding:100px 0;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#0b2d68;

    line-height:1.3;

    margin-bottom:35px;

}

.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    gap:10px;

    border:2px solid #003b82;

    color:#003b82;

    padding:14px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-outline-custom:hover{

    background:#003b82;

    color:#fff;

}

.product-card{

    background:#fff;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    text-align:center;

    padding:28px;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:90px;

    margin-bottom:18px;

}

.product-card h5{

    font-size:17px;

    font-weight:600;

    color:#0b2d68;

    margin:0;

}



/*====================================
            QUALITY
====================================*/

.quality-section{
    padding:35px 0 35px;
    background:#fff;
}

.quality-section .container{
    max-width:1280px;
    background:#f7f9fd;
    border-radius:8px;
    overflow:hidden;
}

.quality-image{
    height:320px;
    padding:0;
    overflow:hidden;
}

.quality-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}
.quality-content{
    padding:26px 35px;
}


.quality-content h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:12px;
}

.certificate-list{
    display:flex;
    justify-content:center;   /* Ortaya gətir */
    align-items:center;
    gap:35px;
    margin:20px 0;
}
.certificate-list img{
    width:82px;
    height:82px;
    object-fit:contain;
}

.quality-content .btn-primary-custom{
    align-self:center;
}



/*====================================
            FOOTER
====================================*/

.main-footer{

    background:#06265c;

    color:#fff;

    padding:80px 0 30px;

}


.footer-logo{
    width:230px;
    height:auto;
    margin-bottom:18px;
}

.main-footer h5{

    font-size:18px;

    margin-bottom:20px;

}

.main-footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.main-footer li{

    margin-bottom:10px;

}

.main-footer a{

    color:#dbe6ff;

    text-decoration:none;

}

.main-footer a:hover{

    color:#fff;

}

.main-footer p{

    color:#dbe6ff;
 margin-top:10px;
    line-height:1.9;

}

.main-footer hr{

    margin:40px 0 25px;

    border-color:rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

    color:#dbe6ff;

    font-size:14px;

}


/* Footer Social */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#ffffff;

    color:#003b82;

    transform:translateY(-3px);

}

.footer-social i{

    font-size:18px;

}

/*====================================
        FOOTER CONTACT
====================================*/

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:22px;

}

.footer-contact i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:18px;

    flex-shrink:0;

}

.footer-contact span{

    color:#dbe6ff;

    line-height:1.8;

    font-size:16px;

}

/*====================================
        FOOTER LINKS
====================================*/

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#dbe6ff;

    text-decoration:none;

    transition:.3s;

}

.footer-links a i{

    margin-right:10px;

    font-size:12px;

}

.footer-links a:hover{

    color:#ffffff;

    padding-left:6px;

}

.developer-link{

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.developer-link:hover{

    color:#69b3ff;

}


/*====================================
        PREMIUM ABOUT PAGE
====================================*/

.about-hero-section{
    min-height:520px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 42%, rgba(255,255,255,.15) 75%),
        url("../images/about/about-hero.jpg");
    background-size:cover;
    background-position:center right;
}

.about-hero-content{
    max-width:620px;
}

.about-hero-content h1{
    color:#003b82;
    font-size:64px;
    font-weight:800;
    margin-bottom:18px;
}

.about-hero-content p{
    color:#3d4f70;
    font-size:18px;
    line-height:1.9;
}

/* Company */

.company-section{
    padding:110px 0 70px;
}

.section-title-small{
    font-size:44px;
    font-weight:800;
    line-height:1.25;
    color:#0b2d68;
    margin-bottom:24px;
}

.company-section p,
.technology-content p{
    color:#5f6f89;
    line-height:1.9;
    font-size:16px;
}

.company-image{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 24px 60px rgba(0,59,130,.12);
}

.company-image img{
    width:100%;
    height:430px;
    object-fit:cover;
}

/* About Stats */

.about-stats-section{
    padding:20px 0 90px;
}

/* Timeline */

.timeline-section{
    padding:100px 0;
    background:linear-gradient(180deg,#f7faff 0%,#ffffff 100%);
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.timeline-card{
    background:#fff;
    border:1px solid #e8eef8;
    border-radius:24px;
    padding:38px 30px;
    text-align:center;
    height:100%;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.timeline-card:hover{
    transform:translateY(-8px);
}

.timeline-icon{
    width:82px;
    height:82px;
    margin:0 auto 24px;
    border-radius:50%;
    background:#edf5ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.timeline-icon i{
    font-size:38px;
    color:#003b82;
    line-height:1;
}

.timeline-card h4{
    color:#003b82;
    font-size:24px;
    font-weight:800;
    margin-bottom:14px;
}

.timeline-card p{
    color:#5f6f89;
    line-height:1.7;
    margin:0;
}

/* Values */

.values-section{
    padding:110px 0;
}

.value-card{
    background:#fff;
    border:1px solid #e8eef8;
    border-radius:24px;
    padding:42px 34px;
    height:100%;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:24px;
}

.value-card h4{
    color:#0b2d68;
    font-size:24px;
    font-weight:800;
    margin-bottom:14px;
}

.value-card p{
    color:#5f6f89;
    line-height:1.8;
    margin:0;
}

/* Technology */

.technology-section{
    padding:110px 0;
    background:#f7f9fd;
}

.technology-image{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 24px 60px rgba(0,59,130,.12);
}

.technology-image img{
    width:100%;
    height:430px;
    object-fit:cover;
}

.technology-list{
    list-style:none;
    padding:0;
    margin:0;
}

.technology-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#0b2d68;
    font-weight:600;
    margin-bottom:14px;
}

.technology-list i{
    color:#003b82;
    font-size:20px;
}

/* Certificates */

.certificates-section{
    padding:110px 0;
}

.section-description{
    max-width:760px;
    margin:20px auto 55px;
    color:#5f6f89;
    line-height:1.9;
    text-align:center;
}

.certificate-card{
    background:#fff;
    border:1px solid #e8eef8;
    border-radius:24px;
    padding:38px 30px;
    height:100%;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.certificate-card:hover{
    transform:translateY(-8px);
}

.certificate-card img{
    width:105px;
    height:105px;
    object-fit:contain;
    margin:0 auto 22px;
    display:block;
}

.certificate-card i{
    width:105px;
    height:105px;
    margin:0 auto 22px;
    border-radius:50%;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
}

.certificate-card h4{
    color:#0b2d68;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.certificate-card p{
    color:#5f6f89;
    line-height:1.7;
    margin:0;
}



/*====================================
        CONTACT HERO
====================================*/

.contact-hero-section{
    min-height:520px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 42%, rgba(255,255,255,.15) 75%),
        url("../images/contact/contact-hero.jpg");
    background-size:cover;
    background-position:center right;
}

.contact-hero-content{
    max-width:650px;
}

.contact-hero-content h1{
    color:#003b82;
    font-size:64px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:22px;
}

.contact-hero-content p{
    color:#5f6f89;
    font-size:18px;
    line-height:1.9;
    max-width:600px;
}


/*====================================
        CONTACT MAIN
====================================*/

.contact-main-section{
    padding:110px 0 70px;
    background:#ffffff;
}

.contact-wrapper{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 24px 70px rgba(0,59,130,.12);
}

.contact-info-box{
    height:100%;
    padding:55px 45px;
    background:#003b82;
    color:#ffffff;
}

.contact-info-box h2,
.contact-form-box h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:35px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.contact-info-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-info-icon i{
    font-size:24px;
    color:#ffffff;
}

.contact-info-item h4,
.contact-social h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

.contact-info-item p{
    color:#dbe6ff;
    line-height:1.8;
    margin:0;
}

.contact-social{
    margin-top:35px;
}

.contact-social-links{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.contact-social-links a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.contact-social-links a:hover{
    background:#ffffff;
    color:#003b82;
    transform:translateY(-3px);
}


/*====================================
        CONTACT FORM
====================================*/

.contact-form-box{
    height:100%;
    padding:55px 50px;
    background:#ffffff;
}

.contact-form-box h2{
    color:#0b2d68;
}

.contact-form-box label{
    color:#0b2d68;
    font-size:15px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
    height:56px;
    border:1px solid #e3ebf6;
    border-radius:14px;
    color:#0b2d68;
    font-size:15px;
    padding:0 18px;
    box-shadow:none;
}

.contact-form-box textarea.form-control{
    height:auto;
    padding:18px;
    resize:none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{
    border-color:#003b82;
    box-shadow:0 0 0 4px rgba(0,59,130,.08);
}

.contact-submit-btn{
    border:none;
    margin-top:10px;
}


/*====================================
        CONTACT MAP
====================================*/

.contact-map-section{
    padding:40px 0 90px;
    background:#ffffff;
}

.contact-map-box{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 24px 70px rgba(0,59,130,.12);
}

.contact-map-box iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}


/*====================================
        CONTACT CTA
====================================*/

.contact-cta-section{
    padding:0 0 110px;
    background:#ffffff;
}

.contact-cta-box{
    background:#f7f9fd;
    border-radius:28px;
    padding:38px 45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.contact-cta-icon{
    width:76px;
    height:76px;
    border-radius:22px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-cta-icon i{
    font-size:36px;
}

.contact-cta-box h3{
    color:#0b2d68;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.contact-cta-box p{
    color:#5f6f89;
    margin:0;
}



/*====================================
        PRODUCTS PAGE HERO
====================================*/

.products-hero-section{
    min-height:520px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 42%, rgba(255,255,255,.15) 75%),
        url("../images/products/products-hero.jpg");
    background-size:cover;
    background-position:center right;
}

.products-hero-content{
    max-width:650px;
}

.products-hero-content h1{
    color:#003b82;
    font-size:64px;
    font-weight:800;
    margin-bottom:22px;
}

.products-hero-content p{
    color:#5f6f89;
    font-size:18px;
    line-height:1.9;
    max-width:600px;
    margin-bottom:30px;
}


/*====================================
        PRODUCT CATEGORIES
====================================*/

.product-categories-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.product-category-wrapper{
    background:#ffffff;
    border-radius:24px;
    box-shadow:0 24px 70px rgba(0,59,130,.12);
    display:grid;
    grid-template-columns:repeat(8, 1fr);
    overflow:hidden;
}

.product-category-btn{
    border:none;
    background:#ffffff;
    padding:30px 18px;
    text-align:center;
    transition:.3s;
    border-right:1px solid #edf1f7;
}

.product-category-btn:last-child{
    border-right:none;
}

.product-category-btn i{
    width:58px;
    height:58px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    transition:.3s;
}

.product-category-btn span{
    display:block;
    color:#0b2d68;
    font-size:15px;
    font-weight:800;
    margin-bottom:5px;
}

.product-category-btn small{
    color:#5f6f89;
    font-size:12px;
}

.product-category-btn:hover,
.product-category-btn.active{
    background:#003b82;
}

.product-category-btn:hover i,
.product-category-btn.active i{
    background:#ffffff;
    color:#003b82;
}

.product-category-btn:hover span,
.product-category-btn:hover small,
.product-category-btn.active span,
.product-category-btn.active small{
    color:#ffffff;
}


/*====================================
        PRODUCT FILTER
====================================*/

.product-filter-section{
    padding:45px 0 30px;
    background:#ffffff;
}

.product-filter-wrapper{
    display:grid;
    grid-template-columns:260px 1fr 180px;
    gap:25px;
    align-items:center;
}

.product-sort-box{
    height:58px;
    border:1px solid #e3ebf6;
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:0 18px;
    gap:14px;
}

.product-sort-box label{
    color:#0b2d68;
    font-size:14px;
    font-weight:700;
    margin:0;
}

.product-sort-box select{
    border:none;
    outline:none;
    color:#0b2d68;
    font-weight:600;
    width:100%;
    background:transparent;
}

.product-search-box{
    height:58px;
    border:1px solid #e3ebf6;
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:0 20px;
}

.product-search-box input{
    border:none;
    outline:none;
    width:100%;
    color:#0b2d68;
    font-size:15px;
}

.product-search-box i{
    color:#003b82;
    font-size:20px;
}

.product-filter-btn{
    height:58px;
    border:none;
    border-radius:14px;
    background:#003b82;
    color:#ffffff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s;
}

.product-filter-btn:hover{
    background:#06265c;
}


/*====================================
        PRODUCT GRID
====================================*/

.product-grid-section{
    padding:0 0 70px;
    background:#ffffff;
}

.product-list-card{
    height:100%;
    background:#ffffff;
    border:1px solid #e8eef8;
    border-radius:20px;
    padding:28px 24px;
    box-shadow:0 18px 45px rgba(0,59,130,.06);
    transition:.35s;
}

.product-list-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 65px rgba(0,59,130,.12);
}

.product-list-card img{
    width:100%;
    height:150px;
    object-fit:contain;
    margin-bottom:20px;
}

.product-list-card h4{
    color:#0b2d68;
    font-size:18px;
    font-weight:800;
    margin-bottom:10px;
}

.product-list-card p{
    color:#5f6f89;
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
}

.product-list-card a{
    color:#003b82;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.product-list-card a:hover{
    gap:12px;
}


/*====================================
        PRODUCT CTA
====================================*/

.product-cta-section{
    padding:0 0 110px;
    background:#ffffff;
}

.product-cta-box{
    background:#f7f9fd;
    border-radius:28px;
    padding:38px 45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.product-cta-icon{
    width:76px;
    height:76px;
    border-radius:22px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.product-cta-icon i{
    font-size:36px;
}

.product-cta-box h3{
    color:#0b2d68;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.product-cta-box p{
    color:#5f6f89;
    margin:0;
}






/*====================================
        PRODUCT DETAIL PAGE
====================================*/

.product-detail-section{
    padding:90px 0 60px;
    background:#ffffff;
}

.product-breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:45px;
    color:#5f6f89;
    font-size:15px;
}

.product-breadcrumb a{
    color:#003b82;
    text-decoration:none;
    font-weight:700;
}

.product-breadcrumb span{
    color:#5f6f89;
}

.product-detail-image-box{
    background:#f7f9fd;
    border-radius:28px;
    padding:30px;
    display:flex;
    gap:25px;
    box-shadow:0 24px 70px rgba(0,59,130,.10);
}

.product-thumbs{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.product-thumbs button{
    width:92px;
    height:92px;
    border:1px solid #e3ebf6;
    border-radius:18px;
    background:#ffffff;
    padding:10px;
    transition:.3s;
}

.product-thumbs button.active,
.product-thumbs button:hover{
    border-color:#003b82;
}

.product-thumbs img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-main-image{
    flex:1;
    min-height:430px;
    background:#ffffff;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-main-image img{
    width:85%;
    height:380px;
    object-fit:contain;
}

.product-detail-info{
    background:#ffffff;
    border:1px solid #e8eef8;
    border-radius:28px;
    padding:42px;
    box-shadow:0 24px 70px rgba(0,59,130,.08);
}

.product-detail-category{
    display:inline-block;
    background:#edf5ff;
    color:#003b82;
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}

.product-detail-info h1{
    color:#0b2d68;
    font-size:44px;
    font-weight:800;
    margin-bottom:18px;
}

.product-detail-short{
    color:#5f6f89;
    font-size:16px;
    line-height:1.9;
    margin-bottom:30px;
}

.product-detail-specs{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
    margin-bottom:35px;
}

.product-spec-item{
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:#f7f9fd;
    border-radius:18px;
    padding:18px;
}

.product-spec-item i{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.product-spec-item strong{
    display:block;
    color:#0b2d68;
    font-size:14px;
    margin-bottom:5px;
}

.product-spec-item span{
    color:#5f6f89;
    font-size:14px;
}

.product-detail-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/*====================================
        PRODUCT TABS
====================================*/

.product-tabs-section{
    padding:40px 0 100px;
    background:#ffffff;
}

.product-tabs-box{
    background:#ffffff;
    border-radius:28px;
    border:1px solid #e8eef8;
    overflow:hidden;
    box-shadow:0 24px 70px rgba(0,59,130,.08);
}

.product-tabs-nav{
    border:none;
    background:#f7f9fd;
    padding:18px;
    gap:12px;
}

.product-tabs-nav .nav-link{
    border:none;
    border-radius:14px;
    padding:14px 24px;
    color:#0b2d68;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.product-tabs-nav .nav-link:hover{
    background:#edf5ff;
}

.product-tabs-nav .nav-link.active{
    background:#003b82;
    color:#ffffff;
}

.product-tabs-content{
    padding:45px;
}

.product-tabs-content h4{
    color:#0b2d68;
    font-size:24px;
    font-weight:800;
    margin-bottom:20px;
}

.product-tabs-content p{
    color:#5f6f89;
    line-height:1.9;
    font-size:16px;
}


/*====================================
        PRODUCT CHECK LIST
====================================*/

.product-check-list{
    list-style:none;
    padding:0;
    margin:0;
}

.product-check-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    color:#0b2d68;
    font-weight:600;
}

.product-check-list i{
    color:#003b82;
    font-size:20px;
}


/*====================================
        PRODUCT INFO NOTE
====================================*/

.product-info-note{
    background:#f7f9fd;
    border-radius:22px;
    padding:30px;
    text-align:center;
    height:100%;
}

.product-info-note i{
    font-size:42px;
    color:#003b82;
    margin-bottom:20px;
}

.product-info-note p{
    margin:0;
}


/*====================================
        RELATED PRODUCTS
====================================*/

.related-products-section{
    padding:0 0 110px;
    background:#ffffff;
}

.related-products-section .section-heading{
    margin-bottom:50px;
}


/*====================================
        PRODUCT CARD HOVER
====================================*/

.product-list-card{
    position:relative;
    overflow:hidden;
}

.product-list-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#003b82;
    transform:scaleX(0);
    transition:.35s;
}

.product-list-card:hover::before{
    transform:scaleX(1);
}

.product-list-card img{
    transition:.4s;
}

.product-list-card:hover img{
    transform:scale(1.08);
}

.product-list-card a{
    transition:.3s;
}

.product-list-card:hover a{
    color:#0057b8;
}


/*====================================
        PRODUCT BUTTONS
====================================*/

.product-detail-actions .btn-primary-custom,
.product-detail-actions .btn-outline-custom{
    min-width:190px;
    justify-content:center;
}


/*====================================
        PRODUCT IMAGE EFFECT
====================================*/

.product-main-image img{
    transition:.35s;
}

.product-main-image:hover img{
    transform:scale(1.06);
}

.product-thumbs button{
    cursor:pointer;
}

.product-thumbs button img{
    transition:.3s;
}

.product-thumbs button:hover img{
    transform:scale(1.08);
}


/*====================================
        PRODUCT ANIMATION
====================================*/

.product-detail-info,
.product-tabs-box,
.product-list-card{
    transition:.35s;
}

.product-detail-info:hover,
.product-tabs-box:hover{
    box-shadow:0 28px 80px rgba(0,59,130,.12);
}




/*====================================
        PRODUCTION HERO
====================================*/

.production-hero-section{
    min-height:620px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(0,35,85,.92) 0%, rgba(0,59,130,.72) 42%, rgba(0,59,130,.15) 78%),
        url("../images/production/production-hero.jpg");
    background-size:cover;
    background-position:center right;
}

.production-hero-content{
    max-width:700px;
}

.production-hero-content h1{
    color:#ffffff;
    font-size:58px;
    font-weight:800;
    line-height:1.18;
    margin-bottom:24px;
}

.production-hero-content p{
    color:#dbe6ff;
    font-size:17px;
    line-height:1.9;
    max-width:620px;
    margin-bottom:32px;
}


/*====================================
        PRODUCTION PROCESS
====================================*/

.production-process-section{
    padding:110px 0;
    background:#ffffff;
}

.production-process-wrapper{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:30px;
    position:relative;
}

.production-process-item{
    text-align:center;
    position:relative;
}

.process-number{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#003b82;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:800;
    margin:0 auto 12px;
}

.process-icon{
    width:115px;
    height:115px;
    border-radius:50%;
    background:#ffffff;
    box-shadow:0 20px 50px rgba(0,59,130,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 26px;
}

.process-icon i{
    font-size:46px;
    color:#003b82;
}

.production-process-item h4{
    color:#0b2d68;
    font-size:18px;
    font-weight:800;
    margin-bottom:14px;
}

.production-process-item p{
    color:#5f6f89;
    font-size:14px;
    line-height:1.8;
    margin:0;
}


/*====================================
        PRODUCTION POWER
====================================*/

.production-power-section{
    padding:110px 0;
    background:#f7f9fd;
}

.production-power-image{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 24px 70px rgba(0,59,130,.12);
}

.production-power-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.production-power-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
    margin-top:35px;
}

.production-power-card{
    background:#ffffff;
    border-radius:22px;
    padding:34px 22px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,59,130,.08);
    transition:.35s;
}

.production-power-card:hover{
    transform:translateY(-8px);
}

.production-power-card i{
    font-size:42px;
    color:#003b82;
    margin-bottom:18px;
    display:block;
}

.production-power-card h3{
    color:#003b82;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.production-power-card p{
    color:#5f6f89;
    font-size:14px;
    margin:0;
}


/*====================================
        PRODUCTION LINES
====================================*/

.production-lines-section{
    padding:110px 0;
    background:#ffffff;
}

.production-line-card{
    height:100%;
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,59,130,.08);
    transition:.35s;
}

.production-line-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(0,59,130,.15);
}

.production-line-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.production-line-card:hover img{
    transform:scale(1.08);
}

.line-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#003b82;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:-35px auto 20px;
    position:relative;
    z-index:5;
}

.production-line-card h4{
    text-align:center;
    color:#0b2d68;
    font-size:20px;
    font-weight:800;
    margin-bottom:12px;
}

.production-line-card p{
    text-align:center;
    color:#5f6f89;
    line-height:1.8;
    padding:0 20px 28px;
    margin:0;
}


/*====================================
        LAB CONTROL
====================================*/

.lab-control-section{
    padding:110px 0;
    background:#f7f9fd;
}

.lab-control-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 24px 70px rgba(0,59,130,.12);
}

.lab-control-image img{
    width:100%;
    height:480px;
    object-fit:cover;
}

.lab-control-text{
    color:#5f6f89;
    line-height:1.9;
    margin:25px 0 30px;
}


/*====================================
        GMP SECTION
====================================*/

.gmp-banner-section{
    padding:110px 0;
    background:#ffffff;
}

.gmp-banner-box{
    background:linear-gradient(135deg,#003b82,#06265c);
    border-radius:32px;
    padding:60px;
    color:#ffffff;
    display:grid;
    grid-template-columns:160px 1fr 320px;
    gap:45px;
    align-items:center;
}

.gmp-badge{
    display:flex;
    justify-content:center;
}

.gmp-badge img{
    width:130px;
}

.gmp-content span{
    display:block;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.gmp-content h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:20px;
}

.gmp-content p{
    color:#dbe6ff;
    line-height:1.9;
    margin:0;
}

.gmp-list p{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#ffffff;
}

.gmp-list i{
    color:#8fe3b4;
    font-size:20px;
}


/*====================================
        PRODUCTION CTA
====================================*/

.production-cta-section{
    padding:0 0 110px;
    background:#ffffff;
}

.production-cta-box{
    background:#f7f9fd;
    border-radius:28px;
    padding:40px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.production-cta-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.production-cta-icon i{
    font-size:36px;
}

.production-cta-box h3{
    color:#0b2d68;
    font-size:30px;
    font-weight:800;
    margin-bottom:8px;
}

.production-cta-box p{
    color:#5f6f89;
    margin:0;
}


/*====================================
        PRODUCTION EFFECTS
====================================*/

.production-power-card,
.production-line-card,
.production-process-item,
.gmp-banner-box{
    transition:.35s;
}

.production-process-item:hover .process-icon{
    transform:translateY(-8px);
}

.process-icon{
    transition:.35s;
}

.production-power-card:hover i,
.production-line-card:hover .line-icon{
    transform:scale(1.08);
}

.production-power-card i,
.line-icon{
    transition:.35s;
}


/*====================================
        QUALITY HERO
====================================*/

.quality-hero-section{
    min-height:560px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 42%, rgba(255,255,255,.15) 75%),
        url("../images/quality/quality-hero.jpg");
    background-size:cover;
    background-position:center right;
}

.quality-hero-content{
    max-width:680px;
}

.quality-hero-content h1{
    color:#003b82;
    font-size:58px;
    font-weight:800;
    line-height:1.18;
    margin-bottom:24px;
}

.quality-hero-content p{
    color:#5f6f89;
    font-size:17px;
    line-height:1.9;
    max-width:600px;
    margin-bottom:32px;
}


/*====================================
        QUALITY PRINCIPLES
====================================*/

.quality-principles-section{
    padding:110px 0;
    background:#ffffff;
}

.quality-principle-card{
    height:100%;
    background:#ffffff;
    border:1px solid #e8eef8;
    border-radius:24px;
    padding:32px 18px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.quality-principle-card:hover{
    transform:translateY(-8px);
}

.quality-principle-card i{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:0 auto 20px;
}

.quality-principle-card h4{
    color:#0b2d68;
    font-size:17px;
    font-weight:800;
    margin-bottom:10px;
}

.quality-principle-card p{
    color:#5f6f89;
    font-size:13px;
    line-height:1.7;
    margin:0;
}


/*====================================
        QUALITY PROCESS
====================================*/

.quality-process-section{
    padding:110px 0;
    background:#f7f9fd;
}

.quality-process-wrapper{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:26px;
}

.quality-process-item{
    background:#ffffff;
    border-radius:24px;
    padding:36px 22px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.quality-process-item:hover{
    transform:translateY(-8px);
}

.quality-process-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 18px;
}

.quality-process-item span{
    color:#003b82;
    font-size:14px;
    font-weight:800;
    display:block;
    margin-bottom:10px;
}

.quality-process-item h4{
    color:#0b2d68;
    font-size:18px;
    font-weight:800;
    margin-bottom:12px;
}

.quality-process-item p{
    color:#5f6f89;
    font-size:14px;
    line-height:1.8;
    margin:0;
}


/*====================================
        QUALITY LABORATORY
====================================*/

.quality-laboratory-section{
    padding:110px 0;
    background:#ffffff;
}

.quality-lab-image{
    overflow:hidden;
    border-radius:26px;
    box-shadow:0 24px 70px rgba(0,59,130,.10);
}

.quality-lab-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.4s;
}

.quality-lab-image:hover img{
    transform:scale(1.05);
}

.quality-lab-text{
    color:#5f6f89;
    font-size:16px;
    line-height:1.9;
    margin:25px 0 35px;
}


/*====================================
        QUALITY STATISTICS
====================================*/

.quality-stats-section{
    padding:90px 0;
    background:linear-gradient(135deg,#003b82,#06265c);
}

.quality-stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.quality-stat-item{
    text-align:center;
    color:#ffffff;
}

.quality-stat-item i{
    width:78px;
    height:78px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.quality-stat-item h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.quality-stat-item p{
    color:#dbe6ff;
    margin:0;
}


/*====================================
        CERTIFICATES
====================================*/

.quality-certificates-section{
    padding:110px 0;
    background:#ffffff;
}

.certificate-placeholder{
    height:100%;
    background:#ffffff;
    border:2px dashed #dbe6f5;
    border-radius:24px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
}

.certificate-placeholder:hover{
    border-color:#003b82;
    transform:translateY(-8px);
}

.certificate-placeholder i{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    border-radius:20px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.certificate-placeholder h5{
    color:#0b2d68;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.certificate-placeholder p{
    color:#5f6f89;
    font-size:14px;
    margin:0;
}


/*====================================
        QUALITY POLICY
====================================*/

.quality-policy-section{
    padding:110px 0;
    background:#f7f9fd;
}

.quality-policy-box{
    background:#ffffff;
    border-radius:30px;
    padding:55px;
    box-shadow:0 24px 70px rgba(0,59,130,.08);
}

.quality-policy-image{
    overflow:hidden;
    border-radius:22px;
}

.quality-policy-image img{
    width:100%;
    height:430px;
    object-fit:cover;
}

.quality-policy-box p{
    color:#5f6f89;
    line-height:1.9;
    margin:25px 0 35px;
}


/*====================================
        QUALITY CTA
====================================*/

.quality-cta-section{
    padding:0 0 110px;
    background:#f7f9fd;
}

.quality-cta-box{
    background:#003b82;
    border-radius:28px;
    padding:45px 55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.quality-cta-box h3{
    color:#ffffff;
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
}

.quality-cta-box p{
    color:#dbe6ff;
    margin:0;
}

.quality-cta-box .btn-primary-custom{
    background:#ffffff;
    color:#003b82;
}

.quality-cta-box .btn-primary-custom:hover{
    background:#edf5ff;
}



/*====================================
            CAREER HERO
====================================*/

.career-hero-section{
    min-height:580px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(90deg,
    rgba(0,40,90,.92) 0%,
    rgba(0,59,130,.72) 45%,
    rgba(0,59,130,.18) 78%),
    url("../images/career/career-hero.jpg");
    background-size:cover;
    background-position:center;
}

.career-hero-content{
    max-width:680px;
}

.career-hero-content h1{
    color:#ffffff;
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:22px;
}

.career-hero-content p{
    color:#dbe6ff;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}


/*====================================
        CAREER VALUES
====================================*/

.career-values-section{
    padding:110px 0;
    background:#ffffff;
}

.career-value-card{
    height:100%;
    background:#ffffff;
    border-radius:24px;
    padding:35px 22px;
    text-align:center;
    border:1px solid #e8eef8;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.career-value-card:hover{
    transform:translateY(-8px);
}

.career-value-card i{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    border-radius:20px;
    background:#edf5ff;
    color:#003b82;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.career-value-card h4{
    color:#0b2d68;
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
}

.career-value-card p{
    color:#5f6f89;
    font-size:14px;
    line-height:1.8;
    margin:0;
}


/*====================================
        CAREER BENEFITS
====================================*/

.career-benefits-section{
    padding:110px 0;
    background:#f7f9fd;
}

.career-benefit-card{
    height:100%;
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,59,130,.07);
    transition:.35s;
}

.career-benefit-card:hover{
    transform:translateY(-8px);
}

.career-benefit-card i{
    font-size:42px;
    color:#003b82;
    margin-bottom:18px;
    display:block;
}

.career-benefit-card h4{
    color:#0b2d68;
    font-weight:700;
    margin-bottom:12px;
}

.career-benefit-card p{
    color:#5f6f89;
    line-height:1.8;
    margin:0;
}


/*====================================
        VACANCIES
====================================*/

.career-vacancy-section{
    padding:110px 0;
    background:#ffffff;
}

.career-filter-box{
    background:#f7f9fd;
    padding:28px;
    border-radius:24px;
    margin-bottom:45px;
}

.career-filter-box .form-control,
.career-filter-box .form-select{
    height:54px;
    border-radius:14px;
    border:1px solid #dfe8f5;
}

.career-job-card{
    display:grid;
    grid-template-columns:2.2fr 1fr 1fr 1fr auto;
    align-items:center;
    gap:20px;
    background:#ffffff;
    border-radius:20px;
    border:1px solid #e8eef8;
    padding:30px;
    margin-bottom:20px;
    box-shadow:0 15px 40px rgba(0,59,130,.06);
    transition:.35s;
}

.career-job-card:hover{
    transform:translateY(-6px);
}

.career-job-card h4{
    color:#003b82;
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.career-job-card span,
.career-job-card small{
    color:#5f6f89;
}

.career-job-card a{
    text-decoration:none;
    color:#003b82;
    font-weight:700;
}


/*====================================
        APPLY
====================================*/

.career-apply-section{
    padding:0 0 110px;
    background:#ffffff;
}

.career-apply-box{
    background:#f7f9fd;
    border-radius:30px;
    padding:55px;
}

.career-apply-content h2{
    color:#0b2d68;
    font-size:42px;
    font-weight:800;
    margin:18px 0;
}

.career-apply-content p{
    color:#5f6f89;
    line-height:1.9;
    margin-bottom:35px;
}

.career-apply-image{
    overflow:hidden;
    border-radius:24px;
}

.career-apply-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}


/*====================================
        CAREER EFFECT
====================================*/

.career-value-card,
.career-benefit-card,
.career-job-card{
    transition:.35s;
}

.career-value-card:hover i,
.career-benefit-card:hover i{
    transform:scale(1.08);
}

.career-value-card i,
.career-benefit-card i{
    transition:.35s;
}
/*=============================
        PAGE TRANSITION
==============================*/

body{

    opacity:1;

    transition:opacity .35s ease;

}

body.fade-out{

    opacity:0;

}


/* Career CMS Text */

.career-hero-text,
.career-hero-text p,
.career-hero-text span,
.career-hero-text div,
.career-hero-text li,
.career-hero-text strong{
    color:#ffffff !important;
}

.career-hero-text p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
}
.career-hero-content .section-subtitle{
    color:#ffffff !important;
}

.quality-principle-card h4 {
    font-size: 18px;
    line-height: 1.25;
    word-break: break-word;
}

.quality-principle-card p {
    font-size: 14px;
    line-height: 1.6;
}
.quality-principle-card h4 {
    font-size: 16px;
}