:root {
    --green-bg: #1B5E20;
    --orange-bg: #E36F34;
    --orange-border: #E36F34;
    --color-green: #1B5E20;
    --text-black: #333333;
    --text-white: #ffffff;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    line-height: 36px;
    overflow-x: hidden;
    color: var(--text-black);
}

.swiper {
    max-width: 100% !important;
}

.slide-inner {
    min-height: 750px !important;
}

/* Make banner truly full width */

/* Match Bootstrap container left edge */
#bannerContent {
    --hero-gutter: var(--bs-gutter-x, 1.5rem);
    --hero-container-max: 100vw; /* xs */
    --hero-offset: max( calc(var(--hero-gutter) / 2), calc((100vw - var(--hero-container-max)) / 2 + (var(--hero-gutter) / 2)) );
}

/* Bootstrap container max-widths */
@media (min-width: 576px) {
    #bannerContent {
        --hero-container-max: 540px;
    }
}

@media (min-width: 768px) {
    #bannerContent {
        --hero-container-max: 720px;
    }
}

@media (min-width: 992px) {
    #bannerContent {
        --hero-container-max: 960px;
    }
}

@media (min-width: 1200px) {
    #bannerContent {
        --hero-container-max: 1140px;
    }
}

@media (min-width: 1400px) {
    #bannerContent {
        --hero-container-max: 1320px;
    }
}

#bannerContent .swiper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Full height plumbing */
#bannerContent .swiper,
#bannerContent .swiper-wrapper,
#bannerContent .swiper-slide {
    height: 100%;
}

/* Desktop hero height (tweak to match design) */
#bannerContent .slide-inner {
    display: flex;
    align-items: stretch;
    min-height: 520px; /* was 379px */
    height: clamp(520px, 70vh, 760px);
    overflow: hidden;
    background: #fff;
}

/* Left panel. Center content vertically */
#bannerContent .slide-caption {
    flex: 0 0 50%;
    max-width: none;
    padding: 0 clamp(24px, 4vw, 72px);
    color: #1f2937; /* was #fff */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#bannerContent .slide-caption {
    padding-left: calc(40rem + 0px);
    padding-right: clamp(24px, 4vw, 72px);
    max-width: none;
}

    /* Optional. Keep text width similar to header content */
    #bannerContent .slide-caption h2,
    #bannerContent .slide-caption p {
        max-width: 540px;
    }

    /* Keep heading style similar to your mock */
    #bannerContent .slide-caption h2 {
        color: var(--color-green) !important;
        font-size: 60px;
        font-weight: bold;
        font-family: "Poppins", sans-serif;
    }

    #bannerContent .slide-caption p {
        font-size: 24px;
        line-height: 36px;
        color: var(--text-black);
        font-weight: 400;
    }

/* Right panel image fills half */
#bannerContent .slide-image {
    flex: 0 0 50%;
    height: 100%;
}

    #bannerContent .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-caption .btn {
    font-family: "Poppins", sans-serif;
    width: auto;
    max-width: 15rem;
    font-size: 20px !important;
    line-height: 1.2;
    font-weight: 600;
    background-color: var(--orange-bg) !important;
    border: 2px solid var(--orange-border) !important;
    color: var(--text-white) !important;
    text-decoration: none !important;
    padding: 20px !important;
    display: inline-block;
    border-radius: 50px !important;
    transition: all .3s;
}

/* Apply the alignment */
#bannerContent .slide-caption {
    padding-left: var(--hero-offset);
    padding-right: clamp(16px, 3vw, 48px);
    box-sizing: border-box;
}

/* Center the image area content */
#bannerContent .slide-image {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    overflow: hidden;
    height: 100%;
}

    /* Keep image centered while covering */
    #bannerContent .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /*object-position: center center;*/ /* key */
        object-position: 100% center;
        display: block;
    }

/* Banner Content End */

#mainContentHome .innerContWrap p {
    font-weight: 250;
}

/* Mobile */
@media (max-width: 768px) {
    #bannerContent .slide-inner {
        min-height: 420px;
        height: 60vh;
    }

    #bannerContent .slide-caption {
        position: absolute;
        inset: 0;
        flex: 1;
        padding: 0 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.65);
        backdrop-filter: blur(2px);
    }

        #bannerContent .slide-caption p {
            display: none;
        }

    #bannerContent .swiper-pagination {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 14px !important;
    }
}
/*Banner Styles End*/

/* Reset CSS */
img {
    max-width: 100%;
}

/* Common Stylesheet */
.pt40 {
    padding-top: 40px;
}

.pb40 {
    padding-bottom: 40px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pb70 {
    padding-bottom: 70px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

h1 {
    font-size: 70px;
    line-height: 117%;
    font-weight: bold;
}

h2 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: bold;
}

h3 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

p {
    font-size: 24px;
    line-height: 36px;
    color: var(--text-black);
    font-weight: 400;
}

.theme-cta {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    background-color: var(--orange-bg);
    border: 2px solid var(--orange-border);
    color: var(--text-white);
    text-decoration: none !important;
    padding: 19px 71px;
    display: inline-block;
    border-radius: 50px;
    transition: all .3s;
}

    .theme-cta.transparent--cta {
        background-color: transparent;
        border-color: #4A6546;
        color: #4A6546;
    }

.text-green {
    color: var(--color-green) !important;
}


/* Header */
.header nav.navbar {
    background-color: var(--green-bg) !important;
    padding-block: 13px;
}

.navbar-brand img {
    max-width: 415px;
}

.header .navbar-nav .nav-link {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-white);
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 30px;
}

.header .navbar-nav li.nav-item:not(:first-child) {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #ffffff;
}

.search--bar {
    /*padding-left: 150px;*/
}

/* Banner */
section.banner {
    position: relative;
}

.b--slider .owl-carousel:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9;
}

.b--content.position-absolute {
    top: 50%;
    z-index: 99;
    max-width: 550px;
    transform: translateY(-50%);
}

.banner button.owl-dot {
    width: 16px;
    height: 16px;
    border: 2px solid var(--orange-border) !important;
    display: inline-block;
    border-radius: 50px;
    margin-inline: 10px;
}

    .banner button.owl-dot.active {
        background-color: var(--orange-bg) !important;
    }

.banner .owl-dots {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% -30px;
    z-index: 9;
}

/* About Us */
.about--us {
    background-color: #fcf2d5;
}

.about--pic img {
    width: 100%;
}

/* Blogs */
.blog--outer {
    display: flex;
    justify-content: space-between;
    gap: 120px;
    position: relative;
    margin-top: 40px;
}

    .blog--outer:before {
        content: "";
        position: absolute;
        width: 2px;
        background: #4A6546;
        z-index: 999;
        left: 50%;
        height: 80%;
        top: 50%;
        transform: translateY(-50%);
    }

.blog--box img {
    border-radius: 20px;
    margin-bottom: 25px;
}

.blog--box .cta {
    margin-top: 30px;
}

/* Footer */
.footer {
    background-color: #1B5E20;
    position: relative;
    padding: 40px 0 0;
    z-index: 0;
}

    .footer * {
        color: var(--text-white);
    }

.f--contact {
    padding-right: 50px;
}

.footer .f--address li,
.footer .f--address li a {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.f--address li {
    padding-top: 8px;
}

.f--contact p {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 200;
    margin-bottom: 28px;
}

.f--contact img {
    margin-bottom: 20px;
    max-width: 319px;
}

.other--pages {
    display: flex;
    justify-content: space-between;
}

    .other--pages ul {
        list-style-type: none;
        padding: 0 15px 0 0;
    }

        .other--pages ul li > a {
            display: flex;
        }

.footer ul li a {
    font-weight: 200;
    font-size: 12px;
    line-height: 1.2rem;
}

.footer ul li a,
.footer h4 a {
    text-decoration: none;
}

.footer h4 a {
    font-size: 20px;
}

.footer::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 60px;
    width: 165px;
    height: 65px;
    background: url(/images/footer/micelane.png) no-repeat center / contain;
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 88px;
    width: 210px;
    height: 458px;
    background: url(/images/footer/micelane-right.png) no-repeat center / contain;
    pointer-events: none;
}

.other-page h4 {
    border-right: 1px solid rgba(255,255,255,60%);
    padding-right: 15px;
}

.other-page {
    margin-right: 15px;
}

    .other-page:last-child {
        margin-right: 0;
    }

        .other-page:last-child h4 {
            padding: 0;
            border: 0;
        }

.search--bar img {
    max-width: 43px;
}

.f--address ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar-toggler {
    width: 43px;
    height: 43px;
    padding: 0;
    background: #ffffff;
    border-radius: 50%;
    margin-left: auto;
    outline: none !important;
    box-shadow: none !important;
}

.f--address li img {
    max-width: 24px;
    margin-right: 5px;
}

.search--bar {
    order: 2;
}

.navbar-collapse {
    order: 1;
}

.f--address {
    margin-top: 20px;
}

    .f--address h4 {
        margin-bottom: 17px;
    }

.mobile--logo {
    display: none;
}

.dropdown-toggle::after {
    display: inline-block;
    content: "";
    width: 11px;
    height: 11px;
    border: 0;
    border-left: 3px solid var(--orange-border);
    border-bottom: 3px solid var(--orange-border);
    transform: rotate(-135deg);
    transition: all .3s;
    display: none;
}

.center-icon {
    margin-bottom: 50px;
}

.custom--searchbar {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

    .custom--searchbar.show {
        display: block;
    }

    .custom--searchbar form input[type="search"] {
        width: 100%;
        border-radius: 22px;
        padding: 16px 20px;
        border: 2px solid #ffffff;
        font-size: 16px;
        line-height: 20px;
    }

    .custom--searchbar form .input {
        position: relative;
        z-index: 0;
    }

    .custom--searchbar form input[type="submit"] {
        position: absolute;
        right: 25px;
        top: 51%;
        transform: translateY(-50%);
        background-image: url(img/search-icon.png);
        width: 25px;
        height: 25px;
        background-size: 20px;
        border: 0;
        background-color: transparent;
        background-repeat: no-repeat;
        z-index: 9;
    }

.header .container {
    position: relative;
}

button.navbar-toggler .navbar-toggler-icon {
    background-image: url(img/hamburg.png);
    background-size: 25px;
}

button.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url(img/close.png);
    background-size: 25px;
    background-position: 4px 1px;
}

.pattern {
    position: absolute;
    bottom: 37px;
    left: 0;
    z-index: -1;
}

    .pattern img {
        max-width: 80%;
    }

.banner .pattern {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 99;
    overflow: hidden;
}

    .banner .pattern img {
        max-width: 400px;
        height: 300px;
    }

body.menuVisible {
    height: 100%;
    overflow: hidden;
}

/* About Us */
/* Breadcrumnb */
.breadcrumbs {
    background-color: #FCF2D5;
}

.bread--title h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--color-green);
}

.bread--title ul li a {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--color-green);
    text-decoration: none;
}

.bread--title ul li {
    position: relative;
    padding-right: 30px;
}

    .bread--title ul li:last-child {
        padding-right: 0;
    }

    .bread--title ul li:not(:last-child):after {
        content: "";
        position: absolute;
        right: 0;
        background-image: url(img/bread-arrow.png);
        background-size: 7px;
        background-repeat: no-repeat;
        background-position: center center;
        top: 1px;
        width: 25px;
        height: 30px;
    }
/* About Content */
.content h2 {
    color: var(--color-green);
}

.list-circle li {
    position: relative;
    list-style-type: none;
}

    .list-circle li:before {
        content: "";
        width: 20px;
        height: 25px;
        background-image: url(img/list-circle-icon.png);
        background-size: 15px;
        background-repeat: no-repeat;
        background-position-y: bottom;
        display: inline-block;
        margin-right: 6px;
    }

.content--box p {
    margin-bottom: 15px;
}

.content--sec .icon img {
    max-width: 77px;
    margin-right: 25px;
}

.content--outer.position-relative {
    display: flex;
}

section.facts {
    background: linear-gradient(to bottom, #8AA56E 60%, #ffffff 60%);
    padding: 40px;
}

.facts .section--title h2 {
    color: var(--text-black);
}

.facts .container {
    max-width: 1500px;
    margin: 0 auto;
}

.facts .owl-stage {
    display: flex;
}

.facts .owl-stage-outer {
    display: flex;
    padding-bottom: 50px;
}

.facts .item {
    height: 100%;
}

.facts--box {
    background-color: #ffffff;
    padding: 15px 15px 20px;
    border-radius: 25px;
    height: 100%;
    filter: drop-shadow(0px 3px 3px #cccccc);
    margin-top: 30px;
}

    .facts--box h3 {
        font-size: 77px;
        font-weight: bold;
        color: var(--color-green);
        line-height: 77px;
    }

    .facts--box p {
        font-size: 19px;
        font-weight: 600;
        color: var(--text-black);
        line-height: 1.2;
        margin-bottom: 0;
    }

.fact--icon {
    width: 64px;
    height: 64px;
    background-color: var(--orange-bg);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .fact--icon img {
        max-width: 40px;
    }

/* Accourdion */
section.accordions {
    padding-bottom: 70px;
}

    section.accordions .accordion-button {
        border: 2px solid #1B5E20;
        border-radius: 22px !important;
        margin-top: 25px;
        outline: none !important;
        box-shadow: none !important;
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
        padding: 14px 20px 14px 50px;
    }

        section.accordions .accordion-button:not(.collapsed) {
            color: var(--bs-accordion-active-color);
            background-color: #ffffff !important;
            border-radius: 22px 22px 0 0 !important;
        }

    section.accordions .accordion-flush > .accordion-item {
        border: 0;
    }

    section.accordions .accordion-body {
        border: 2px solid #1B5E20;
        border-radius: 0 0 22px 22px !important;
        padding: 20px;
        border-top: 0;
        font-size: 24px;
        line-height: 30px;
        font-weight: 400;
    }

    section.accordions .accordion-button::after {
        background-image: none;
        content: "+";
        background: var(--orange-bg);
        color: var(--text-white);
        font-size: 23px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        padding-top: 2px;
    }

.accordions button.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: var(--orange-bg) !important;
}

    .accordions button.accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: #E36F34 !important;
    }

section.accordions .accordion-button:not(.collapsed)::after {
    content: "-";
    background-image: none;
}

.content--sec .content--outer .content--box ul {
    padding-left: 10px;
}

.content--sec .content--outer .icon {
    position: absolute;
    left: -90px;
}
/* About Us End */

/* Member Page */
.bread--title ul li:last-child a {
    font-weight: 600;
}

.map {
    border-radius: 20px;
    overflow: hidden;
}

.yellow--accordion .accordion-button,
.yellow--accordion .accordion-body {
    border-color: #FDD26E !important;
}

    .yellow--accordion .accordion-button::after {
        background-color: #FDD26E !important;
    }

.accordions .yellow--accordion .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #FDD26E !important;
}

    .accordions .yellow--accordion .accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: #FDD26E !important;
    }

.red--accordion .accordion-button,
.red--accordion .accordion-body {
    border-color: #C94F4F !important;
}

    .red--accordion .accordion-button::after {
        background-color: #C94F4F !important;
    }

.accordions .red--accordion .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #C94F4F !important;
}

    .accordions .red--accordion .accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: #C94F4F !important;
    }

.blue--accordion .accordion-button,
.blue--accordion .accordion-body {
    border-color: #0288D1 !important;
}

    .blue--accordion .accordion-button::after {
        background-color: #0288D1 !important;
    }

.accordions .blue--accordion .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #0288D1 !important;
}

    .accordions .blue--accordion .accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: #0288D1 !important;
    }

.purple--accordion .accordion-button,
.purple--accordion .accordion-body {
    border-color: #A740B9 !important;
}

    .purple--accordion .accordion-button::after {
        background-color: #A740B9 !important;
    }

.accordions .purple--accordion .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #A740B9 !important;
}

    .accordions .purple--accordion .accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: #A740B9 !important;
    }

.orange--accordion .accordion-button,
.orange--accordion .accordion-body {
    border-color: #F57C00 !important;
}

    .orange--accordion .accordion-button::after {
        background-color: #F57C00 !important;
    }

.accordions .orange--accordion .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #F57C00 !important;
}

    .accordions .orange--accordion .accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: #F57C00 !important;
    }

.green--accordion .accordion-button,
.green--accordion .accordion-body {
    border-color: #1B5E20 !important;
}

    .green--accordion .accordion-button::after {
        background-color: var(--green-bg) !important;
    }

.accordions .green--accordion .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #1b5e20 !important;
}

    .accordions .green--accordion .accordion-button:not(.collapsed)::after {
        background-color: #ffffff !important;
        color: var(--color-green) !important;
    }

.accordions .accordion-body h4 {
    font-size: 24px;
    line-height: 29px;
    color: var(--color-green);
    font-weight: bold;
}

.accordion-box {
    max-width: 75%;
    margin: 0 auto;
}

    .accordion-box .owl-stage-outer img {
        border-radius: 22px;
    }

.down--icon img {
    max-width: 22px;
    margin: 12px 0 15px;
}

.accordion-body .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    width: 36px;
    height: 36px;
    background-color: var(--green-bg) !important;
    border-radius: 50%;
}

    .accordion-body .owl-nav button.owl-next {
        left: auto;
        right: -50px;
    }

    .accordion-body .owl-nav button span {
        color: var(--text-white);
    }

.center-icon img {
    max-width: 25px;
}

a.navbar-brand {
    outline: none !important;
    box-shadow: none !important;
}

.b--content .cta {
    margin-top: 35px;
}

.copyright p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    margin: 0;
}

.dropdown-toggle.show::after {
    transform: rotate(-45deg);
}

.content--box p:last-child {
    margin-bottom: 0;
}

section.accordions .accordion-item:first-child .accordion-button {
    margin-top: 0;
}

button.disabled.disabled-arrow span {
    color: #000000;
}

.blogs .blog--box p {
    font-size: 18px;
    line-height: 27px;
    color: #333333;
}

.left--pattern {
    position: absolute;
    top: 70px;
    max-width: 100px;
}

.right--pattern {
    position: absolute;
    right: 0;
    bottom: 100px;
    max-width: 88px;
}

.member .right--pattern {
    top: 50%;
}

.list-circle li + li {
    margin-top: 10px;
}

.about--us .right--pattern {
    max-width: 140px;
    top: 50px;
}

.blogs .right--pattern {
    max-width: 35%;
}

.copyright {
    overflow: hidden;
    padding: 0;
}

.copyright-sec {
    margin-top: 20px;
    padding-bottom: 45px;
    overflow: hidden;
}

/* Text above the line + vector */
.footer .copyright-sec > .container-sm {
    position: relative;
    z-index: 2;
}

.copyright {
    padding-top: 15px;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: -85px;
    max-width: 1670px;
    z-index: -1;
}

.foot--pattern {
    display: none;
}

.about--us .left--pattern {
    top: 50%;
    transform: translateY(-50%);
    max-width: 130px;
}

.about--us .top--pattern {
    position: absolute;
    top: -48px;
    z-index: 9;
}
/* Member Page End */

ul.navbar-nav > li > a {
    padding: 0 !important;
}

.sm-blue a span.sub-arrow {
    text-align: right;
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid transparent;
    border-left-color: #ffffff;
    border-bottom-color: #ffffff;
    transform: rotate(-45deg);
    transform-origin: center;
    top: 4px !important;
    right: -18px !important;
    margin-left: 0 !important;
    left: auto !important;
}

.sm-blue li ul a {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.header ul.navbar-nav:not(.sm-nowrap) > li.nav-link:not(:first-child) {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #ffffff !important;
}

ul.navbar-nav > li {
    margin: 0 20px;
}

    ul.navbar-nav > li.nav-link > a {
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
        color: var(--text-white);
        padding: 0;
        font-family: "Poppins", sans-serif;
    }

    ul.navbar-nav > li ul a {
        color: #333333 !important;
    }

.sm-blue {
    box-shadow: none !important;
    border-radius: 0;
}

    .sm-blue .sm-nowrap > li > a, .sm-blue .sm-nowrap > li > :not(ul) a {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        border-radius: 20px !important;
        color: #1a5d1f !important;
    }

@media screen and (max-width:991px) {
    .header {
        position: relative
    }

    #mobileMenu {
        float: none;
        margin-top: 10px;
        display: block;
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        background: #ffffff;
        z-index: 9;
        right: 120px;
        transform: translateY(-50%);
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 5px;
        width: 70%;
        background: #000000;
        border-radius: 0px;
        opacity: 1;
        left: 50%;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        transform: translateX(-50%);
    }

        #nav-icon span:nth-child(1) {
            top: 6px;
        }

        #nav-icon span:nth-child(2) {
            top: 16px;
        }

        #nav-icon span:nth-child(3) {
            top: 26px;
        }

        #nav-icon span:nth-child(4) {
            top: 36px;
        }
}





@media screen and (min-width:1920px) {
    .container-fluid {
        max-width: 1920px;
    }

    .footer .container {
        max-width: 1700px;
    }

    .footer-pattern {
        left: -180px;
    }
}

@media (min-width: 1200px) {
    .footer .container,
    .header .container {
        max-width: 1500px;
    }

    .about--us .container,
    .blogs .container {
        max-width: 1070px;
    }
}

@media screen and (min-width:1440px) {
    .banner .pattern {
        left: -50px;
    }

        .banner .pattern img {
            max-width: 300px;
            height: 250px;
        }
}

@media screen and (min-width:1540px) {
    .about--us .container,
    .blogs .container {
        max-width: 1170px;
    }

    .foot--pattern {
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 185px;
        display: block;
    }
}

@media screen and (max-width:1920px) {
    .header .navbar-nav li.nav-item:not(:first-child) {
        margin-left: 20px;
        padding-left: 20px;
    }

    .search--bar {
        padding-left: 50px;
    }

    .footer-pattern {
        left: -200px;
    }
}


@media screen and (max-width:1599px) {
    .blog--outer {
        gap: 60px;
    }

    .navbar-brand img {
        max-width: 320px;
    }

    .header .navbar-nav .nav-link {
        font-size: 18px;
    }

    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 20px;
    }

    p,
    ul li,
    ol li {
        font-size: 18px;
        line-height: 30px;
    }

    .f--contact p {
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 20px;
    }

    .theme-cta {
        font-size: 18px;
        padding: 16px 55px;
    }

    /* About Us Page */
    .content--sec .content--outer .icon {
        position: absolute;
        left: 0;
        top: 0;
    }

    .facts--box h3 {
        font-size: 55px;
        line-height: 57px;
    }

    .facts--box p {
        font-size: 16px;
        margin-bottom: 0;
    }

    .about--us--content p:last-child {
        margin-bottom: 0;
    }

    .content--sec .content--outer .content--box h2 {
        text-indent: 90px;
    }

    .footer-pattern {
        left: -150px;
    }
    /* About us page end */
}


@media screen and (max-width:1440px) {
    .content--sec .content--outer .icon img {
        max-width: 64px;
    }

    .content--sec .content--outer .content--box h2 {
        text-indent: 80px;
    }

    .other-page h4 {
        padding-right: 5px;
        font-size: 18px;
    }

    .other-page {
        margin-right: 10px;
        flex: 1;
    }

    .navbar-brand img {
        max-width: 280px;
    }

    .header .navbar-nav .nav-link {
        font-size: 16px;
    }

    .footer:before {
        display: none;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    h3 {
        font-size: 26px;
    }

    .theme-cta {
        font-size: 16px;
        padding: 10px 32px;
    }

    .center-icon img {
        max-width: 20px;
    }

    .footer ul li a {
        font-size: 16px;
        line-height: 1.1;
    }

    .banner .pattern img {
        max-width: 100px;
    }

    .banner button.owl-dot {
        width: 14px;
        height: 14px;
        margin-inline: 5px;
    }

    .bread--title h1 {
        font-size: 42px;
    }

    .bread--title ul li a {
        font-size: 18px;
        line-height: 1.1;
    }

    .b--content.position-absolute {
        max-width: 470px;
    }

    section.accordions .accordion-button {
        font-size: 20px;
        line-height: 28px;
        padding: 11px 20px 11px 40px;
    }

        section.accordions .accordion-button::after {
            font-size: 18px;
            width: 28px;
            height: 28px;
        }

    .facts--box h3 {
        font-size: 42px;
        line-height: 48px;
    }

    .fact--icon {
        width: 50px;
        height: 50px;
    }

        .fact--icon img {
            max-width: 25px;
        }

    .blog--box img {
        margin-bottom: 15px;
    }

    .f--contact img {
        margin-bottom: 20px;
        max-width: 290px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .pt70 {
        padding-top: 50px;
    }

    .pb70 {
        padding-bottom: 50px;
    }

    .pt60 {
        padding-top: 40px;
    }

    .pb60 {
        padding-bottom: 40px;
    }

    .content--box p {
        margin-bottom: 15px;
    }

    section.accordions {
        padding-bottom: 50px;
    }

    .center-icon {
        margin-bottom: 25px;
    }

    .left--pattern {
        max-width: 80px;
    }

    .right--pattern {
        max-width: 45px;
    }

    .footer-pattern {
        left: -130px;
    }

    .footer .left--pattern {
        display: none;
    }
}

@media screen and (max-width:1199px) {
    .search--bar {
        padding-left: 20px;
    }

    .header .navbar-nav li.nav-item:not(:first-child) {
        margin-left: 10px;
        padding-left: 10px;
    }

    .b--content.position-absolute {
        max-width: 450px;
    }

    h1 {
        font-size: 48px;
    }

    h3 {
        font-size: 24px;
    }

    .b--content p {
        display: none;
    }

    .left--pattern {
        max-width: 70px;
    }

    .footer-pattern {
        left: -100px;
    }
}


@media screen and (max-width:991px) {
    .dropdown-menu li + li {
        padding-top: 7px;
    }

    .custom--searchbar .input:before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 80px;
        height: 100%;
        background: #1B5E20;
        z-index: 9;
        border-radius: 0 22px 22px 0;
    }

    .custom--searchbar {
        display: block !important;
        position: relative;
        padding: 40px 0;
        top: 0;
        transform: translateY(0);
    }

        .custom--searchbar form input[type="submit"] {
            background-image: url(img/white-searchbar.png);
        }

        .custom--searchbar form input[type="search"] {
            border: 2px solid #1B5E20;
            padding: 16px 100px 16px 20px;
        }

    .other--pages {
        flex-direction: column;
    }

    .other-page h4,
    .other-page:last-child h4 {
        display: inline-block;
        border-right: 0;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,60%);
    }

    .other-page {
        margin-right: 0;
        margin-top: 10px;
    }

        .other-page:first-child {
            margin-top: 0;
        }

    .other--pages ul {
        padding: 0;
        margin: 0;
    }

    .header .navbar-nav li.nav-item:not(:first-child) {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .navbar-collapse {
        position: fixed;
        left: -100%;
        top: 85px;
        padding: 30px;
        width: 100%;
        height: calc(100% - 85px) !important;
        background: #ffffff;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }

        .navbar-collapse.show {
            opacity: 1;
            visibility: visible;
            left: 0;
            overflow: auto;
        }

    .header .navbar-nav .nav-link {
        color: var(--color-green) !important;
    }
    /* .collapse:not(.show) {
        display: block;
    } */
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .theme-cta {
        font-size: 16px;
        padding: 12px 40px;
    }

    .b--slider .owl-carousel:before {
        display: none;
    }

    .banner .owl-carousel .owl-item img {
        min-height: 350px;
        object-fit: cover;
    }

    .dropdown-toggle::after {
        display: inline-block;
        top: 5px;
        position: relative;
        right: 5px;
    }

    section {
        overflow-x: hidden;
    }

    .footer-pattern {
        left: -80px;
    }

    /* Mobile */
    .header .navbar-nav .nav-link {
        font-size: 21px;
        display: flex;
        justify-content: space-between;
    }

    a.dropdown-item {
        padding: 0;
        font-size: 18px;
        line-height: 27px;
        font-weight: 400;
        color: #333333;
    }

    .navbar-nav .dropdown-menu {
        border: 0;
        padding-bottom: 0;
    }

    li.nav-item {
        border-bottom: 1px solid #1B5E20;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    a.dropdown-item:before {
        content: "";
        width: 30px;
        height: 1px;
        background: #E36F34;
        display: inline-block;
        position: relative;
        top: -6px;
        margin-right: 10px;
    }

    .blog--outer {
        gap: 0;
        flex-direction: column;
        margin-top: 0;
    }

    .blog--inner {
        margin-top: 36px;
    }

    .blog--outer:before {
        display: none;
    }

    .blog--inner + .blog--inner {
        border-top: 2px solid #4A6546;
        padding-top: 36px;
    }

    .left--pattern,
    .right--pattern,
    .pattern {
        display: none;
    }
}


@media screen and (max-width:767px) {
    h1 {
        font-size: 32px;
    }

    /* About Us Page */
    .facts--box h3 {
        font-size: 50px;
        line-height: 50px;
    }

    .facts--box p {
        font-size: 14px;
        line-height: 1.1;
    }

    .custom--searchbar {
        padding: 10px 0 40px;
    }
    /* About page End */

}


@media screen and (max-width:576px) {
    .other--pages ul {
        display: none;
    }

    .other--pages {
        align-items: center;
    }

    .f--contact {
        padding-right: 0;
        text-align: center;
    }

    .other-page {
        width: 100%;
        text-align: center;
    }

        .other-page h4,
        .other-page:last-child h4 {
            display: block;
            padding-bottom: 15px;
            margin-bottom: 0;
        }

    .pt100 {
        padding-top: 70px;
    }

    .pb100 {
        padding-bottom: 70px;
    }

    .pb70 {
        padding-bottom: 50px;
    }

    .pt70 {
        padding-top: 50px;
    }

    .banner button.owl-dot {
        width: 13px;
        height: 13px;
        margin-inline: 6px;
    }

    .b--content.position-absolute {
        max-width: 280px;
    }

    .desktop--logo {
        display: none;
    }

    .mobile--logo {
        display: block;
    }

    .navbar-brand img {
        max-width: 140px;
    }

    /* About Us Page */
    .facts--box h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .fact--icon {
        width: 44px;
        height: 44px;
    }

        .fact--icon img {
            max-width: 24px;
        }

    section.accordions .accordion-button {
        font-size: 24px;
        line-height: 30px;
    }

    .bread--title h1 {
        font-size: 32px;
        line-height: 37px;
        margin-bottom: 0;
    }

    .bread--title ul li a {
        font-size: 16px;
        line-height: 1.1;
    }

    .list-circle li {
        font-size: 18px;
        line-height: 25px;
    }

        .list-circle li:before {
            height: 14px;
            background-size: 14px;
            margin-right: 5px;
        }

    .breadcrumbs {
        padding: 19px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header .container,
    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-toggler {
        width: 38px;
        height: 38px;
    }

    button.navbar-toggler .navbar-toggler-icon {
        background-size: 21px;
    }

    .search--bar img {
        max-width: 38px;
    }

    .search--bar {
        padding-left: 10px;
    }

    li.nav-item {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .custom--searchbar form input[type="search"] {
        padding: 10px 100px 10px 15px;
    }

    .custom--searchbar .input:before {
        width: 50px;
    }

    .custom--searchbar form input[type="submit"] {
        right: 14px;
        top: 54%;
        width: 20px;
        height: 20px;
        background-size: 16px;
    }
    /* About Us Page End */

}
