/* =====================================
   GOOGLE FONT
===================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================================
   ROOT VARIABLES
===================================== */

:root{

    --primary:#D4AF37;
    --secondary:#FF6A00;
    --dark:#0A0A0A;
    --dark2:#141414;
    --white:#FFFFFF;
    --text:#DDDDDD;

    --transition:.35s ease;
}

/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* =====================================
   CONTAINER
===================================== */

.container{

    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =====================================
   TOP BAR
===================================== */

.top-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:45px;

    background:#000;

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;
}

.top-bar .container{

    height:45px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.top-bar .left,
.top-bar .right{

    display:flex;

    align-items:center;
}

.top-bar span{

    color:var(--text);

    font-size:14px;

    margin-right:25px;
}

.top-bar i{

    color:var(--primary);

    margin-right:8px;
}

.top-bar a{

    color:white;

    margin-left:18px;

    font-size:16px;

    transition:var(--transition);
}

.top-bar a:hover{

    color:var(--primary);
}

/* =====================================
   NAVBAR
===================================== */

nav{

    position:fixed;

    top:45px;

    left:0;

    width:100%;

    height:90px;

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(12px);

    transition:.4s;

    z-index:9998;
}

nav.scrolled{

    background:#000;

    box-shadow:0 8px 25px rgba(0,0,0,.4);
}

nav .container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/* Logo */

.logo img{

    width:180px;

    height:auto;
}

/* Menu */

nav ul{

    display:flex;

    align-items:center;

    gap:35px;
}

nav ul li a{

    color:white;

    font-size:15px;

    font-weight:500;

    position:relative;

    transition:var(--transition);
}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);
}

nav ul li a:hover{

    color:var(--primary);
}

nav ul li a:hover::after{

    width:100%;
}

/* Quote Button */

.quote-btn{

    padding:13px 28px;

    background:var(--primary);

    color:black;

    font-weight:600;

    border-radius:50px;

    transition:var(--transition);
}

.quote-btn:hover{

    background:var(--secondary);

    color:white;
}

/* =====================================
   HERO
===================================== */

.hero{

    position:relative;

    min-height:100vh;

    background:url('../images/hero.png') center center/cover no-repeat;

    display:flex;

    align-items:center;

    padding-top:135px;
}

/* Dark Overlay */

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.90) 0%,
        rgba(0,0,0,.65) 45%,
        rgba(0,0,0,.15) 100%
    );
}

/* Hero Content */

.hero-content{

    position:relative;

    z-index:2;

    width:90%;

    max-width:1400px;

    margin:auto;

    max-width:650px;
}

.hero-content h5{

    color:var(--primary);

    font-size:18px;

    letter-spacing:4px;

    margin-bottom:20px;
}

.hero-content h1{

    font-size:65px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

    text-transform:uppercase;
}

.hero-content p{

    font-size:18px;

    color:#dddddd;

    line-height:1.8;

    margin-bottom:40px;
}

/* =====================================
   BUTTONS
===================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn{

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);
}

.gold-btn{

    background:var(--primary);

    color:black;
}

.gold-btn:hover{

    background:var(--secondary);

    color:white;
}

.transparent-btn{

    border:2px solid white;

    color:white;
}

.transparent-btn:hover{

    background:white;

    color:black;
}

/* =====================================
   HERO ANIMATION
===================================== */

.hero-content{

    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }
}
/* =====================================
   TRUSTED SECTION
===================================== */

.trusted{

    background:#111;

    padding:100px 0;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    font-size:42px;

    color:#fff;

    margin-bottom:15px;
}

.section-title p{

    color:#bdbdbd;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;
}

.trusted-card{

    background:#181818;

    padding:40px 20px;

    border-radius:16px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);
}

.trusted-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;
}

.trusted-card i{

    font-size:42px;

    color:#D4AF37;

    margin-bottom:20px;
}

.trusted-card h3{

    font-size:18px;

    font-weight:600;
}
/* =====================================
   ABOUT
===================================== */

.about{

    padding:120px 0;

    background:#0d0d0d;
}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image{

    overflow:hidden;

    border-radius:20px;
}

.about-image img{

    width:100%;

    display:block;

    border-radius:20px;

    transition:.6s;
}

.about-image:hover img{

    transform:scale(1.05);
}

.section-tag{

    color:#D4AF37;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;
}

.about-content h2{

    font-size:48px;

    margin:20px 0;

    line-height:1.2;
}

.about-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:35px;
}

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;
}

.features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;
}

.features i{

    color:#D4AF37;
}
/* =====================================
   FLOATING BUTTONS
===================================== */

.floating-buttons{

    position:fixed;

    right:30px;

    bottom:30px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:99999;
}

.float-btn{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:24px;

    text-decoration:none;

    border:none;

    cursor:pointer;

    transition:.35s;
}

/* WhatsApp */

.whatsapp{

    background:#25D366;
}

.whatsapp:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 10px 25px rgba(37,211,102,.4);
}

/* Phone */

.phone{

    background:#D4AF37;

    color:#000;
}

.phone:hover{

    background:#FF6A00;

    color:#fff;

    transform:translateY(-6px);
}

/* Back To Top */

.top{

    background:#222;

    display:none;
}

.top:hover{

    background:#D4AF37;

    color:#000;
}
.whatsapp{

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.7);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}
/*=====================================
WHY CHOOSE US
======================================*/

.why-choose{

    padding:120px 0;

    background:#111;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.why-card{

    background:#181818;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);
}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 15px 40px rgba(212,175,55,.15);
}

.why-card .icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.35s;
}

.why-card:hover .icon{

    transform:rotate(360deg);
}

.why-card i{

    font-size:34px;

    color:#111;
}

.why-card h3{

    margin-bottom:15px;

    font-size:22px;
}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;
}
/*=====================================
FEATURED PRODUCTS
======================================*/

.products{

    padding:120px 0;

    background:#0c0c0c;
}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;
}

.product-card{

    background:#171717;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);
}

.product-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 20px 45px rgba(0,0,0,.4);
}

.product-image{

    position:relative;

    overflow:hidden;
}

.product-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;
}

.product-card:hover img{

    transform:scale(1.08);
}

.badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#D4AF37;

    color:#111;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;
}

.product-content{

    padding:30px;
}

.product-content h3{

    font-size:24px;

    margin-bottom:15px;
}

.product-content p{

    color:#bfbfbf;

    line-height:1.8;

    margin-bottom:25px;
}

.sizes{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;
}

.sizes span{

    background:#262626;

    padding:8px 14px;

    border-radius:30px;

    color:#D4AF37;

    font-size:14px;
}
/*=====================================
STATISTICS
======================================*/

.statistics{

    position:relative;

    padding:120px 0;

    background:url('../images/statistics.jpg') center center/cover;

    background-attachment:fixed;
}

.statistics .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.75);
}

.stats-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.stat-box{

    text-align:center;
}

.stat-box i{

    font-size:55px;

    color:#D4AF37;

    margin-bottom:20px;
}

.stat-box h2{

    font-size:58px;

    font-weight:700;

    color:#fff;

    margin-bottom:10px;
}

.stat-box p{

    color:#ddd;

    font-size:18px;
}
/*=====================================
PROJECTS
======================================*/

.projects{

    padding:120px 0;

    background:#111;
}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;
}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;
}

.project-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.6s;
}

.project-card:hover img{

    transform:scale(1.1);
}

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.90),

        rgba(0,0,0,.15)

    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

}

.project-overlay span{

    color:#D4AF37;

    margin-bottom:12px;

    letter-spacing:2px;
}

.project-overlay h3{

    font-size:32px;

    margin-bottom:20px;
}

.project-overlay a{

    width:170px;

    text-align:center;

    padding:14px;

    border-radius:40px;

    background:#D4AF37;

    color:#111;

    font-weight:600;

    transition:.35s;
}

.project-overlay a:hover{

    background:#FF6A00;

    color:#fff;
}
/*=====================================
SERVICES
======================================*/

.services{

    padding:120px 0;

    background:#101010;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.service-card{

    background:#181818;

    padding:45px 30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);
}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 15px 35px rgba(212,175,55,.15);
}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;
}

.service-icon i{

    font-size:36px;

    color:#111;
}

.service-card h3{

    font-size:24px;

    margin-bottom:15px;
}

.service-card p{

    color:#cfcfcf;

    line-height:1.8;
}
/*=====================================
HOW WE WORK
======================================*/

.how-work{

    padding:120px 0;

    background:#0d0d0d;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

    position:relative;
}

.process-card{

    background:#181818;

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    position:relative;

    transition:.35s;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);
}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 15px 35px rgba(212,175,55,.15);
}

.process-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:18px;

    font-weight:700;

    color:rgba(212,175,55,.25);
}

.process-card i{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:36px;

    color:#111;

    margin-bottom:30px;
}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;
}

.process-card p{

    color:#cfcfcf;

    line-height:1.8;
}
/*=====================================
CALL TO ACTION
======================================*/

.cta{

    position:relative;

    padding:140px 0;

    background:url('../images/cta.jpg') center center/cover;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.78);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:800px;

    text-align:center;

    margin:auto;

}

.cta-content h2{

    font-size:52px;

    margin:25px 0;

    line-height:1.2;

}

.cta-content p{

    color:#ddd;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:240px;

    text-align:center;

}
/*=====================================
CONTACT
======================================*/

.contact{

    padding:120px 0;

    background:#101010;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    margin-top:60px;
}

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:35px;

    align-items:flex-start;
}

.info-box i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#111;

    font-size:26px;

    flex-shrink:0;
}

.info-box h3{

    margin-bottom:8px;

    font-size:22px;
}

.info-box p{

    color:#cfcfcf;

    line-height:1.7;
}

/* Form */

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-form input,
.contact-form textarea{

    background:#181818;

    border:none;

    padding:18px;

    border-radius:10px;

    color:white;

    font-size:16px;

    outline:none;

    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border:1px solid #D4AF37;
}

.contact-form button{

    width:220px;
}
/*=====================================
FOOTER
======================================*/

.footer{

    background:#0A0A0A;

    border-top:1px solid rgba(255,255,255,.08);

    padding:30px 0;

    text-align:center;
}

.footer p{

    color:#bfbfbf;

    font-size:15px;

    margin:0;
}
/*=====================================
PAGE BANNER
======================================*/

.page-banner{

    position:relative;

    height:420px;

    background:url('../images/banners/about-banner.png') center center/cover;

    display:flex;

    align-items:center;

}

.page-banner .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);

}

.banner-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.banner-content h1{

    font-size:60px;

    margin-bottom:20px;

}

.banner-content p{

    font-size:20px;

    color:#ddd;

    line-height:1.8;

}

.breadcrumb{

    margin-top:30px;

    display:flex;

    gap:12px;

    align-items:center;

}

.breadcrumb a{

    color:#D4AF37;

    text-decoration:none;

}

.breadcrumb span{

    color:white;

}
/*=====================================
WHO WE ARE
======================================*/

.about-company{

    padding:120px 0;

    background:#111;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;
}

.about-content h2{

    font-size:42px;

    margin:20px 0;
}

.about-content p{

    color:#d0d0d0;

    line-height:2;

    margin-bottom:20px;
}
/*=====================================
VISION
======================================*/

.vision-section{

    padding:120px 0;

    background:#0A0A0A;
}

.vision-card{

    display:flex;

    align-items:center;

    gap:40px;

    background:#151515;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:50px;

    transition:.4s;
}

.vision-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(212,175,55,.15);

    border-color:#D4AF37;
}

.vision-icon{

    width:120px;

    height:120px;

    border-radius:50%;

    background:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;
}

.vision-icon i{

    font-size:48px;

    color:#111;
}

.vision-content h2{

    margin:15px 0;

    font-size:40px;
}

.vision-content p{

    color:#d5d5d5;

    line-height:2;

    font-size:17px;
}
/*=====================================
MISSION
======================================*/

.mission-section{

    padding:120px 0;

    background:#101010;
}

.mission-card{

    display:flex;

    align-items:center;

    gap:40px;

    background:#181818;

    border-radius:20px;

    padding:50px;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;
}

.mission-card:hover{

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.12);
}

.mission-content{

    flex:1;
}

.mission-content h2{

    margin:15px 0;

    font-size:40px;
}

.mission-content p{

    color:#d5d5d5;

    line-height:2;

    margin-bottom:20px;
}

.mission-icon{

    width:120px;

    height:120px;

    border-radius:50%;

    background:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;
}

.mission-icon i{

    font-size:48px;

    color:#111;
}
/*=====================================
CORE VALUES
======================================*/

.core-values{

    padding:120px 0;

    background:#0A0A0A;
}

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.value-card{

    background:#181818;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;
}

.value-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.15);
}

.value-card i{

    width:90px;

    height:90px;

    background:#D4AF37;

    color:#111;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin:0 auto 25px;
}

.value-card h3{

    font-size:24px;

    margin-bottom:15px;
}

.value-card p{

    color:#d0d0d0;

    line-height:1.8;

    font-size:15px;
}
/*=====================================
ABOUT - WHY US
======================================*/

.about-why-us{

    padding:120px 0;

    background:#111;
}

.about-why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-why-content h2{

    font-size:44px;

    margin:20px 0;
}

.about-why-content>p{

    color:#d0d0d0;

    line-height:2;

    margin-bottom:40px;
}

.why-list{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.why-item{

    display:flex;

    align-items:flex-start;

    gap:20px;
}

.why-item i{

    color:#D4AF37;

    font-size:28px;

    margin-top:5px;
}

.why-item h4{

    font-size:22px;

    margin-bottom:8px;
}

.why-item p{

    color:#cfcfcf;

    line-height:1.8;
}

.about-why-image img{

    width:100%;

    border-radius:20px;

    display:block;

    transition:.4s;
}

.about-why-image img:hover{

    transform:scale(1.03);
}
/*=====================================
SECTION HEADER
======================================*/

.section-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;
}

.section-tag{

    display:inline-block;

    color:#D4AF37;

    text-transform:uppercase;

    letter-spacing:4px;

    font-weight:600;

    margin-bottom:20px;
}

.section-header h2{

    font-size:52px;

    color:#fff;

    margin-bottom:20px;

    line-height:1.2;
}

.section-header p{

    color:#cfcfcf;

    font-size:18px;

    line-height:1.9;
}
/*=====================================
GLOBAL CARD
======================================*/

.card{

    background:#181818;

    border-radius:18px;

    padding:40px;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;
}

.card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.15);
}
/*=====================================
SECTION SPACING
======================================*/

.section{

    padding:120px 0;
}

/*=====================================
SECTION HEADER
======================================*/

.section-header{

    width:100%;
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{

    display:inline-block;
    color:#D4AF37;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-header h2{

    font-size:52px;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
}

.section-header p{

    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
}

/*=====================================
GLOBAL CARD
======================================*/

.card{

    background:#181818;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.06);
    padding:40px;
    transition:.35s ease;
}

.card:hover{

    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(212,175,55,.15);
}
/*=====================================
WHO WE ARE
======================================*/

.about-company{

    background:#111;
}

.split{

    display:grid;
    grid-template-columns:55% 45%;
    gap:70px;
    align-items:center;
}

.split-image{

    overflow:hidden;
    border-radius:20px;
}

.split-image img{

    width:100%;
    display:block;
    transition:.5s;
}

.split-image:hover img{

    transform:scale(1.08);
}

.split-content h2{

    font-size:48px;
    margin:20px 0;
    line-height:1.2;
}

.title-line{

    width:90px;
    height:4px;
    background:#D4AF37;
    margin-bottom:30px;
}

.split-content p{

    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:20px;
}

.company-features{

    margin:35px 0;
    list-style:none;
}

.company-features li{

    margin-bottom:18px;
    font-size:17px;
}

.company-features i{

    color:#D4AF37;
    margin-right:12px;
}