:root{

    --primary:#E95522;
    --secondary:#12181C;
    --text:#4A5156;
    --light:#f8f8f8;
    --white:#ffffff;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Rubik',sans-serif;
    font-size:16px;
    color:var(--text);
    overflow-x:hidden;
    background:#fff;

}

a{

    text-decoration:none;
    transition:.35s;

}

img{

    max-width:100%;

}

/******************************
TOP BAR
******************************/

.top-bar{

    background:#12181C;
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.top-contact{

    display:flex;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
    flex-wrap:wrap;

}

.top-contact li{

    display:flex;
    align-items:center;
    gap:8px;

}

.top-contact a{

    color:#fff;

}

.social-links{

    display:flex;
    justify-content:flex-end;
    gap:10px;
    list-style:none;
    margin:0;
    padding:0;

}

.social-links a{

    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;

}

.social-links a:hover{

    background:var(--primary);

}

/******************************
NAVBAR
******************************/

.main-navbar{

    background:#fff;
    padding:0;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:9999;

}

.navbar-brand{

    padding:20px 0;

}

.navbar-brand img{

    height:72px;

}

.navbar-nav>.nav-item{

    margin-left:14px;

}

.nav-link{

    color:#12181C;
    font-size:15px;
    font-weight:600;
    padding:38px 10px;
    position:relative;

}

.nav-link:hover{

    color:var(--primary) ;

}

.nav-link::after{

    content:'';
    position:absolute;
    left:10px;
    bottom:26px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;

}

.nav-link:hover::after{

    width:calc(100% - 20px);

}

.dropdown-menu{

    border:none;
    border-radius:0;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:12px 0;

}

.dropdown-item{

    font-size:14px;
    padding:12px 22px;

}

.dropdown-item:hover{

    background:var(--primary);
    color:#fff;

}


/*=========================
Desktop Hover Dropdown
=========================*/

@media (min-width:992px){

    .navbar .dropdown{
        position:relative;
    }

    .navbar .dropdown-menu{

        display:block;
        opacity:0;
        visibility:hidden;

        transform:translateY(15px);

        transition:all .35s ease;

        margin-top:0;

        border:none;
        border-radius:0;

        min-width:260px;

        box-shadow:0 15px 40px rgba(0,0,0,.12);

        pointer-events:none;

    }

    .navbar .dropdown:hover>.dropdown-menu{

        opacity:1;
        visibility:visible;

        transform:translateY(0);

        pointer-events:auto;

    }

}


/*==================================================
Hero
==================================================*/

.hero-section{

    position:relative;

}

.hero-bg{

    min-height:760px;

    position:relative;

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.48);

}

.hero-row{

    min-height:760px;

}

.hero-content{

    position:relative;

    z-index:5;

    color:#fff;

}

.hero-content h1{

    font-size:74px;

    line-height:1.05;

    font-weight:700;

    color:#fff;

    margin-bottom:20px;

}

.hero-content h1 span{

    display:inline-block;

    background:#E95522;

    padding:8px 15px;

}

.hero-content p{

    display:inline-block;

    color:#fff;

    padding:8px 12px;

    font-size:18px;

    font-weight:500;

    margin-bottom:35px;

}

.hero-form{

    position:absolute;

    right:8%;

    top:50%;

    transform:translateY(-50%);

    width:420px;

    background:#fff;

    padding:45px;

    z-index:100;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.hero-form h4{

    text-align:center;

    color:#E95522;

    font-weight:700;

    margin-bottom:35px;

}

.hero-form .form-control{

    border:none;

    border-bottom:1px solid #ddd;

    border-radius:0;

    box-shadow:none;

    padding:14px 0;

    margin-bottom:12px;

}

.hero-form textarea{

    resize:none;

}

.recaptcha-box{

    height:78px;

    border:1px solid #ddd;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#999;

    font-size:14px;

}

.heroSlider .swiper-button-next,

.heroSlider .swiper-button-prev{

    width:55px;

    height:55px;

    background:#fff;

    color:#12181C;

}

.heroSlider .swiper-button-next:after,

.heroSlider .swiper-button-prev:after{

    font-size:18px;

}

.heroSlider .swiper-pagination{

    left:30px !important;

    right:auto;

    width:auto;

}

.heroSlider .swiper-pagination-bullet{

    display:block;

    width:12px;

    height:40px;

    border-radius:0;

    margin:10px 0 !important;

    background:#fff;

    opacity:1;

}

.heroSlider .swiper-pagination-bullet-active{

    background:#E95522;

}


/*=====================================
Primary Button
=====================================*/

.btn-primary-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

    background:linear-gradient(90deg,#d23422 0%,#eb7e2e 100%);
    color:#fff !important;

    font-size:16px;
    font-weight:600;
    letter-spacing:.3px;

    border:none;
    border-radius:0;

    text-decoration:none;

    position:relative;
    overflow:hidden;

    transition:all .35s ease;

    box-shadow:0 12px 30px rgba(233,85,34,.25);

}

.btn-primary-custom:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(233,85,34,.35);

}

.btn-primary-custom:active{

    transform:translateY(0);

}

.btn-primary-custom:focus{

    box-shadow:none;

}

/* Shine Effect */

.btn-primary-custom::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:all .7s;

}

.btn-primary-custom:hover::before{

    left:130%;

}


/*======================================
ABOUT
======================================*/

.about-section{

    padding:110px 0;

    overflow:hidden;

}

.about-images{

    position:relative;

    min-height:620px;

}

.img-one{

    width:420px;

    position:absolute;

    top:0;

    left:40px;

    z-index:2;

}

.img-two{

    width:390px;

    position:absolute;

    left:140px;

    bottom:0;

    border:8px solid #fff;

    z-index:3;

}

.since-text{

    position:absolute;

    left:-55px;

    top:70%;

    transform:rotate(-90deg) translateY(-50%);

    transform-origin:left top;

    font-size:70px;

    font-weight:700;

    color:#fff;

    -webkit-text-stroke:2px #efdfd8;

    letter-spacing:4px;

    z-index:1;

}

.video-box{

    position:absolute;

    top:-35px;

    left:390px;

    width:160px;

    height:160px;

    z-index:5;

}

.video-box svg{

    width:100%;

    height:100%;

    animation:rotateText 12s linear infinite;

}

.video-box text{

    fill:#12181C;

    font-size:13px;

    letter-spacing:3px;

    font-weight:600;

}

.play-btn{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:88px;

    height:88px;

    border-radius:50%;

    background:linear-gradient(90deg,#d23422,#eb7e2e);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

}

.play-btn:hover{

    color:#fff;

}

.about-content span{

    color:#E95522;

    font-size:18px;

    font-weight:700;

    text-transform:uppercase;

}

.about-content h2{

    font-size:62px;

    font-weight:700;

    color:#12181C;

    margin:18px 0 25px;

}

.about-content p{

    font-size:18px;

    line-height:36px;

    color:#4A5156;

    margin-bottom:18px;

}

@keyframes rotateText{

    from{

        transform:rotate(0);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==========================================
Discover Section
==========================================*/

.discover-section{

    padding:110px 0;

    background:#fff;

}

.section-title{

    margin-bottom:25px;

}

.section-title h2{

    font-size:64px;

    font-weight:700;

    color:#12181C;

    margin:0;

    line-height:1.15;

}

.discover-image{

    overflow:hidden;

}

.discover-image img{

    width:100%;

    display:block;

    transition:.6s;

}

.discover-image:hover img{

    transform:scale(1.02);

}

/*=====================================
Products
=====================================*/

.products-section{

    padding:110px 0;

    background:#f7f7f7;

}

.section-heading{

    margin-bottom:25px;

}

.section-heading span{

    color:#E95522;

    text-transform:uppercase;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.section-heading h2{

    margin-top:12px;

    font-size:54px;

    color:#12181C;

    font-weight:700;

}

.product-card{

    position:relative;

    display:block;

    overflow:hidden;

    background:#000;

    color:#fff;

}

.product-card img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:.6s;

}

.product-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.82) 5%,
    rgba(0,0,0,.15) 45%,
    rgba(0,0,0,0));

}

.product-content{

    position:absolute;

    left:18px;

    bottom:18px;

    z-index:5;

}

.product-content span{

    display:inline-block;

    background:#E95522;

    color:#fff;

    padding:4px 8px;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:8px;

}

.product-content h4{

    font-size:24px;

    color:#fff;

    line-height:1.25;

    font-weight:700;

    margin:0;

}

.product-card:hover{

    color:#fff;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card:hover .product-overlay{

    background:linear-gradient(to top,
    rgba(233,85,34,.88),
    rgba(0,0,0,.25));

}


/*==========================================
Certification
==========================================*/

.certification-section{

    padding:120px 0;

    background:#fff;

}

.certificate-wrapper{

    position:relative;

    padding-left:90px;

}

.vertical-text{

    position:absolute;

    left:-40px;

    top:85%;

    transform:rotate(-90deg) translateY(-50%);

    transform-origin:left top;

    font-size:70px;

    font-weight:700;

    color:#fff;

    -webkit-text-stroke:2px #efdfd8;

    letter-spacing:4px;

}

.certificate-title{

    margin-bottom:35px;

}

.certificate-title h3{

    font-size:36px;

    font-weight:700;

    color:#12181C;

    display:flex;

    align-items:center;

}

.certificate-title h3::after{

    content:'';

    flex:1;

    height:2px;

    background:#E95522;

    margin-left:25px;

}

.certificateSlider{

    background:#ef2027;

    padding:18px;

}

.certificateSlider img{

    width:100%;

    background:#fff;

}

.cert-next,
.cert-prev{

    width:48px;

    height:48px;

    background:#fff;

    color:#12181C;

}

.cert-next:after,
.cert-prev:after{

    font-size:18px;

}

.experience-box{

    background:#fff;

    padding:50px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    margin-bottom:50px;

}

.experience-number{

    font-size:92px;

    color:#E95522;

    font-weight:700;

    line-height:1;

}

.experience-box h4{

    margin-top:10px;

    font-size:34px;

    color:#555;

}

.certificate-content p{

    font-size:16px;

    line-height:32px;

    color:#4A5156;

}

.certificateSlider{

    overflow:hidden;

}

.certificateSlider .swiper-wrapper{

    align-items:center;

}

.certificateSlider .swiper-slide{

    width:100% !important;

    flex-shrink:0;

}

.certificateSlider .swiper-slide img{

    width:100%;

    display:block;

    object-fit:cover;

}

.certificateSlider{
    overflow:hidden;
}

.swiper-slide{
    width:528px;
}


/*=====================================
Approved By
======================================*/

.approved-section{

    padding:110px 0;

    background:#f7f7f7;

}

.approved-slider-wrapper{

    background:#fff;

    padding:40px 70px;

    position:relative;

    margin-top:40px;

}

.approvedSlider .swiper-slide{

    display:flex;

    justify-content:center;

    align-items:center;

    height:120px;

}

.approvedSlider .swiper-slide img{

    max-width:170px;

    max-height:100px;

    width:auto;

    transition:.35s;

    opacity:.9;

}

.approvedSlider .swiper-slide:hover img{

    transform:scale(1.08);

    opacity:1;

}

.approved-prev,
.approved-next{

    width:46px;

    height:46px;

    color:#999;

    background:transparent;

}

.approved-prev:after,
.approved-next:after{

    font-size:20px;

}

.approved-pagination{

    margin-top:25px;

    position:relative;

}

.approved-pagination .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#cfcfcf;

    opacity:1;

}

.approved-pagination .swiper-pagination-bullet-active{

    background:#111;

}

/*====================================
Testimonials
====================================*/

.testimonial-section{

    background:#050505;

    padding:120px 0;

    overflow:hidden;

    position:relative;

}

.testimonial-heading{

    text-align:center;

    margin-bottom:70px;

}

.testimonial-heading h2{

    font-size:96px;

    font-weight:700;

    color:transparent;

    -webkit-text-stroke:2px rgba(255,255,255,.8);

    margin:0;

    line-height:1;

}

.testimonial-item{

    color:#fff;

}

.testimonial-image{

    overflow:hidden;

}

.testimonial-image img{

    width:100%;

    transition:.6s;

}

.testimonial-image:hover img{

    transform:scale(1.05);

}

.testimonial-content{

    padding-left:50px;

}

.testimonial-content p{

    font-size:22px;

    color:#fff;

    line-height:42px;

    margin-bottom:25px;

    font-style:italic;

}

.testimonial-content h4{

    margin-top:40px;

    color:#E95522;

    font-size:34px;

    font-weight:600;

}

.testimonial-prev,

.testimonial-next{

    width:50px;

    height:50px;

    background:#fff;

    color:#111;

    top:30px;

}

.testimonial-prev{

    right:110px;

    left:auto;

}

.testimonial-next{

    right:0;

}

.testimonial-prev:after,

.testimonial-next:after{

    font-size:22px;

}

/*=====================================
BLOG
======================================*/

.blog-section{

    padding:110px 0;

    background:#fff;

}

.blog-divider{

    margin:0 0 55px;

    border-color:#202020;

    opacity:.18;

}

.blog-card{

    transition:.35s;

}

.blog-meta{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    margin-bottom:20px;

    color:#444;

}

.blog-meta a{

    color:#111;

    text-decoration:none;

}

.blog-meta .divider{

    color:#E95522;

    font-weight:700;

}

.blog-card h3{

    font-size:24px;

    line-height:1.35;

    font-weight:600;

    margin-bottom:28px;

}

.blog-card h3 a{

    color:#12181C;

    text-decoration:none;

    transition:.3s;

}

.blog-card h3 a:hover{

    color:#E95522;

}

.blog-image{

    overflow:hidden;

    display:block;

}

.blog-image img{

    width:100%;

    transition:.6s;

}

.blog-card:hover img{

    transform:scale(1.06);

}

.blog-card:hover{

    transform:translateY(-8px);

}


/*=====================================
FOOTER
=====================================*/

.footer{

    background:#11181D;

    color:#fff;

}

.footer-top{

    padding:90px 0 70px;

}

.footer-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:35px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:22px;

}

.footer-links a{

    color:#fff;

    text-decoration:none;

    font-size:16px;

    transition:.3s;

}

.footer-links a:hover{

    color:#E95522;

    padding-left:8px;

}

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
    line-height: 2;
    font-size: 16px;
}

.footer-contact i{

    color:#E95522;

    font-size:16px;

    margin-top:0px;

}

.footer-contact a{

    color:#fff;

    text-decoration:none;

}

.footer-contact a:hover{

    color:#E95522;

}

.footer-logo{

    max-width:130px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:18px;

}

.footer-social a{

    width:35px;

    height:35px;

    background:#30383D;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#E95522;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:28px 0;

    font-size:16px;

}

.scroll-top {
    position: fixed;
    left: 29px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: #E95522;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    z-index: 999;
    transition: .35s;
}

.scroll-top:hover{

    color:#fff;

    background:#111;

}


/*======================================
Page Banner
======================================*/

.page-banner{

    position:relative;

    min-height:480px;

    display:flex;

    align-items:center;

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

}

.page-banner .container{

    position:relative;

    z-index:2;

}

.page-banner-box{

    background:#10171C;

    padding:50px;

    

}

.page-banner-box h1{

    color:#fff;

    font-size:45px;

    font-weight:700;

    margin-bottom:35px;

    line-height:1.1;

}

.breadcrumb{

    margin:0;

    background:#fff;

    padding:10px 25px;

    border-radius:0;

}

.breadcrumb-item{

    font-size:16px;

    font-weight:600;

}

.breadcrumb-item a{

    color:#12181C;

    text-decoration:none;

}

.breadcrumb-item a:hover{

    color:#E95522;

}
.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #E95522;
    font-size: 20px;
    font-weight: 300;
    margin-top: -4px;
}

.breadcrumb-item.active{

    color:#E95522;

}

.breadcrumb i{

    margin-right:8px;

    color:#12181C;

}


/*=====================================
About Company
=====================================*/

.about-company-section{

    padding:110px 0;

    background:#fff;

}

.about-company-image{

    overflow:hidden;

}

.about-company-image img{

    width:100%;

    transition:.6s;

}

.about-company-image:hover img{

    transform:scale(1.04);

}

.about-company-content{

    padding-left:30px;

}

.about-company-content h2{

    font-size:40px;

    font-weight:700;

    color:#12181C;

    margin-bottom:35px;

}

.about-company-content p{

    font-size:16px;

    color:#4F5661;

    line-height:1.6;

    margin-bottom:30px;

    text-align:justify;

}

.about-company-content p:last-child{

    margin-bottom:0;

}


/*====================================
Quality Section
====================================*/

.quality-section{

    background:#f7f7f7;

    padding:110px 0;

}

.quality-content{

    padding-right:30px;

}

.quality-content p{

    font-size:16px;

    line-height:1.6;

    color:#495057;

    margin-bottom:38px;

    text-align:justify;

}

.quality-content p:last-child{

    margin-bottom:0;

}

.quality-image{

    overflow:hidden;

    border-radius:4px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.quality-image img{

    width:100%;

    transition:.6s;

}

.quality-image:hover img{

    transform:scale(1.05);

}


.mission-section{

    padding:90px 0 60px;

}

.mission-box{

    background:#fff;

    padding:45px;

    height:100%;

}

.mission-box.active{

    background:linear-gradient(180deg,#ef6625,#e34721);

    color:#fff;

}

.mission-icon{

    width:60px;

    height:60px;

    border:1px solid rgba(239,102,37,.25);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ef6625;

    font-size:28px;

    margin-bottom:20px;

}

.mission-box.active .mission-icon{

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

}

.mission-box h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}

.mission-box p{

    line-height:2;

    color:#555;

}

.mission-box.active p{

    color:#fff;

}

.certificate-section{

padding:90px 0;

background:#f7f7f7;

}

.certificate-tabs{

border:none;

}

.certificate-tabs .nav-link{

border:none;

background:#ef5b21;

color:#fff;

padding:18px 35px;

font-weight:600;

margin-right:2px;

border-radius:0;

}

.certificate-tabs .nav-link.active{

background:#111;
color: #fff;

}

.certificateSwiper{

padding:20px 60px;

}

.certificateSwiper img{

width:100%;

height:650px;

object-fit:contain;

background:#fff;

}

.swiper-button-next,
.swiper-button-prev{

color:#ef5b21;

}

.swiper-button-next:after,
.swiper-button-prev:after{

font-size:28px;

font-weight:bold;

}

.certificate-card{

    background:#fff;

    border:1px solid #e9e9e9;

    transition:.3s;

    height:100%;

}

.certificate-card:hover{

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transform:translateY(-5px);

}

.certificate-preview{

    height:380px;

    overflow:hidden;

    background:#f5f5f5;

}

.certificate-preview iframe{

    width:100%;

    height:100%;

    border:0;

}

.certificate-footer{

    padding:20px;

    text-align:center;

}

.certificate-footer .btn{

    width:100%;

}

/*=====================================
Infrastructure
======================================*/

.infra-title{

    font-size:42px;

    font-weight:700;

    color:#111;

    margin-bottom:10px;

}

.infrastructure-gallery{

    margin-bottom:20px;

}

.infra-card{

    overflow:hidden;

    border-radius:4px;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.infra-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.infra-card:hover img{

    transform:scale(1.06);

}

.infra-banner{

    position:relative;

    overflow:hidden;

    border-radius:5px;

}

.infra-banner img{

    width:100%;

    height:420px;

    object-fit:cover;

}

.infra-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.infra-banner-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:100%;

    z-index:2;

}

.infra-banner-content h3{

    color:#fff;

    font-size:46px;

    font-weight:700;

    margin:0;

}


/*====================================
Downloads Tab
====================================*/

.download-list{

    width:100%;

}

.download-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 0;

    border-bottom:1px solid #ececec;

    gap:25px;

}

.download-item:last-child{

    border-bottom:none;

}

.download-info{

    flex:1;

}

.download-info h5{

    font-size:22px;

    font-weight:700;

    color:#12181C;

    margin-bottom:8px;

}

.download-info p{

    margin:0;

    color:#6c757d;

    font-size:16px;

}

.download-btn{

    flex-shrink:0;

}

.download-btn .btn-primary-custom{

    min-width:210px;

    text-align:center;

}

/*====================================================
Product Content Section
====================================================*/

.product-content-section{
    padding:90px 0;
    background:#fff;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #12181C;
    line-height: 1.15;
    margin-bottom: 20px;
}

.product-content-section p{
    font-size:16px;
    line-height:1.6;
    color:#4d5b6b;
    margin-bottom:35px;
    text-align:justify;
}

.product-image{
    width:100%;
    max-width:640px;
    border-radius:2px;
    display:block;
}

.other-products{
    padding:100px 0;
    background:#fff;
}

.section-title span{
    color:#f15a24;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:1px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;
    margin-top: 12px;
}

.product-card{
    overflow:hidden;
    position:relative;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-image:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.05));
    z-index:1;
}

.product-info{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:3;
}

.product-category{
    display:inline-block;
    background:#f15a24;
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:8px 14px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.product-info h4{
    margin:0;
    font-size:22px;
    font-weight:700;
    line-height:1.35;
}

.product-info h4 a{
    color:#fff;
    text-decoration:none;
}

.read-more-circle{
    position:absolute;
    right:18px;
    bottom:22px;
    width:78px;
    height:78px;
    border-radius:50%;
    background:#f15a24;
    color:#fff;
    text-decoration:none;
    z-index:3;

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;

    transition:.35s;
}

.read-more-circle span{
    font-size:9px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    line-height:1.2;
}

.read-more-circle i{
    font-size:18px;
    margin-top:4px;
}

.product-card:hover .read-more-circle{
    transform:rotate(360deg);
}

.otherProductsSwiper{
    padding-bottom:70px;
}

.otherProductsSwiper .swiper-pagination-bullet{
    width:12px;
    height:12px;
    opacity:1;
    background:#d6d6d6;
}

.otherProductsSwiper .swiper-pagination-bullet-active{
    background:#111;
}

@media(max-width:991px){

    .section-title h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .other-products{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .product-info{
        left:20px;
        bottom:20px;
    }

    .product-info h4{
        font-size:20px;
    }

    .read-more-circle{
        width:60px;
        height:60px;
    }

    .read-more-circle span{
        font-size:8px;
    }
}


/*======================================
FFL TABS
======================================*/

.ffl-tabs{
    border:none;
    margin-bottom:0;
}

.ffl-tabs .nav-item{
    flex:1;
}

.ffl-tabs .nav-link{

    width:100%;
    border:none;
    border-radius:0;
    background:#ef5a22;
    color:#fff;
    font-weight:700;
    padding:18px 20px;
    transition:.3s;
    min-height:72px;

}

.ffl-tabs .nav-link:hover{
    background:#111;
    color:#fff;
}

.ffl-tabs .nav-link.active{

    background:#111;
    color:#fff;

}


/*======================================
CONTENT
======================================*/

.benefits-box{

    position:relative;
    overflow:hidden;
    padding:70px;
    background:url('../images/ffl_benifits_bg-min.jpg') center center/cover no-repeat;

}

.benefits-box .overlay{

    position:absolute;
    inset:0;
    background:rgba(84,26,22,.72);

}

.benefits-box .row{
    z-index:2;
}

.benefit-item{

    color:#fff;
    margin-bottom:35px;

}

.benefit-item h3{

    font-size:34px;
    font-weight:700;
    margin-bottom:25px;

}

.benefit-item p{

    color:#fff;
    font-size:17px;
    line-height:2;

}


/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px){

    .benefits-box{

        padding:40px 30px;

    }

    .benefit-item h3{

        font-size:28px;

    }

}

@media(max-width:767px){

    .ffl-tabs .nav-item{

        width:100%;
        flex:0 0 100%;

    }

    .benefits-box{

        padding:30px 20px;

    }

    .benefit-item h3{

        font-size:24px;

    }

    .benefit-item p{

        font-size:15px;
        line-height:1.9;

    }

}


/*=========================================
JOIN OUR TEAM
==========================================*/

.career-section{

    background:#fff;
    padding:100px 0;

}

.career-content{

    text-align:left;

}

.career-title {
    font-size: 46px;
    font-weight: 800;
    color: #171d24;
    text-align: center;
    margin-bottom: 23px;
    line-height: 1.1;
}

.career-content p{

    font-size:16px;
    line-height:1.6;
    color:#36485c;
    margin-bottom:18px;

}

.career-content a{

    color:#000;
    text-decoration:none;
    font-weight:600;

}

.career-content a:hover{

    color:#ef5a22;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

    .career-section{

        padding:80px 0;

    }

    .career-title{

        font-size:54px;

    }

    .career-content p{

        font-size:18px;
        line-height:1.9;

    }

}

@media(max-width:767px){

    .career-section{

        padding:60px 0;

    }

    .career-title{

        font-size:40px;
        margin-bottom:30px;

    }

    .career-content{

        text-align:left;

    }

    .career-content p{

        font-size:17px;
        line-height:1.8;

    }

}


/*======================================
CAREER FORM
======================================*/

.career-form-section{

    background:#f5f5f5;
    padding:90px 0;

}

.career-wrapper{

    background:#fff;

}

.career-form-box{

    padding:80px 55px;
    height:100%;

}

.career-form-box h2{

    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:55px;

}

/* underline fields */

.form-line{

    border:none;
    border-bottom:1px solid #ddd;
    border-radius:0;
    padding:14px 0;
    background:none;
    box-shadow:none !important;
    font-size:20px;

}

.form-line:focus{

    border-bottom:2px solid #ef5a22;

}

textarea.form-line{

    resize:none;

}

.career-btn{

    background:#ef5a22;
    color:#fff;
    border-radius:0;
    padding:16px 35px;
    font-size:20px;
    font-weight:600;

}

.career-btn:hover{

    background:#111;
    color:#fff;

}

.career-captcha{

    width:304px;
    height:78px;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafafa;
    color:#777;

}

.career-image{

    height:100%;

}

.career-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .career-form-box{

        padding:50px 35px;

    }

    .career-form-box h2{

        font-size:46px;

    }

    .career-image{

        min-height:450px;

    }

}

@media(max-width:767px){

    .career-form-box{

        padding:35px 25px;

    }

    .career-form-box h2{

        font-size:40px;

    }

    .career-image{

        min-height:320px;

    }

    .career-captcha{

        width:100%;

    }

}


/*=========================================
CONTACT SECTION
==========================================*/

.contact-section{

    padding:90px 0;
    background:#fff;

}

/* MAP */

.contact-map iframe{

    width:100%;
    height:250px;
    border:0;

}

/* LEFT */

.contact-section h4{

    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;

}

.contact-section p{

    font-size:16px;
    line-height:1.6;
    color:#3d4653;

}

.contact-section a{

    color:#111;
    text-decoration:none;

}

.contact-social{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.contact-social a{

    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    border-radius:3px;
}

.contact-social a:nth-child(1){

    background:#3b5998;

}

.contact-social a:nth-child(2){

    background:#1da1f2;

}

.contact-social a:nth-child(3){

    background:#222;

}

.contact-social a:nth-child(4){

    background:#0a66c2;

}

/* RIGHT */

.contact-form-box{

    border:1px solid #222;
    padding:60px;

}

.contact-small-title{

    display:block;
    color:#ef5a22;
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;

}

.contact-form-box h2{

    font-size:30px;
    font-weight:700;
    margin-bottom:45px;
    color:#111;

}

.form-line{

    border:none;
    border-bottom:1px solid #ddd;
    border-radius:0;
    box-shadow:none!important;
    padding:15px 0;
    font-size:18px;
    background:none;

}

.form-line:focus{

    border-bottom:2px solid #ef5a22;

}

textarea.form-line{

    resize:none;

}

.contact-captcha{

    width:304px;
    height:78px;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafafa;
    color:#666;

}

.contact-btn{

    background:#ef5a22;
    color:#fff;
    border-radius:0;
    padding:15px 34px;
    font-size:18px;
    font-weight:600;

}

.contact-btn:hover{

    background:#111;
    color:#fff;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .contact-form-box{

        padding:40px 30px;
        margin-top:20px;

    }

}

@media(max-width:767px){

    .contact-form-box{

        padding:30px 20px;

    }

    .contact-form-box h2{

        font-size:32px;

    }

    .contact-small-title{

        font-size:20px;

    }

    .contact-section h4{

        font-size:26px;

    }

    .contact-captcha{

        width:100%;

    }

}


/*=========================================
WORKER COMFORT SECTION
==========================================*/

.worker-comfort-section{

    position:relative;

    padding:100px 0;

    background:url('../images/2-1.jpg') center center;

    background-size:cover;

    overflow:hidden;

}

/* Dark Overlay */

.worker-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.68);

}

.worker-comfort-section .container{

    position:relative;

    z-index:2;

}

/* Heading */

.worker-title{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

/* Text */

.worker-comfort-section p{

    color:#fff;

    font-size:16px;

    line-height:1.6;

    margin-bottom:30px;

    font-weight:400;

}

/* Responsive */

@media(max-width:991px){

    .worker-comfort-section{

        padding:70px 0;

    }

    .worker-title{

        font-size:34px;

        margin-bottom:40px;

    }

}

@media(max-width:767px){

    .worker-comfort-section{

        padding:60px 0;

    }

    .worker-title{

        font-size:28px;

    }

    .worker-comfort-section p{

        font-size:17px;

        line-height:1.8;

        margin-bottom:25px;

    }

}

/*=========================================
CSR SECTION
==========================================*/

.csr-section{

    position:relative;

    padding:90px 0;

    background:url('../images/bg2.jpg') center center;

    background-size:cover;

    background-repeat:no-repeat;

    overflow:hidden;

}

.csr-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

}

.csr-section .container{

    position:relative;

    z-index:2;

}

.csr-title{

    color:#fff;

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

.csr-image{

    width:100%;

    display:block;

}

.csr-content{

    padding-left:25px;

}

.csr-content p{

    color:#fff;

    font-size:16px;

    line-height:1.6;

    margin-bottom:35px;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .csr-section{

        padding:70px 0;

    }

    .csr-title{

        font-size:34px;

        margin-bottom:35px;

    }

    .csr-content{

        padding-left:0;

    }

}

@media(max-width:767px){

    .csr-section{

        padding:60px 0;

    }

    .csr-title{

        font-size:28px;

    }

    .csr-content p{

        font-size:17px;

        line-height:1.8;

        margin-bottom:22px;

    }

}


/*==================================
BLOG LISTING
==================================*/

.blog-section{
    padding:90px 0;
    background:#fff;
}

.blog-card{
    margin-bottom:45px;
    transition:.35s ease;
}

.blog-card:hover{
    transform:translateY(-6px);
}

.blog-meta{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
    font-size:13px;
    color:#666;
}

.blog-meta span{
    color:#777;
}

.blog-meta a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.blog-meta a:hover{
    color:#f15a24;
}

.blog-card h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 18px;
    min-height: 80px;
}

.blog-card h4 a{
    color:#111827;
    text-decoration:none;
    transition:.3s;
}

.blog-card h4 a:hover{
    color:#f15a24;
}

.blog-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:0;
    transition:.4s;
    display:block;
}

.blog-card:hover img{
    transform:scale(1.03);
}

.blog-card a{
    overflow:hidden;
    display:block;
}


/*==================================
Pagination
==================================*/

.blog-pagination{
    margin-top:60px;
    justify-content:center;
}

.blog-pagination .page-link{
    border-radius:0;
    color:#222;
    border:1px solid #ddd;
    padding:12px 18px;
    font-weight:600;
}

.blog-pagination .page-item.active .page-link{
    background:#f15a24;
    border-color:#f15a24;
}

.blog-pagination .page-link:hover{
    background:#f15a24;
    color:#fff;
    border-color:#f15a24;
}


/*==================================
Responsive
==================================*/

@media (max-width:991px){

    .blog-section{
        padding:70px 0;
    }

    .blog-card{
        margin-bottom:40px;
    }

    .blog-card h4{
        font-size:24px;
        min-height:auto;
    }

    .blog-card img{
        height:230px;
    }

}

@media (max-width:767px){

    .blog-section{
        padding:60px 0;
    }

    .blog-card{
        margin-bottom:35px;
    }

    .blog-card h4{
        font-size:22px;
        line-height:1.4;
    }

    .blog-card img{
        height:220px;
    }

    .blog-meta{
        flex-wrap:wrap;
        font-size:12px;
    }

}

@media (max-width:575px){

    .blog-card h4{
        font-size:20px;
    }

    .blog-card img{
        height:210px;
    }

}


.certificate-section .nav-link::after, .ffl-tabs-section .nav-link::after {
    
    content: unset !important;
}


.sidebar-widget{

    background:#fff;

    border:1px solid #eee;

    padding:30px;

    margin-bottom:35px;

}

.sidebar-title{

    font-size:26px;

    font-weight:700;

    margin-bottom:25px;

    color:#111;

}

.search-form .form-control{

    border-radius:0;

    height:55px;

}

.btn-search{

    background:#f15a24;

    color:#fff;

    border-radius:0;

    width:60px;

}

.btn-search:hover{

    background:#111;

    color:#fff;

}

.sidebar-list{

    list-style:none;

    padding:0;

    margin:0;

}

.sidebar-list li{

    border-bottom:1px solid #eee;

}

.sidebar-list li:last-child{

    border-bottom:none;

}

.sidebar-list li a{

    display:block;

    padding:12px 0;

    color:#333;

    text-decoration:none;

    transition:.3s;

}

.sidebar-list li a:hover{

    color:#f15a24;

    padding-left:8px;

}

/*=========================================
BLOG DETAIL
=========================================*/

.blog-detail-section{
    padding:90px 0;
    background:#fff;
}

/*==============================
Featured Image
==============================*/

.blog-feature-image{
    margin-bottom:35px;
}

.blog-feature-image img{
    width:100%;
    display:block;
}

/*==============================
Meta
==============================*/

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:20px;
    margin-bottom:40px;
    padding-bottom:20px;
    border-bottom:1px solid #ececec;
    font-size:15px;
    color:#777;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:8px;
}

.blog-meta i{
    color:#f15a24;
    font-size:16px;
}

.blog-meta a{
    color:#444;
    text-decoration:none;
}

.blog-meta a:hover{
    color:#f15a24;
}

/*==============================
Content
==============================*/

.blog-content{
    color:#555;
    font-size:18px;
    line-height:2;
}

.blog-content p{
    margin-bottom:30px;
}

/*==============================
Headings
==============================*/

.blog-content h1{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:35px;
    line-height:1.25;
}

.blog-content h2{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-top:60px;
    margin-bottom:25px;
    line-height:1.3;
}

.blog-content h3{
    font-size:30px;
    font-weight:700;
    color:#111;
    margin-top:45px;
    margin-bottom:20px;
}

.blog-content h4{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

/*==============================
Links
==============================*/

.blog-content a{
    color:#111;
    text-decoration:none;
    transition:.3s;
}

.blog-content a:hover{
    color:#f15a24;
}

/*==============================
Bold
==============================*/

.blog-content strong{
    color:#111;
    font-weight:700;
}

/*==============================
Images
==============================*/

.blog-content img{
    max-width:100%;
    height:auto;
    margin:35px 0;
}

/*==============================
Lists
==============================*/

.blog-content ul{
    padding-left:22px;
    margin-bottom:30px;
}

.blog-content ol{
    padding-left:25px;
    margin-bottom:30px;
}

.blog-content li{
    margin-bottom:12px;
    line-height:1.9;
}

/*==============================
Blockquote
==============================*/

.blog-content blockquote{
    background:#f8f8f8;
    border-left:5px solid #f15a24;
    padding:35px;
    margin:40px 0;
    font-size:22px;
    font-style:italic;
    color:#444;
}

/*==============================
Tables
==============================*/

.blog-content table{
    width:100%;
    margin:35px 0;
    border-collapse:collapse;
}

.blog-content table th{
    background:#f15a24;
    color:#fff;
    padding:14px;
}

.blog-content table td{
    padding:14px;
    border:1px solid #ddd;
}

/*==============================
Horizontal Rule
==============================*/

.blog-content hr{
    margin:60px 0;
    opacity:.15;
}

/*==============================
Code
==============================*/

.blog-content pre{
    background:#1f1f1f;
    color:#fff;
    padding:25px;
    overflow:auto;
}

.blog-content code{
    color:#f15a24;
}

/*==============================
Tags
==============================*/

.blog-tags{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid #eee;
}

.blog-tags a{
    display:inline-block;
    padding:8px 16px;
    border:1px solid #ddd;
    margin:0 10px 10px 0;
    color:#444;
    transition:.3s;
}

.blog-tags a:hover{
    background:#f15a24;
    color:#fff;
    border-color:#f15a24;
}

/*==============================
Share
==============================*/

.blog-share{
    margin-top:30px;
}

.blog-share a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#f4f4f4;
    color:#111;
    margin-right:8px;
    transition:.3s;
}

.blog-share a:hover{
    background:#f15a24;
    color:#fff;
}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

    .blog-detail-section{
        padding:70px 0;
    }

    .blog-content{
        font-size:17px;
    }

    .blog-content h1{
        font-size:38px;
    }

    .blog-content h2{
        font-size:32px;
    }

    .blog-content h3{
        font-size:26px;
    }

}

@media(max-width:767px){

    .blog-detail-section{
        padding:55px 0;
    }

    .blog-meta{
        gap:12px;
        font-size:14px;
    }

    .blog-content{
        font-size:16px;
        line-height:1.9;
    }

    .blog-content h1{
        font-size:30px;
    }

    .blog-content h2{
        font-size:27px;
        margin-top:45px;
    }

    .blog-content h3{
        font-size:23px;
    }

    .blog-content blockquote{
        padding:20px;
        font-size:18px;
    }

}

/*=========================================
BLOG SIDEBAR
=========================================*/

.blog-sidebar{

    padding-left:35px;

}

/*=========================
Widget
=========================*/

.sidebar-widget{

    background:#fff;

    border:1px solid #ececec;

    padding:35px;

    margin-bottom:35px;

    transition:.35s;

}

.sidebar-widget:hover{

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/*=========================
Title
=========================*/

.widget-title{

    font-size:30px;

    font-weight:700;

    color:#111;

    margin-bottom:28px;

    position:relative;

    padding-bottom:15px;

}

.widget-title:after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:3px;

    background:#f15a24;

}

/*=========================
Search
=========================*/

.sidebar-search .form-control{

    height:55px;

    border:1px solid #ddd;

    border-radius:0;

    box-shadow:none;

    padding-left:18px;

}

.sidebar-search .form-control:focus{

    border-color:#f15a24;

}

.search-btn{

    width:60px;

    background:#f15a24;

    color:#fff;

    border:none;

    border-radius:0;

}

.search-btn:hover{

    background:#111;

    color:#fff;

}

/*=========================
Links
=========================*/

.sidebar-links{

    list-style:none;

    margin:0;

    padding:0;

}

.sidebar-links li{

    border-bottom:1px solid #efefef;

    padding:14px 0;

}

.sidebar-links li:last-child{

    border:none;

}

.sidebar-links li a{

    color:#333;

    text-decoration:none;

    line-height:1.7;

    transition:.3s;

    font-size:17px;

    font-weight:500;

}

.sidebar-links li a:hover{

    color:#f15a24;

    padding-left:8px;

}

/*=========================
Categories
=========================*/

.categories li{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.categories span{

    color:#888;

    font-weight:600;

}

/*=========================
Recent Posts
=========================*/

.recent-post{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:22px;

    padding-bottom:22px;

    border-bottom:1px solid #efefef;

}

.recent-post:last-child{

    margin-bottom:0;

    padding-bottom:0;

    border:none;

}

.recent-post img{

    width:90px;

    height:90px;

    object-fit:cover;

    flex-shrink:0;

}

.recent-title{

    display:block;

    color:#111;

    text-decoration:none;

    font-size:17px;

    line-height:1.5;

    font-weight:700;

    margin-bottom:8px;

    transition:.3s;

}

.recent-title:hover{

    color:#f15a24;

}

.recent-post span{

    display:block;

    color:#777;

    font-size:14px;

}

/*=========================
Paragraph
=========================*/

.sidebar-widget p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .blog-sidebar{

        padding-left:0;

        margin-top:60px;

    }

}

@media(max-width:767px){

    .sidebar-widget{

        padding:25px;

    }

    .widget-title{

        font-size:24px;

    }

    .recent-post{

        gap:15px;

    }

    .recent-post img{

        width:75px;

        height:75px;

    }

    .recent-title{

        font-size:15px;

    }

    .sidebar-links li a{

        font-size:15px;

    }

}