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

body{
    font-family: "Lato", sans-serif;
}

.main-header{

position:absolute;
width:100%;
top:0;
left:0;
z-index:999;
background:rgba(0,30,22,.92);

}

.navbar{

padding:18px 0;

}

.navbar-brand img{

height:48px;

}

.navbar-nav{

gap:18px;

}

.nav-link{

color:#fff;
font-size:13px;
font-weight:600;
letter-spacing:.5px;
position:relative;
padding:15px 0!important;

}

.nav-link:hover{

color:#9ee900;

}

.nav-link.active{

color:#9ee900 !important;

}

.nav-link.active::after{

content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:2px;
background:#9ee900;

}

/* Hamburger */

.navbar-toggler{

width:40px;
height:40px;
display:none;
position:relative;
z-index:1002;

}

.navbar-toggler span{

display:block;
width:28px;
height:2px;
background:#fff;
margin:6px auto;
transition:.4s;

}

.navbar-toggler.active span:nth-child(1){

transform:translateY(8px) rotate(45deg);

}

.navbar-toggler.active span:nth-child(2){

opacity:0;

}

.navbar-toggler.active span:nth-child(3){

transform:translateY(-8px) rotate(-45deg);

}

/* Mobile */

@media(max-width:991px){

.navbar-toggler{

display:block;

}

.mobile-menu{

position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:#021c15;
transition:.4s;
display:flex;
align-items:center;
justify-content:center;
z-index:1000;

}

.mobile-menu.active{

left:0;

}

.navbar-nav{

flex-direction:column;
gap:12px;
text-align:center;

}

.nav-link{

font-size:20px;

}

}

@media(min-width:992px){

.mobile-menu{

display:block!important;

}

}














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

.hero-section{
    position: relative;
    background: linear-gradient(90deg,#05261d 0%,#0b3528 45%,#184b37 100%);
    overflow: hidden;
    padding:140px 0 60px;
}

.hero-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(122,191,67,.12);
    border-radius:50%;
    right:-250px;
    top:-150px;
    filter:blur(100px);
}

.hero-row{
    min-height:80vh;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    color:#7ac043;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
    font-size:14px;
}

.hero-content h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
    line-height:1;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#7ac043;
}

.hero-content h4{
    color:#fff;
    font-size:34px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content p{
    color:#d6d6d6;
    font-size:17px;
    line-height:32px;
    margin-bottom:35px;
    max-width:520px;
}

.hero-btn{
    background:#7ac043;
    color:#fff;
    padding:16px 38px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
    display:inline-flex;
    align-items:center;
    gap:12px;
}

.hero-btn:hover{
    background:#fff;
    color:#05261d;
    transform:translateY(-5px);
}

.hero-image{
    text-align:right;
    position:relative;
}

.hero-image img{
    width:100%;
    max-width:760px;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/*==========================
      FEATURE BOXES
==========================*/

.hero-features{
    margin-top:70px;
}

.feature-box{

display:flex;
align-items:center;
gap:18px;

padding:0px;



border-radius:15px;


transition:.4s;

height:100%;
}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-icon{

width:70px;
height:70px;

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

background:#7ac043;

border-radius:15px;

font-size:26px;

color:#fff;

flex-shrink:0;

}

.feature-box h5{

color:#fff;
font-weight:700;
margin-bottom:8px;

}

.feature-box p{

margin:0;
color:#d9d9d9;
line-height:24px;
font-size:15px;

}





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

@media(max-width:991px){

    .hero-section{
    
    padding-top:110px;
    padding-bottom:50px;
    
    }
    
    .hero-row{
    
    min-height:auto;
    
    }
    
    .hero-content{
    
    text-align:center;
    
    }
    
    .hero-subtitle{
    
    font-size:13px;
    
    }
    
    .hero-content h1{
    
    font-size:46px;
    line-height:1.1;
    
    }
    
    .hero-content h4{
    
    font-size:24px;
    
    }
    
    .hero-content p{
    
    margin:auto;
    margin-bottom:30px;
    
    font-size:15px;
    line-height:28px;
    
    }
    
    .hero-btn{
    
    width:100%;
    justify-content:center;
    
    }
    
    .hero-image{
    
    margin-top:45px;
    text-align:center;
    
    }
    
    .hero-image img{
    
    max-width:100%;
    border-radius:18px;
    
    }
    
    .hero-features{
    
    margin-top:45px;
    
    }
    
    .feature-box{
    
    padding:20px;
    
    }
    
    }
    
    @media(max-width:576px){
    
    .hero-content h1{
    
    font-size:38px;
    
    }
    
    .hero-content h4{
    
    font-size:20px;
    
    }
    
    .hero-content p{
    
    font-size:14px;
    
    }
    
    .feature-icon{
    
    width:60px;
    height:60px;
    
    font-size:22px;
    
    }
    
    .feature-box h5{
    
    font-size:18px;
    
    }
    
    }








    /*==============================
        ABOUT SECTION
==============================*/

.about-section{
    padding:90px 0;
    background:#fff;
}

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

/* Play Button */

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#4CAF50;
    font-size:32px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    transition:.3s;
}

.play-btn:hover{
    background:#4CAF50;
    color:#fff;
}

.play-btn::before{
    content:"";
    position:absolute;
    inset:-12px;
    border:2px solid rgba(255,255,255,.6);
    border-radius:50%;
    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
opacity:1;
}

100%{
transform:scale(1.4);
opacity:0;
}

}

/* Right Content */

.section-subtitle{
    color:#6BAF2D;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#132128;
    line-height:1.15;
    margin:15px 0 20px;
}

.section-text{
    color:#666;
    font-size:17px;
    line-height:30px;
    margin-bottom:15px;
}

/* Stats */

.stats-row{
    margin:35px 0;
    border:1px solid #e8e8e8;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.stat-box{
    text-align:center;
    padding:15px 15px;
    background:#fff;
    transition:.3s;
    height:100%;
}

.stat-box:hover{
    background:#f8fff2;
}

.stat-box i{
    color:#6BAF2D;
    font-size:28px;
    margin-bottom:12px;
}

.stat-box h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:5px;
    color:#132128;
}

.stat-box p{
    margin:0;
    font-size:14px;
    color:#777;
}

/* Divider */

.stats-row .col-4:not(:last-child){
    border-right:1px solid #ececec;
}

/* Button */

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:16px 34px;
    background:#06251c;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    background:#6BAF2D;
    color:#fff;
    transform:translateY(-3px);
}





/*=========================================
        ABOUT SECTION RESPONSIVE
==========================================*/

@media (max-width:991.98px){

    .about-section{
        padding:70px 0;
    }
    
    /* Image First */
    
    .about-image{
        margin-bottom:40px;
    }
    
    /* Reduce Image Height */
    
    .about-image img{
        height:380px;
        object-fit:cover;
    }
    
    /* Play Button */
    
    .play-btn{
        width:75px;
        height:75px;
        font-size:26px;
    }
    
    /* Text Center */
    
    .section-subtitle{
        display:block;
        text-align:center;
    }
    
    .section-title{
        font-size:38px;
        text-align:center;
    }
    
    .section-text{
        text-align:center;
        font-size:16px;
        line-height:28px;
    }
    
    /* Stats */
    
    .stats-row{
        margin-top:30px;
    }
    
    .stat-box{
        padding:25px 15px;
    }
    
    .stat-box h3{
        font-size:28px;
    }
    
    .stat-box p{
        font-size:13px;
    }
    
    /* Button */
    
    .about-btn{
    
    width:100%;
    justify-content:center;
    margin-top:10px;
    
    }
    
    }
    
    
    @media (max-width:767.98px){
    
    .about-section{
        padding:60px 0;
    }
    
    .about-image img{
    
    height:280px;
    
    }
    
    .play-btn{
    
    width:65px;
    height:65px;
    font-size:22px;
    
    }
    
    .section-title{
    
    font-size:30px;
    line-height:1.3;
    
    }
    
    .section-text{
    
    font-size:15px;
    line-height:26px;
    
    }
    
    /* Stats Vertical */
    
    .stats-row{
    
    border:none;
    box-shadow:none;
    margin-top:25px;
    
    }
    
    .stats-row .col-4{
    
    width:100%;
    margin-bottom:15px;
    
    }
    
    .stats-row .col-4:not(:last-child){
    
    border-right:none;
    
    }
    
    .stat-box{
    
    border:1px solid #ececec;
    border-radius:12px;
    
    }
    
    .about-btn{
    
    padding:15px 25px;
    font-size:15px;
    
    }
    
    }
    
    
    @media (max-width:575.98px){
    
    .about-image img{
    
    height:240px;
    
    }
    
    .section-title{
    
    font-size:27px;
    
    }
    
    .play-btn{
    
    width:60px;
    height:60px;
    font-size:20px;
    
    }
    
    .stat-box h3{
    
    font-size:26px;
    
    }
    
    }



    .stats-row{

        overflow:hidden;
        border-radius:16px;
        }
        
        .stat-box{
        
        position:relative;
        
        }
        
        .stat-box::after{
        
        content:"";
        position:absolute;
        
        right:0;
        top:50%;
        
        transform:translateY(-50%);
        
        width:1px;
        height:55%;
        
        background:#e8e8e8;
        
        }
        
        .stats-row .col-4:last-child .stat-box::after{
        
        display:none;
        
        }
        
        @media(max-width:767px){
        
        .stat-box::after{
        
        display:none;
        
        }
        
        }


        .about-image,
.about-content{

height:100%;

}

.about-image img{

height:100%;
width:100%;

object-fit:cover;

border-radius:20px;

}

.about-content{

display:flex;

flex-direction:column;

justify-content:center;

}






/*=====================================
        PRODUCTS SECTION
======================================*/

.products-section{
    padding:90px 0;
    background:#fff;
}

.section-subtitle{
    display:block;
    color:#6dbb2d;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#111;
    margin-bottom:0;
}

/*========================*/

.product-card{

    position:relative;
    height:470px;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    transition:.4s;

}

.product-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.08);

}

/* Overlay */

.product-overlay{

    position:absolute;

    left:0;
    right:0;
    top:0;
    bottom:0;

    background:linear-gradient(to top,

    rgba(0,25,18,.96) 15%,

    rgba(0,25,18,.75) 40%,

    rgba(0,0,0,.15) 70%,

    transparent 100%

    );

}

/* Content */

.product-content{

    position:absolute;

    left:28px;
    right:28px;
    bottom:28px;

    z-index:2;

}

.product-content h4{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:12px;

}

.product-content p{

    color:#d9d9d9;

    line-height:28px;

    font-size:16px;

    margin-bottom:28px;

    max-width:220px;

}

/* Green Button */

.arrow-btn{

    width:54px;
    height:54px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#7CC242;

    color:#fff;

    text-decoration:none;

    position:absolute;

    right:0;
    bottom:5px;

    transition:.35s;

}

.arrow-btn i{

    transition:.35s;

}

.product-card:hover .arrow-btn{

    background:#fff;

    color:#05261d;

}

.product-card:hover .arrow-btn i{

    transform:translateX(4px);

}

/* Card Hover */

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

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

@media(max-width:991px){

.products-section{

padding:70px 0;

}

.section-title{

font-size:40px;

}

.product-card{

height:420px;

}

}

@media(max-width:767px){

.section-title{

font-size:34px;

}

.product-card{

height:380px;

}

.product-content{

left:22px;
right:22px;
bottom:22px;

}

.product-content h4{

font-size:24px;

}

.product-content p{

font-size:15px;
line-height:24px;

}

.arrow-btn{

width:48px;
height:48px;

}

}

@media(max-width:576px){

.products-section{

padding:60px 0;

}

.section-title{

font-size:30px;

}

.product-card{

height:340px;

}

.product-content h4{

font-size:22px;

}

.product-content p{

font-size:14px;

}

}






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

.partner-section{

    position:relative;

    padding:90px 0;

    background:url("../img/partner-bg.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.partner-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(2,22,18,.92) 0%,
        rgba(2,22,18,.82) 35%,
        rgba(2,22,18,.45) 65%,
        rgba(2,22,18,.25) 100%
    );

}

/*==============================
        LEFT CONTENT
==============================*/

.partner-content{

    position:relative;
    z-index:2;

}

.partner-subtitle{

    display:block;

    color:#79c143;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:10px;

    text-transform:uppercase;

}

.partner-content h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;

}

.partner-content p{

    color:#d8d8d8;

    font-size:17px;

    line-height:30px;

    max-width:500px;

    margin-bottom:35px;

}

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

.partner-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:#79c143;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    border-radius:8px;

    transition:.35s;

}

.partner-btn:hover{

    background:#fff;

    color:#032219;

    transform:translateY(-4px);

}

/*==============================
        FEATURES
==============================*/

.partner-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    align-items:center;

    height:100%;

}

.partner-item{

    display:flex;

    align-items:center;

    gap:15px;

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

    backdrop-filter:blur(12px);

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

    border-radius:12px;

    padding:18px 16px;

    transition:.35s;

}

.partner-item:hover{

    transform:translateY(-6px);

    background:rgba(121,193,67,.20);

}

.partner-icon{

    width:58px;

    height:58px;

    border-radius:12px;

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

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    color:#fff;

    font-size:24px;

}

.partner-item h5{

    color:#fff;

    font-size:17px;

    font-weight:700;

    margin-bottom:2px;

}

.partner-item span{

    color:#d9d9d9;

    font-size:14px;

}

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

.partner-item:hover .partner-icon{

    background:#79c143;

    border-color:#79c143;

}




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

@media (max-width:1199px){

    .partner-content h2{
        font-size:40px;
    }
    
    .partner-features{
        grid-template-columns:repeat(2,1fr);
    }
    
    .partner-item{
        padding:16px;
    }
    
    }
    
    
    @media (max-width:991.98px){
    
    .partner-section{
    
        padding:70px 0;
    
    }
    
    .partner-content{
    
        text-align:center;
    
        margin-bottom:45px;
    
    }
    
    .partner-content p{
    
        margin:0 auto 30px;
    
    }
    
    .partner-btn{
    
        width:100%;
        justify-content:center;
    
    }
    
    .partner-features{
    
        grid-template-columns:repeat(2,1fr);
    
        gap:20px;
    
    }
    
    .partner-item{
    
        min-height:110px;
    
    }
    
    }
    
    
    @media (max-width:767.98px){
    
    .partner-section{
    
        padding:60px 0;
    
    }
    
    .partner-content h2{
    
        font-size:32px;
    
    }
    
    .partner-content p{
    
        font-size:15px;
        line-height:28px;
    
    }
    
    .partner-features{
    
        grid-template-columns:1fr;
    
        gap:16px;
    
    }
    
    .partner-item{
    
        padding:18px;
    
    }
    
    .partner-icon{
    
        width:55px;
        height:55px;
    
        font-size:22px;
    
    }
    
    .partner-item h5{
    
        font-size:16px;
    
    }
    
    .partner-item span{
    
        font-size:13px;
    
    }
    
    }
    
    
    @media (max-width:575px){
    
    .partner-content h2{
    
        font-size:28px;
    
    }
    
    .partner-content p{
    
        font-size:14px;
        line-height:26px;
    
    }
    
    .partner-btn{
    
        padding:14px 20px;
        font-size:15px;
    
    }
    
    .partner-icon{
    
        width:50px;
        height:50px;
    
        font-size:20px;
    
    }
    
    }














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

.footer-section{

    background:linear-gradient(135deg,#031b17,#06251f);

    padding:80px 0 0;

    position:relative;

    overflow:hidden;

}

.footer-section::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:rgba(110,185,55,.08);

    border-radius:50%;

    top:-180px;
    left:-150px;

    filter:blur(80px);

}

.footer-box{

    position:relative;
    z-index:2;

}

.footer-logo{

    max-width:170px;

    margin-bottom:25px;

}

.footer-about{

    color:#c7d1cd;

    line-height:30px;

    font-size:16px;

    margin-bottom:30px;

}

/*=====================
      HEADING
======================*/

.footer-box h4{

    color:#fff;

    font-size:20px;

    font-weight:700;

    margin-bottom:28px;

    text-transform:uppercase;

}

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

.footer-box ul{

    padding:0;
    margin:0;

    list-style:none;

}

.footer-box ul li{

    margin-bottom:14px;

}

.footer-box ul li a{

    color:#d3d3d3;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#78c043;

    padding-left:6px;

}

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

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:46px;
    height:46px;

    border-radius:50%;

    border:1px solid #78c043;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#78c043;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#78c043;

    color:#fff;

    transform:translateY(-5px);

}

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

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

    color:#d4d4d4;

}

.footer-contact i{

    color:#78c043;

    font-size:20px;

    width:22px;

    margin-top:3px;

}

/*=====================
      NEWSLETTER
======================*/

.newsletter-text{

    color:#cfcfcf;

    line-height:28px;

    margin-bottom:25px;

}

.newsletter-form{

    display:flex;

    overflow:hidden;

    border-radius:8px;

}

.newsletter-form input{

    flex:1;

    height:52px;

    background:transparent;

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

    border-right:none;

    padding:0 18px;

    color:#fff;

    outline:none;

}

.newsletter-form input::placeholder{

    color:#999;

}

.newsletter-form button{

    width:58px;

    border:none;

    background:#78c043;

    color:#fff;

    transition:.3s;

}

.newsletter-form button:hover{

    background:#5da52d;

}

/*=====================
      COLUMN DIVIDER
======================*/

.footer-box{

    border-right:1px solid rgba(255,255,255,.08);

    padding-right:30px;

    min-height:260px;

}

.footer-section .col-lg-3:last-child .footer-box{

    border-right:none;

}

.footer-section .col-lg-2:last-child .footer-box{

    border-right:none;

}

/*=====================
      BOTTOM
======================*/

.footer-bottom{

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

    margin-top:55px;

    padding:22px 0;

}

.footer-bottom p{

    margin:0;

    color:#bcbcbc;

}

.footer-bottom a{

    color:#d6d6d6;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#78c043;

}

.footer-bottom span{

    margin:0 12px;

    color:#777;

}



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

@media (max-width:1199.98px){

    .footer-box{
        min-height:auto;
        padding-right:20px;
    }
    
    .footer-box h4{
        font-size:18px;
    }
    
    }
    
    
    /*==========================
            TABLET
    ===========================*/
    
    @media (max-width:991.98px){
    
    .footer-section{
    
        padding:70px 0 0;
    
    }
    
    .footer-box{
    
        border-right:none;
    
        border-bottom:1px solid rgba(255,255,255,.08);
    
        padding-right:0;
    
        padding-bottom:30px;
    
        margin-bottom:10px;
    
        min-height:auto;
    
    }
    
    .footer-logo{
    
        max-width:160px;
    
    }
    
    .footer-about{
    
        max-width:500px;
    
    }
    
    .footer-social{
    
        margin-top:20px;
    
    }
    
    .footer-bottom{
    
        margin-top:35px;
    
    }
    
    .footer-bottom .row{
    
        text-align:center;
    
    }
    
    .footer-bottom .text-md-end{
    
        text-align:center !important;
    
        margin-top:15px;
    
    }
    
    }
    
    
    /*==========================
            MOBILE
    ===========================*/
    
    @media (max-width:767.98px){
    
    .footer-section{
    
        padding:60px 0 0;
    
    }
    
    .footer-box{
    
        text-align:center;
    
    }
    
    .footer-logo{
    
        margin:0 auto 25px;
    
        display:block;
    
    }
    
    .footer-about{
    
        font-size:15px;
    
        line-height:28px;
    
    }
    
    .footer-social{
    
        justify-content:center;
    
    }
    
    .footer-box ul{
    
        text-align:center;
    
    }
    
    .footer-box ul li{
    
        margin-bottom:12px;
    
    }
    
    .footer-contact li{
    
        justify-content:center;
    
        text-align:left;
    
    }
    
    .newsletter-form{
    
        margin-top:20px;
    
    }
    
    .newsletter-form input{
    
        height:50px;
    
    }
    
    .newsletter-form button{
    
        width:55px;
    
    }
    
    .footer-bottom{
    
        padding:20px 0;
    
    }
    
    .footer-bottom p{
    
        font-size:14px;
    
        margin-bottom:10px;
    
    }
    
    .footer-bottom a{
    
        font-size:14px;
    
    }
    
    }
    
    
    /*==========================
            SMALL MOBILE
    ===========================*/
    
    @media (max-width:575.98px){
    
    .footer-section{
    
        padding:50px 0 0;
    
    }
    
    .footer-box h4{
    
        font-size:18px;
    
    }
    
    .footer-about{
    
        font-size:14px;
    
    }
    
    .footer-social{
    
        gap:10px;
    
    }
    
    .footer-social a{
    
        width:42px;
    
        height:42px;
    
        font-size:15px;
    
    }
    
    .newsletter-form{
    
        flex-direction:column;
    
        border-radius:10px;
    
        overflow:visible;
    
    }
    
    .newsletter-form input{
    
        width:100%;
    
        border:1px solid rgba(255,255,255,.15);
    
        border-radius:8px;
    
        margin-bottom:12px;
    
    }
    
    .newsletter-form button{
    
        width:100%;
    
        height:50px;
    
        border-radius:8px;
    
    }
    
    .footer-bottom span{
    
        display:none;
    
    }
    
    .footer-bottom a{
    
        display:block;
    
        margin:8px 0;
    
    }
    
    }