/*==========================================================
    PLANET CHEMICAL FERTILIZER TRADING FZCO
    Global Stylesheet
==========================================================*/


/*==========================================================
    1. GOOGLE FONT
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==========================================================
    2. ROOT VARIABLES
==========================================================*/

:root{

    --primary:#5EA93F;
    --primary-dark:#3E7F28;
    --secondary:#1E2D24;

    --white:#ffffff;
    --black:#111111;

    --text:#5F6775;
    --heading:#162032;

    --bg:#F8FAFC;
    --border:#E8EDF2;

    --shadow-sm:0 10px 30px rgba(0,0,0,.05);
    --shadow-md:0 18px 45px rgba(0,0,0,.08);
    --shadow-lg:0 25px 70px rgba(0,0,0,.12);

    --radius-sm:10px;
    --radius-md:18px;
    --radius-lg:28px;

    --transition:.35s ease;
}


/*==========================================================
    3. RESET
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;

    font-size:16px;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    padding:0;

    margin:0;

    list-style:none;

}

button{

    border:none;

    outline:none;

    transition:var(--transition);

}

input,
textarea,
select{

    outline:none;

    box-shadow:none;

}


/*==========================================================
    4. TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);

    font-weight:700;

    line-height:1.25;

    margin-bottom:18px;

}

h1{

    font-size:60px;

}

h2{

    font-size:46px;

}

h3{

    font-size:34px;

}

h4{

    font-size:28px;

}

h5{

    font-size:22px;

}

h6{

    font-size:18px;

}

p{

    color:var(--text);

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}


/*==========================================================
    5. COMMON UTILITIES
==========================================================*/

.section-padding{

    padding:100px 0;

}

.bg-light{

    background:#F8FAFC !important;

}

.bg-white{

    background:#fff !important;

}

.text-primary{

    color:var(--primary)!important;

}

.text-center{

    text-align:center;

}

.mb-60{

    margin-bottom:60px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-30{

    margin-bottom:30px;

}


/*==========================================================
    6. SECTION TITLES
==========================================================*/

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:18px;

}

.section-title{

    font-size:48px;

    font-weight:800;

    color:var(--heading);

    line-height:1.2;

    margin-bottom:20px;

}

.section-title span{

    color:var(--primary);

}

.section-description{

    max-width:760px;

    margin:auto;

    color:var(--text);

    font-size:18px;

    line-height:1.9;

}


/*==========================================================
    7. BUTTONS
==========================================================*/

.btn{

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-success{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-success:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline-success{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline-success:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}
/*==========================================================
    8. NAVBAR
==========================================================*/

.custom-navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding:16px 0;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:all .35s ease;

}

/*==========================================================
    NAVBAR AFTER SCROLL
==========================================================*/

.custom-navbar.scrolled{

    padding:10px 0;

    background:rgba(255,255,255,.98);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}


/*==========================================================
    BODY OFFSET
==========================================================*/

body{

    padding-top:92px;

}


/*==========================================================
    LOGO
==========================================================*/

.navbar-brand{

    display:flex;

    align-items:center;

}

.navbar-brand img{

    height:75px;

    width:auto;

    transition:all .3s ease;

}

.custom-navbar.scrolled .navbar-brand img{

    height:64px;

}


/*==========================================================
    NAVIGATION
==========================================================*/

.navbar-nav{

    align-items:center;

    gap:10px;

}

.navbar-nav .nav-item{

    position:relative;

}

.navbar-nav .nav-link{

    position:relative;

    padding:12px 16px !important;

    color:var(--heading);

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

}


/*==========================================================
    HOVER
==========================================================*/

.navbar-nav .nav-link:hover{

    color:var(--primary);

}


/*==========================================================
    ACTIVE LINK
==========================================================*/

.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:4px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

    transform:translateX(-50%);

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:65%;

}


/*==========================================================
    NAVBAR BUTTON
==========================================================*/

.custom-navbar .btn{

    margin-left:20px;

    padding:13px 30px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    box-shadow:0 10px 30px rgba(94,169,63,.22);

}


/*==========================================================
    TOGGLER
==========================================================*/

.navbar-toggler{

    border:none;

    box-shadow:none !important;

    padding:8px;

}

.navbar-toggler:focus{

    box-shadow:none;

}


/*==========================================================
    MOBILE MENU
==========================================================*/

@media(max-width:991px){

    body{

        padding-top:82px;

    }

    .custom-navbar{

        padding:12px 0;

    }

    .navbar-brand img{

        height:60px;

    }

    .custom-navbar.scrolled .navbar-brand img{

        height:55px;

    }

    .navbar-collapse{

        margin-top:20px;

        background:#ffffff;

        padding:25px;

        border-radius:20px;

        box-shadow:0 20px 45px rgba(0,0,0,.08);

    }

    .navbar-nav{

        gap:6px;

        align-items:flex-start;

    }

    .navbar-nav .nav-link{

        width:100%;

        padding:12px 0 !important;

    }

    .navbar-nav .nav-link::after{

        display:none;

    }

    .custom-navbar .btn{

        width:100%;

        margin:18px 0 0;

    }

}


/*==========================================================
    SMALL MOBILE
==========================================================*/

@media(max-width:576px){

    body{

        padding-top:78px;

    }

    .navbar-brand img{

        height:52px;

    }

}
/*==========================================================
    PAGE BANNER
==========================================================*/

.page-banner{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    padding:70px 0 20px;

    color:#fff;

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

}

.page-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(18,34,28,.72),
        rgba(18,34,28,.60)
    );

}

.page-banner .container{

    position:relative;

    z-index:2;

}

.products-banner{

    background-image:url("../images/products-banner.jpg");

}

.page-banner-content{

    max-width:720px;

}

.page-banner .section-subtitle{

    color:#fff;

}

.page-banner h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;

}

.page-banner p{

    color:rgba(255,255,255,.92);

    font-size:18px;

}
.page-banner p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    max-width:650px;

    min-height:105px;

    margin-bottom:35px;

}
.page-banner h1{

    color:#fff;

    font-size:58px;

    line-height:1.15;

    min-height:210px;

    margin-bottom:20px;

}
.technology-banner{

    background-image:
        linear-gradient(
            rgba(18,34,28,.72),
            rgba(18,34,28,.60)
        ),
        url("../images/technology-banner.jpg");
    padding:140px 0 10px;
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}

/*==========================================================
    10. COMMON SECTION INTRO
==========================================================*/

.section-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.section-header .section-description{

    margin:auto;

}


/*==========================================================
    11. COMMON CARD
==========================================================*/

.card-box{

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

    overflow:hidden;

    position:relative;

}

.card-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

    border-color:var(--primary);

}

.card-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.card-box:hover::before{

    transform:scaleX(1);

}


/*==========================================================
    12. ICON BOX
==========================================================*/

.icon-box{

    width:80px;

    height:80px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #7BC64F
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(94,169,63,.25);

    transition:var(--transition);

}

.card-box:hover .icon-box{

    transform:rotate(-8deg) scale(1.08);

}


/*==========================================================
    13. IMAGE WRAPPER
==========================================================*/

.image-box{

    position:relative;

    overflow:hidden;

    border-radius:22px;

}

.image-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.image-box:hover img{

    transform:scale(1.05);

}


/*==========================================================
    14. PRODUCT GRID
==========================================================*/

.product-grid{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.product-grid:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.product-grid img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.45s;

}

.product-grid:hover img{

    transform:scale(1.08);

}

.product-grid-content{

    padding:30px;

}

.product-grid-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.product-grid-content p{

    margin-bottom:20px;

}

.product-grid-content ul{

    margin-top:20px;

}

.product-grid-content li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

    color:var(--text);

}

.product-grid-content li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:700;

}


/*==========================================================
    15. COMMON CTA
==========================================================*/

.cta-section{

    background:linear-gradient(
        135deg,
        #184628,
        #5EA93F
    );

    border-radius:30px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    right:-120px;

    top:-120px;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.cta-section>*{

    position:relative;

    z-index:2;

}

.cta-section h2{

    color:#fff;

    font-size:42px;

}

.cta-section p{

    color:rgba(255,255,255,.90);

}

.cta-section .btn-success{

    background:#fff;

    color:var(--primary);

    border:none;

}

.cta-section .btn-success:hover{

    background:#f5f5f5;

}


/*==========================================================
    16. RESPONSIVE
==========================================================*/

@media(max-width:991px){

    .page-banner{

        height:340px;

    }

    .page-banner-content h1{

        font-size:46px;

    }

    .section-title{

        font-size:38px;

    }

    .cta-section{

        padding:50px;

        text-align:center;

    }

}

@media(max-width:767px){

    .page-banner{

        height:300px;

    }

    .page-banner-content h1{

        font-size:34px;

    }

    .page-banner-content p{

        font-size:16px;

    }

    .section-padding{

        padding:80px 0;

    }

    .section-title{

        font-size:30px;

    }

    .card-box{

        padding:28px;

    }

    .product-grid-content{

        padding:24px;

    }

    .cta-section{

        padding:35px 25px;

    }

    .cta-section h2{

        font-size:30px;

    }

}
/*==========================================================
                    FOOTER
==========================================================*/

.footer{

    background:#162032;

    color:rgba(255,255,255,.75);

    padding:55px 0 18px;

}

.footer-logo{

    display:flex;

    justify-content:flex-start;

    align-items:center;

    margin-bottom:18px;

}

.footer-logo img{

    width:auto;

    height:140px;

    display:block;

    transition:all .35s ease;

}

.footer-logo img:hover{

    transform:scale(1.05);

}


/*==============================
        BRAND TAGLINE
==============================*/

.footer-tagline{

    color:#ffffff;

    font-size:1.45rem;

    font-weight:600;

    line-height:1.5;

    margin-bottom:28px;

    max-width:320px;

}


/*==============================
        HEADINGS
==============================*/

.footer h4{

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    margin-bottom:28px;

}


/*==============================
        LINKS
==============================*/

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:.35s;

}

.footer-links a:hover{

    color:#5EA93F;

    padding-left:6px;

}


/*==============================
        CONTACT
==============================*/

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

}

.footer-contact i{

    color:#5EA93F;

    margin-top:4px;

    font-size:18px;

}

.footer-contact span{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}


/*==============================
        SOCIAL
==============================*/

.footer-social{

    display:flex;

    justify-content:flex-start;

    gap:16px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    transition:.35s;

}

.footer-social a:hover{

    background:#5EA93F;

    transform:translateY(-4px);

}


/*==============================
        COPYRIGHT
==============================*/

.footer-bottom{

    margin-top:45px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.10);

}

.footer-bottom p{

    margin:0;

    text-align:center;

    color:rgba(255,255,255,.60);

}


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

@media(max-width:991px){

    .footer{

        text-align:center;

    }

    .footer-logo{

        justify-content:center;

    }

    .footer-tagline{

        max-width:100%;

        margin-left:auto;

        margin-right:auto;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-contact li{

        justify-content:center;

    }

    .footer h4{

        margin-top:35px;

    }

}

@media(max-width:767px){

    .footer{

        padding:45px 0 20px;

    }

    .footer-logo img{

        height:90px;

    }

    .footer-tagline{

        font-size:1.2rem;

    }

}
/*==========================================================
    BACK TO TOP
==========================================================*/
/*==========================================================
    BACK TO TOP
==========================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-5px);

}


/*==========================================================
    FADE ANIMATION
==========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}


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

.hover-scale{

    overflow:hidden;

    border-radius:22px;

}

.hover-scale img{

    transition:.45s;

}

.hover-scale:hover img{

    transform:scale(1.08);

}


/*==========================================================
    SHADOW UTILITIES
==========================================================*/

.shadow-sm{

    box-shadow:var(--shadow-sm)!important;

}

.shadow-md{

    box-shadow:var(--shadow-md)!important;

}

.shadow-lg{

    box-shadow:var(--shadow-lg)!important;

}


/*==========================================================
    BORDER RADIUS UTILITIES
==========================================================*/

.rounded-lg{

    border-radius:28px!important;

}

.rounded-md{

    border-radius:18px!important;

}


/*==========================================================
    SPACING UTILITIES
==========================================================*/

.mt-60{

    margin-top:60px;

}

.mb-60{

    margin-bottom:60px;

}

.py-100{

    padding-top:100px;

    padding-bottom:100px;

}


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

@media(max-width:991px){

    .footer{

        text-align:center;

    }

    .footer-logo img{

        margin:auto;

    }

    .footer-contact li{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-bottom{

        text-align:center;

    }

}

@media(max-width:767px){

    .footer{

        padding:70px 0 20px;

    }

    .footer h4{

        margin-top:30px;

    }

    .back-to-top{

        width:46px;

        height:46px;

        right:15px;

        bottom:15px;

    }

}

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

.hero-section{

    position:relative;

    min-height:690px;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 30%,
        rgba(0,0,0,.28) 55%,
        rgba(0,0,0,.08) 100%
    ),
    url("../images/hero.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:#fff;

    overflow:hidden;

}

.hero-content{

    max-width:520px;

    position:relative;

    z-index:10;

}

.hero-subtitle{

    display:inline-block;

    font-size:.90rem;

    font-weight:700;

    color:#8EF16E;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.hero-title{

    font-size:3rem;

    font-weight:800;

    line-height:1.18;

    color:#fff;

    margin-bottom:20px;

    max-width:560px;

}

.hero-title span{

    color:#35D06E;

}

.hero-description{

    max-width:540px;

    font-size:1.05rem;

    line-height:1.9;

    color:rgba(255,255,255,.88);

    margin-bottom:38px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,170px);

    gap:22px;

    margin-top:55px;

}

.hero-stat{

    width:165px;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.15);

    transition:.3s;

}

.hero-stat:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.18);

}

.hero-stat h3{

    font-size:2.2rem;

    color:#fff;

    margin-bottom:6px;

}

.hero-stat p{

    margin:0;

    font-size:.95rem;

    color:rgba(255,255,255,.82);

}

/*==========================
        Responsive
===========================*/

@media(max-width:1200px){

    .hero-title{

        font-size:3rem;

    }

}

@media(max-width:992px){

    .hero-section{

        min-height:90vh;

        padding:120px 0 80px;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-title{

        font-size:2.6rem;

    }

    .hero-description{

        max-width:100%;

    }

    .hero-stats{

        justify-content:center;

    }

}

@media(max-width:768px){

    .hero-title{

        font-size:2.2rem;

    }

    .hero-subtitle{

        font-size:.78rem;

    }

    .hero-description{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .hero-stat{

        width:100%;

    }

}
/*==================================================
        SUSTAINABILITY BANNER
==================================================*/

.sustainability-banner{

    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(10,32,24,.72),
            rgba(10,32,24,.72)
        ),
        url("../images/banner.jpg");

    background-size: cover;

    background-position: center;
    padding:140px 0 10px;

    background-repeat: no-repeat;

}

.sustainability-banner::before{

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,.20),
        rgba(0,0,0,.05)
    );

}

.sustainability-banner .container{

    position: relative;

    z-index: 2;

}

.sustainability-banner .page-banner-content{

    max-width: 680px;

}

.sustainability-banner .section-subtitle{

    display: inline-block;

    color: #d9f2c8;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.sustainability-banner h1{

    color: #ffffff;

    font-size: 3.8rem;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;

}

.sustainability-banner p{

    color: rgba(255,255,255,.92);

    font-size: 1.1rem;

    line-height: 1.9;

    margin-bottom: 35px;

    max-width: 620px;

}

.sustainability-banner .btn{

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

}



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

@media (max-width:991px){

    .sustainability-banner{

        min-height: 470px;

    }

    .sustainability-banner h1{

        font-size: 3rem;

    }

}

@media (max-width:767px){

    .sustainability-banner{

        min-height: 420px;

        text-align: center;

    }

    .sustainability-banner .page-banner-content{

        max-width: 100%;

    }

    .sustainability-banner h1{

        font-size: 2.3rem;

    }

    .sustainability-banner p{

        font-size: 1rem;

    }

}

/*==================================================
            GLOBAL BANNER
==================================================*/

.global-banner{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(10,32,24,.72),
            rgba(10,32,24,.72)
        ),
        url("../images/global-banner.jpg");

    background-size:cover;

    background-position:center;
    padding:140px 0 10px;

    background-repeat:no-repeat;

}

.global-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.22),
        rgba(0,0,0,.05)
    );

}

.global-banner .container{

    position:relative;

    z-index:2;

}

.global-banner .page-banner-content{

    max-width:680px;

}

.global-banner .section-subtitle{

    color:#d7f2c8;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.global-banner h1{

    color:#ffffff;

    font-size:3.8rem;

    font-weight:800;

    line-height:1.15;

    margin-bottom:24px;

}

.global-banner p{

    color:rgba(255,255,255,.92);

    font-size:1.1rem;

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;

}

.global-banner .btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

}



/*=========================
        Responsive
==========================*/

@media(max-width:991px){

    .global-banner{

        min-height:470px;

    }

    .global-banner h1{

        font-size:3rem;

    }

}

@media(max-width:767px){

    .global-banner{

        min-height:420px;

        text-align:center;

    }

    .global-banner .page-banner-content{

        max-width:100%;

    }

    .global-banner h1{

        font-size:2.3rem;

    }

    .global-banner p{

        font-size:1rem;

    }

}
/*==================================================
            CONTACT BANNER
==================================================*/

.contact-banner{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(10,32,24,.72),
            rgba(10,32,24,.72)
        ),
        url("../images/contact-banner.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.contact-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.25),
        rgba(0,0,0,.08)
    );

}

.contact-banner .container{

    position:relative;

    z-index:2;

}

.contact-banner .page-banner-content{

    max-width:680px;

}

.contact-banner .section-subtitle{

    color:#d9f2c8;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.contact-banner h1{

    color:#ffffff;

    font-size:3.8rem;

    font-weight:800;

    line-height:1.15;

    margin-bottom:24px;

}

.contact-banner p{

    color:rgba(255,255,255,.92);

    font-size:1.1rem;

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;

}

.contact-banner .btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

}


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

@media(max-width:991px){

    .contact-banner{

        min-height:470px;

    }

    .contact-banner h1{

        font-size:3rem;

    }

}

@media(max-width:767px){

    .contact-banner{

        min-height:420px;

        text-align:center;

    }

    .contact-banner .page-banner-content{

        max-width:100%;

    }

    .contact-banner h1{

        font-size:2.3rem;

    }

    .contact-banner p{

        font-size:1rem;

    }

}