/* Updated CSS - Close button only for mobile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #237223;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 70px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    flex-wrap: wrap;
}

.top-contact i {
    margin-right: 10px;
    font-size: 18px;
}

/* HEADER */
.main-header {
    background: #f4f4f4;
    min-height: 118px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 105px;
    width: auto;
}

/* DESKTOP MENU */
.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-left: 55px;
}

.menu li a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.menu li a.active,
.menu li a:hover {
    color: #f26522;
}

/* HAMBURGER BUTTON - Hidden on Desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger i {
    font-size: 28px;
    color: #237223;
}

/* Mobile Menu Styles - Only active below 992px */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #237223;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 30px;
    }

    .menu.active {
        right: 0;
    }

    .menu li {
        margin-left: 0;
    }

    .menu li a {
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }

    .menu li a.active,
    .menu li a:hover {
        color: #f9a825;
    }

    /* Close button inside menu - only appears on mobile */
    .menu .close-menu {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        background: none;
        border: none;
    }

    /* Overlay background when menu open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .menu-overlay.active {
        display: block;
    }
}

/* Tablet and Mobile Responsive */
@media (max-width: 768px) {
    .top-bar {
        min-height: auto;
        padding: 12px 0;
    }

    .top-contact {
        gap: 25px;
        font-size: 13px;
        justify-content: center;
    }

    .top-contact i {
        font-size: 14px;
    }

    .main-header {
        min-height: 80px;
    }

    .logo img {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .top-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .logo img {
        height: 55px;
    }

    .hamburger i {
        font-size: 24px;
    }

    .menu {
        width: 100%;
    }
}
/* ==========================
   HERO SECTION
========================== */

.hero-banner{
    position:relative;
    height:650px;
    overflow:hidden;
}

.heroSwiper{
    width:100%;
    height:100%;
}

.heroSwiper .swiper-slide {
    width:100%;
    height:100%;
}

.heroSwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: center center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:3;
    text-align:center;
    color:#fff;
    width:90%;
    max-width:1000px;
}

.hero-subtitle{
    display:block;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:25px;
    letter-spacing:2px;
}

.hero-content h1{
    font-family:Georgia, serif;
    font-size:68px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    max-width:850px;
    margin:auto;
}

.hero-btns{
    margin-top:40px;
}

.btn-shop{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:58px;
    background:#f36f32;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    margin-right:15px;
    transition:.3s;
}

.btn-shop:hover{
    background:#e45d22;
    color:#fff;
}

.btn-contact{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:58px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-contact:hover{
    background:#fff;
    color:#000;
}

.hero-bottom-shape{
    position:absolute;
    bottom:-2px;
    left:0;
    width:100%;
    z-index:5;
}

.hero-bottom-shape img{
    width:100%;
    display:block;
}

/* ==========================
   RESPONSIVE
========================== */

/* Tablet Landscape */
@media(max-width:1199px){
    .hero-banner{
        height:600px;
    }

    .hero-content h1{
        font-size:55px;
    }
}

/* Tablet Portrait */
@media(max-width:991px){
    .hero-banner{
        height:550px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }
    
    .hero-subtitle{
        font-size:16px;
    }
}

/* Mobile Landscape */
@media(max-width:767px){
    .hero-banner{
        height:auto;
        min-height:500px;
    }
    
    .heroSwiper {
        height:100%;
        min-height:500px;
    }
    
    .heroSwiper img {
        object-fit:cover;
        object-position: center 30%;
    }

    .hero-subtitle{
        font-size:13px;
        letter-spacing:1.5px;
        margin-bottom:15px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.6;
        padding:0 10px;
    }

    .hero-btns{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:25px;
    }

    .btn-shop,
    .btn-contact{
        width:200px;
        height:50px;
        margin:0;
        font-size:14px;
    }
}

/* Mobile Portrait */
@media(max-width:480px){
    .hero-banner{
        min-height:450px;
    }
    
    .heroSwiper {
        min-height:450px;
    }
    
    .heroSwiper img {
        object-fit:fill;
        object-position: center 40%;
    }

    .hero-content{
        width:95%;
        padding:0 15px;
    }

    .hero-subtitle{
        font-size:11px;
        letter-spacing:1px;
        margin-bottom:12px;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:13px;
        line-height:1.5;
    }

    .btn-shop,
    .btn-contact{
        width:180px;
        height:45px;
        font-size:13px;
    }
}

/* Small Mobile */
@media(max-width:375px){
    .hero-banner{
        min-height:400px;
    }
    
    .heroSwiper {
        min-height:400px;
    }

    .hero-content h1{
        font-size:22px;
    }

    .hero-content p{
        font-size:12px;
    }

    .btn-shop,
    .btn-contact{
        width:160px;
        height:42px;
        font-size:12px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    background:#f5f5f5;
    padding:90px 0;
}

.about-row{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-left{
    flex:1;
}

.about-right{
    flex:1;
    position:relative;
}

.about-right img{
    width:100%;
    display:block;
    height:560px;
    object-fit:cover;
}

/* Tag */

.section-tag{
    display:block;
    font-size:18px;
    color:#000;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:25px;
}

/* Heading */

.about-left h2{
    font-size:52px;
    line-height:1.25;
    color:#2d6b2f;
    font-family:Georgia, serif;
    font-weight:500;
    margin-bottom:35px;
}

/* Paragraph */

.about-left p{
    font-size:18px;
    line-height:1.9;
    color:#333;
    margin-bottom:25px;
}

/* Features */

.about-features{
    display:flex;
    gap:70px;
    margin-top:40px;
    margin-bottom:45px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-box i{
    font-size:45px;
    color:#f36f32;
}

.feature-box h4{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.feature-box span{
    font-size:20px;
    font-weight:700;
}

/* Button */

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:160px;
    height:55px;
    background:#f36f32;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    background:#df5f25;
    color:#fff;
}

/* Floating Box */

.industry-box{
    position:absolute;
    right:-20px;
    bottom:-40px;

    background:#2d6b2f;
    color:#fff;

    padding:28px 35px;

    font-size:32px;
    line-height:1.4;

    max-width:320px;

    font-family:Georgia, serif;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-row{
        flex-direction:column;
    }

    .about-left h2{
        font-size:40px;
    }

    .industry-box{
        right:20px;
        bottom:20px;
        font-size:24px;
    }
}

@media(max-width:767px){

    .about-section{
        padding:70px 0;
    }

    .about-left h2{
        font-size:32px;
    }

    .about-left p{
        font-size:16px;
    }

    .about-features{
        flex-direction:column;
        gap:25px;
    }

    .about-right img{
        height:auto;
    }

    .industry-box{
        position:relative;
        right:auto;
        bottom:auto;
        max-width:100%;
        font-size:22px;
    }
}
/* ====================================
   OFFER SECTION
==================================== */

.offer-section{
    position:relative;
    background:#f5f5f5;
    padding-top:22px;
    overflow:hidden;
}

/* ==========================
   TOP CALL BOX
========================== */

.offer-call-box{
    width:73%;
    height:150px;
    margin-left:auto;
    margin-right:0;
    background:#efefef;
    display:flex;
    align-items:center;
    padding:0 50px;
    position:relative;
    z-index:20;
}

.offer-call-box:before{
    content:"";
    position:absolute;
    left:-90px;
    top:0;
    width:0;
    height:0;
    border-top:150px solid transparent;
    border-right:90px solid #efefef;
}

.offer-call-icon{
    width:118px;
    height:118px;
    background:#f8f8f8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:30px;
    flex-shrink:0;
}

.offer-call-icon i{
    font-size:52px;
    color:#000;
}

.offer-call-content h3{
    margin:0;
    font-size:24px;
    font-family:Georgia, serif;
    color:#2d6b2f;
    font-weight:400;
}

.offer-call-content span{
    display:block;
    margin-top:10px;
    font-size:18px;
    color:#f26c35;
    font-weight:600;
}

/* ==========================
   MAIN AREA
========================== */

.offer-area{
    position:relative;
    height:400px;
    margin-top:-40px;
    background:#ef6b35;
}

/* dotted line */
.offer-area:before{
    content:"";
    position:absolute;
    left:0;
    top:120px;
    width:100%;
    border-top:6px dotted rgba(255,255,255,.30);
    z-index:1;
}

/* image */
.offer-image{
    position:absolute;
    right:0;
    top:0;
    width:68%;
    height:100%;
    background:url('https://www.ulamart.com/blog/wp-content/uploads/2026/03/ulamart-blog-1-1-1-1-1-1-1.png') center center no-repeat;
    background-size:cover;
}

/* green shape */
.offer-content{
    position:absolute;
    left:0;
    bottom:0;
    width:56%;
    height:315px;
    background:#2d6b2f;
    color:#fff;
    padding:55px 95px;
    z-index:5;
    clip-path:polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.offer-content h2{
    font-family:Georgia, serif;
    font-size:26px;
    line-height:1.45;
    font-weight:400;
    margin-bottom:25px;
}

.offer-content p{
    font-size:14px;
    line-height:1.9;
    margin-bottom:30px;
}

.offer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:150px;
    height:50px;
    background:#f5f5f5;
    color:#ef6b35;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.offer-btn:hover{
    background:#fff;
    color:#ef6b35;
}

/* ==========================
   TABLET (992px - 768px)
========================== */

@media(max-width:992px){
    .offer-call-box{
        width:85%;
        padding:0 30px;
    }
    
    .offer-call-icon{
        width:90px;
        height:90px;
    }
    
    .offer-call-icon i{
        font-size:40px;
    }
    
    .offer-call-content h3{
        font-size:20px;
    }
    
    .offer-call-content span{
        font-size:16px;
    }
    
    .offer-content{
        width:60%;
        padding:40px 50px;
    }
    
    .offer-content h2{
        font-size:22px;
    }
}

/* ==========================
   MOBILE LANDSCAPE (767px - 576px)
========================== */

@media(max-width:768px){
    .offer-section{
        padding-top:0;
    }
    
    /* Top Call Box - Full Width on Mobile */
    .offer-call-box{
        width:100%;
        height:auto;
        margin-left:0;
        padding:25px 20px;
        flex-direction:row;
        justify-content:center;
        border-radius:0;
    }
    
    .offer-call-box:before{
        display:none;
    }
    
    .offer-call-icon{
        width:70px;
        height:70px;
        margin-right:20px;
        margin-bottom:0;
    }
    
    .offer-call-icon i{
        font-size:32px;
    }
    
    .offer-call-content{
        text-align:left;
    }
    
    .offer-call-content h3{
        font-size:18px;
    }
    
    .offer-call-content span{
        font-size:16px;
        margin-top:5px;
    }
    
    /* Main Area */
    .offer-area{
        height:auto;
        margin-top:0;
        display:flex;
        flex-direction:column;
    }
    
    /* Image - Moves to Top */
    .offer-image{
        position:relative;
        width:100%;
        height:280px;
        order:1;
    }
    
    /* Dotted Line - Hidden on Mobile */
    .offer-area:before{
        display:none;
    }
    
    /* Content - Moves Below Image */
    .offer-content{
        position:relative;
        width:100%;
        height:auto;
        clip-path:none;
        padding:35px 25px;
        order:2;
        text-align:center;
    }
    
    .offer-content h2{
        font-size:22px;
        margin-bottom:15px;
    }
    
    .offer-content p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:25px;
    }
    
    .offer-btn{
        width:180px;
        height:48px;
        font-size:13px;
    }
}

/* ==========================
   MOBILE PORTRAIT (575px and below)
========================== */

@media(max-width:575px){
    .offer-call-box{
        flex-direction:column;
        text-align:center;
        padding:20px 15px;
    }
    
    .offer-call-icon{
        margin-right:0;
        margin-bottom:15px;
    }
    
    .offer-call-content{
        text-align:center;
    }
    
    .offer-call-content h3{
        font-size:16px;
    }
    
    .offer-call-content span{
        font-size:14px;
    }
    
    .offer-image{
        height:220px;
    }
    
    .offer-content{
        padding:30px 20px;
    }
    
    .offer-content h2{
        font-size:20px;
        line-height:1.4;
    }
    
    .offer-content p{
        font-size:13px;
        line-height:1.6;
    }
    
    .offer-btn{
        width:160px;
        height:44px;
        font-size:12px;
    }
}

/* ==========================
   SMALL MOBILE (375px and below)
========================== */

@media(max-width:375px){
    .offer-call-icon{
        width:55px;
        height:55px;
    }
    
    .offer-call-icon i{
        font-size:26px;
    }
    
    .offer-call-content h3{
        font-size:14px;
    }
    
    .offer-call-content span{
        font-size:13px;
    }
    
    .offer-image{
        height:180px;
    }
    
    .offer-content h2{
        font-size:18px;
    }
    
    .offer-content p{
        font-size:12px;
    }
    
    .offer-btn{
        width:140px;
        height:40px;
        font-size:11px;
    }
}
/* ==========================
   VALUES SECTION
========================== */

.values-section{
    padding:90px 0;
    background:#f8f8f8 url('images/spice-pattern.png') center center repeat;
    background-size:cover;
}

/* Heading */
.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-family:Georgia, serif;
    color:#2d6b2f;
    font-size:28px;
    font-weight:400;
    margin-bottom:20px;
}

.section-heading p{
    max-width:850px;
    margin:auto;
    font-size:16px;
    color:#000;
    line-height:1.8;
}

/* Values */
.values-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.value-box{
    flex:1;
    text-align:center;
}

.value-box img{
    width:85px;
    height:85px;
    object-fit:contain;
    margin-bottom:25px;
}

.value-box h4{
    font-size:18px;
    font-weight:700;
    color:#000;
    margin:0;
}

/* Tablet */
@media(max-width:991px){
    .values-row{
        flex-wrap:wrap;
        justify-content:center;
        gap:30px;
    }

    .value-box{
        width:33.33%;
        flex:none;
        margin-bottom:0;
    }
}

/* Mobile - 2 values per row */
@media(max-width:768px){
    .values-section{
        padding:70px 0;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .section-heading p{
        font-size:15px;
    }

    .values-row{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:35px 20px;
        justify-items:center;
        align-items:center;
    }

    .value-box{
        width:100%;
        flex:none;
        margin-bottom:0;
    }

    .value-box img{
        width:70px;
        height:70px;
        margin-bottom:15px;
    }

    .value-box h4{
        font-size:15px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .values-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:22px;
    }

    .section-heading p{
        font-size:14px;
    }

    .values-row{
        gap:30px 15px;
    }

    .value-box img{
        width:60px;
        height:60px;
        margin-bottom:12px;
    }

    .value-box h4{
        font-size:14px;
    }
}

/* Extra Small Mobile */
@media(max-width:375px){
    .values-row{
        gap:25px 12px;
    }

    .value-box img{
        width:55px;
        height:55px;
    }

    .value-box h4{
        font-size:13px;
    }
}
/* ====================================
   PRODUCTS SECTION
==================================== */

.products-section{
    padding:50px 0;
    background:#f5f5f5;
}

.products-heading{
    text-align:center;
    margin-bottom:55px;
}

.products-heading span{
    display:block;
    font-size:20px;
    text-transform:uppercase;
    color:#000;
    margin-bottom:18px;
    letter-spacing:1px;
}

.products-heading h2{
    font-family:Georgia, serif;
    color:#2d6b2f;
    font-size:34px;
    font-weight:400;
    margin-bottom:25px;
}

.products-heading p{
    max-width:900px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
}

/* Product Card */

.product-box{
    background:#fff;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
    height:100%;
}

.product-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.product-box img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.product-title-link{
    text-decoration:none;
    display:block;
}

.product-title{
    background:#2d6b2f;
    color:#fff;
    text-align:center;
    padding:16px 10px;
    font-family:Georgia, serif;
    font-size:18px;
    font-weight:700;
    transition:background 0.3s ease;
    cursor:pointer;
}

.product-title-link:hover .product-title{
    background:#f36f32;
}

.product-box:hover img{
    transform:scale(1.08);
}

/* View All Button */
.view-all-wrapper{
    text-align:center;
    margin-top:50px;
}

.view-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:#2d6b2f;
    color:#fff;
    padding:14px 35px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    border-radius:40px;
    transition:all 0.3s ease;
    border:2px solid #2d6b2f;
}

.view-all-btn i{
    transition:transform 0.3s ease;
}

.view-all-btn:hover{
    background:#f36f32;
    border-color:#f36f32;
    color:#fff;
    transform:translateY(-3px);
}

.view-all-btn:hover i{
    transform:translateX(5px);
}

/* Tablet */
@media(max-width:991px){
    .products-heading h2{
        font-size:28px;
    }
    
    .view-all-btn{
        padding:12px 30px;
        font-size:15px;
    }
    
    .product-box img{
        height:160px;
    }
    
    .product-title{
        font-size:16px;
        padding:14px 10px;
    }
}

/* Mobile - 2 columns */
@media(max-width:767px){
    .products-section{
        padding:40px 0;
    }

    .products-heading span{
        font-size:16px;
    }

    .products-heading h2{
        font-size:24px;
    }

    .products-heading p{
        font-size:15px;
    }
    
    .products-heading{
        margin-bottom:35px;
    }

    .product-box img{
        height:140px;
    }
    
    .product-title{
        font-size:14px;
        padding:12px 8px;
    }
    
    .view-all-wrapper{
        margin-top:35px;
    }
    
    .view-all-btn{
        padding:10px 25px;
        font-size:13px;
    }
    
    /* Ensure 2 columns on mobile */
    .row.g-4 {
        --bs-gutter-y: 1.5rem;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .products-section{
        padding:30px 0;
    }
    
    .products-heading h2{
        font-size:20px;
    }
    
    .products-heading p{
        font-size:13px;
    }
    
    .product-box img{
        height:120px;
    }
    
    .product-title{
        font-size:13px;
        padding:10px 6px;
    }
    
    .view-all-btn{
        padding:8px 20px;
        font-size:12px;
    }
}

/* Extra Small Mobile */
@media(max-width:375px){
    .product-box img{
        height:110px;
    }
    
    .product-title{
        font-size:12px;
        padding:8px 5px;
    }
}

/* ===================================
   GET TO KNOW US
=================================== */

.know-section{
    background:#f5f5f5;
    padding:50px 0;
}

.know-gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;
}

.gallery-item{
    overflow:hidden;
}

.gallery-item img{

    width:100%;

    height:270px;

    object-fit:cover;

    display:block;

    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Content */

.know-content{
    padding-left:40px;
}

.know-subtitle{

    display:block;

    font-size:18px;

    color:#000;

    text-transform:uppercase;

    margin-bottom:25px;

    letter-spacing:1px;
}

.know-content h2{

    font-family:Georgia, serif;

    color:#2d6b2f;

    font-size:30px;

    line-height:1.5;

    font-weight:400;

    margin-bottom:30px;
}

.know-content p{

    font-size:17px;

    line-height:1.9;

    color:#333;

    margin-bottom:35px;
}

/* Button */

.know-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:170px;
    height:55px;

    background:#f26c35;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.know-btn:hover{

    background:#df5d24;

    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .know-content{
        padding-left:0;
        padding-top:40px;
    }

    .gallery-item img{
        height:220px;
    }
}

/* Mobile */

@media(max-width:767px){

    .know-section{
        padding:30px 0;
    }

    .know-gallery{
        gap:8px;
    }

    .gallery-item img{
        height:160px;
    }

    .know-content h2{
        font-size:24px;
    }

    .know-content p{
        font-size:15px;
    }

    .know-btn{
        width:160px;
        height:50px;
    }
}


.footer-section{

    background:#0f501d;

    padding:80px 0 0;

    color:#fff;
}

.footer-title{

    font-size:28px;

    font-family:Georgia, serif;

    margin-bottom:30px;

    position:relative;
}

.footer-title:after{

    content:'';

    width:50px;
    height:3px;

    background:#0c7b43;

    position:absolute;

    left:0;
    bottom:-10px;
}

.footer-text{

    line-height:2;

    font-size:16px;

    color:#d9d9d9;
}

/* Links */

.footer-links{

    list-style:none;

    padding:0;
}

.footer-links li{

    margin-bottom:15px;
}

.footer-links a{

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#f26c35;
}

/* Contact */

.footer-contact{

    list-style:none;

    padding:0;
}

.footer-contact li{

    margin-bottom:18px;

    line-height:1.8;
}

.footer-contact i{

    color:#fff;

    width:25px;
}

/* Social */

.social-icons{

    margin-top:25px;
}

.social-icons a{

    width:42px;
    height:42px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    background:#000000;

    color:#fff;

    border-radius:50%;

    margin-right:10px;

    text-decoration:none;

    transition:.3s;
}

.social-icons a:hover{

    background:#f26c35;
}

/* Map */

iframe{

    width:100%;

    height:250px;

    border:0;
}

/* Bottom */

.footer-bottom{

    margin-top:60px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.1);

    font-size:15px;
}

.footer-bottom a{

    color:#fff;

    text-decoration:none;
}

.footer-bottom a:hover{

    color:#f26c35;
}

/* Mobile */

@media(max-width:767px){

    .footer-section{

        padding-top:60px;
    }

    .footer-title{

        font-size:24px;
    }

    iframe{

        height:220px;
    }
}