@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo-300.woff2') format('woff2'),
        url('../fonts/Museo-300.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo-700.woff2') format('woff2'),
        url('../fonts/Museo-700.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo500-Regular.woff2') format('woff2'),
        url('../fonts/Museo500-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo100-Regular.woff2') format('woff2'),
        url('../fonts/Museo100-Regular.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo';
    src: url('../fonts/Museo900-Regular.woff2') format('woff2'),
        url('../fonts/Museo900-Regular.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



:root {
    --primary: #64977A;
    --primary-dark: #108040;
    --orange: #F47820;
    --yellowish-orange: #F4A426;
    --secondary: #0E5B2F;
    --red: #DF3826;
    --primary-font: "League Spartan", sans-serif;
    --secondary-font: "Museo", sans-serif;
    --light: white;
    --transition: all 0.5s ease-in-out;
    --text: #4C4B49;
    --para-text: rgb(76, 75, 73);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Museo', sans-serif;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    color: var(--primary);
    transition: 0.35s ease-in-out;
    overflow: clip;
}


.section-heading {
    line-height: 1;
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(30px, 3vw, 44px);
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}


a,
a:active,
a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

/* a:visited {
    color:whitesmoke;
} */

p {
    color: black;
    line-height: 1.5;
    font-family: var(--secondary-font);
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
}

.btn {
    /* border: none; */
    background: var(--primary);
    border-radius: 20px;
    padding: 10px 25px;
    color: white;
    align-items: center;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    font-family: var(--secondary-font);
    cursor: pointer;
    font-size: 16px;
    border: 1px solid var(--primary);
    transition: var(--transition);
    font-weight: 500;
}

.btn>i {
    font-size: 14px;
}

.btn:hover,
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid #0000004D;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.btn.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    font-weight: 500;
    font-family: var(--secondary-font);
}

.btn-center,
.div-center {
    margin: 0 auto;
}



.position-relative {
    position: relative;
}

.column-1 {
    grid-column: span 1;
}

.row-1 {
    grid-row: span 1;
}

.column-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

.column-3 {
    grid-column: span 3;
}

.row-3 {
    grid-row: span 3;
}

.column-4 {
    grid-column: span 4;
}

.row-4 {
    grid-row: span 4;
}

.column-5 {
    grid-column: span 5;
}

.row-5 {
    grid-row: span 5;
}

.column-6 {
    grid-column: span 6;
}

.row-6 {
    grid-row: span 6;
}

.column-7 {
    grid-column: span 7;
}

.row-7 {
    grid-row: span 7;
}

.column-8 {
    grid-column: span 8;
}

.row-8 {
    grid-row: span 8;
}

.column-9 {
    grid-column: span 9;
}

.row-9 {
    grid-row: span 9;
}

.column-10 {
    grid-column: span 10;
}

.row-10 {
    grid-row: span 10;
}

.column-11 {
    grid-column: span 11;
}

.row-11 {
    grid-row: span 11;
}

.column-12 {
    grid-column: span 12;
}

.row-12 {
    grid-row: span 12;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.section {
    padding-top: 50px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.h-100 {
    height: 100%;
}

.mb-5 {
    margin-bottom: 30px;
}

.mt-48 {
    margin-top: 40%;
}

.flex-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
    display: none;
}

.flex-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
}

@media (max-width: 992px) {

    .column-1,
    .column-2,
    .column-3,
    .column-4,
    .column-5,
    .column-6,
    .column-7,
    .column-8,
    .column-9,
    .column-10,
    .column-11,
    .column-12 {
        grid-column: span 6;
    }

    .grid {
        grid-gap: 16px;
    }
}

@media (max-width: 768px) {

    .column-1,
    .column-2,
    .column-3,
    .column-4,
    .column-5,
    .column-6,
    .column-7,
    .column-8,
    .column-9,
    .column-10,
    .column-11,
    .column-12 {
        grid-column: span 12;
    }
}

.mt-40 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 2rem;
}

.left-column {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    padding-right: 3rem;
}

.right-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 300px;
    min-width: 300px;
}

.section-margin {
    margin: clamp(40px, 3vw, 70px) 0;
}

.section-padding {
    padding: clamp(40px, 5vw, 90px) 0;

}

.padding-top {
    padding-top: clamp(40px, 5vw, 90px);
}

.padding-bottom {
    padding-bottom: clamp(40px, 5vw, 90px);

}

.section-sm {
    padding: 14px 0;
}

.section-md {
    padding: clamp(40px, 3vw, 60px) 0;
}

.section-lg {
    padding: 100px 0;
}

.mg-gap {
    margin: clamp(35px, 3vw, 60px) 0 0;
}



.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-md {
    max-width: 1200px;
}

.container-xlarge {
    max-width: 100%;
}

.container-large {
    max-width: 1800px;
}

.container-small {
    max-width: 980px;
}

.container-xsmall {
    max-width: 600px;
    margin: auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 0.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

.gallery-icon {
    width: 100%;
    height: 190px;
}

.gallery-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5em;
}

.site-header.sticky {
    top: 0;
}

/* header */
.site-header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #0000001A;
}

.site-header .site-branding {
    /* width: 230px;
    height: 115px; */
    /* background-color: var(--secondary); */
    padding: 16px 0px;
}


.bar-icon {
    height: 100%;
    padding: 0 14px;
    cursor: pointer;
    font-size: 22px;
    display: none;
    align-content: center;
}

.bar-icon i {
    color: var(--primary);
}

.main-navigation>div ul {
    display: flex;
    gap: 25px;
}

.main-navigation>div ul li:hover a,
.current_page_item>a {
    color: var(--secondary);
}

/* offcanvas */
.off-canvas {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    /* padding: 10px 20px; */
    transition: transform 0.3s ease;
    transform: translateX(0);
    z-index: 1000;
}

/* .off-canvas-nav {
  padding: 10px 20px;
} */

.off-canvas-logo-wrapper {
    background-color: #64977A85;
}

.main-navigation.off-canvas {
    display: none;
}

/* Active state */
.off-canvas.menu-open {
    transform: translateX(300px);
}

/* Menu styles */
.off-canvas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .off-canvas li {
  margin-bottom: 20px;
} */

.off-canvas a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    display: block;
    padding: 10px 12px;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

#primary-menu .sub-menu a {
    padding: 8px 10px;
    width: 100%;
    color: #1d1d1d;
    opacity: .8;
    display: block;
}

.main-navigation>div ul li {
    position: relative;
    list-style: none;
    display: flex;
    height: 100%;
    font-family: var(--primary-font);
}

.off-canvas .menu>li:hover {
    background-color: var(--primary-dark);
}

.off-canvas .menu>li.submenu-open {
    background-color: var(--primary-dark);
}

.sub-menu>li:hover {
    background-color: #64977A6E;
    width: 100%;
    border-radius: 5px;
}

.main-navigation.off-canvas {
    align-content: unset;
}

.off-canvas #primary-menu1 .sub-menu a {
    font-size: 15px;
}

.off-canvas #primary-menu1 .sub-menu li>ul li a {
    font-size: 14px;
}

/* Hover effect */
/* .off-canvas ul>li:hover>a {
  background: #f7703124;
  border-radius: 6px;
  
} */

/* Overlay */
/* body.menu-active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
} */
.offcanvas-close {
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    padding: 0 5px;
    color: white;
}

button.offcanvas-close:hover {
    background-color: #f7703124;
}

.off-canvas .sub-menu li>a {
    padding-left: 25px;
}

.main-navigation .sub-menu {
    padding-left: 15px;
}

ul.menu>li {
    position: relative;
}

ul.menu>li i {
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.off-canvas ul.menu > li > ul > li i {
  top: 50px;
}

.off-canvas .menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .off-canvas .menu-item-has-children>a::after, */
.main-navigation .menu-item-has-children>a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children>ul>li>a::after {
    display: inline-block;
    transform: rotate(-90deg);
}

.main-navigation .menu-item-has-children>ul>li>.sub-menu {
    left: 100%;
    position: absolute;
}


.off-canvas .menu-item-has-children.submenu-open>i,
.main-navigation .menu-item-has-children.submenu-open>a::after {
    transform: rotate(180deg);
}

.main-navigation .sub-menu {
    position: absolute;
    background-color: white;
    padding: 20px 12px;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 1px #8080802b;
    top: 120%;
    min-width: 230px;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
}

#primary-menu .sub-menu::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* top: -32px; */
    top: 0;
    left: 0;
}

.main-navigation li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    transition: all .3s linear;
    opacity: 1;
    top: 100%;

}

.off-canvas-logo-wrapper>div {
    display: flex;
    padding: 12px;
    justify-content: space-between;
}

.offcanvas-logo {
    width: 200px;
}

.apply-btn {
    align-items: center;
    gap: 20px;
}

/* footer */
.site-footer {
    position: relative;
}

footer .site-info {
    column-gap: 90px;
    row-gap: 30px;
}

.site-footer .right-content {
    max-width: 690px;
    width: 100%;
}

footer ul {
    list-style: none;
}

footer h3 {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.copyright-div {
    margin-top: clamp(20px, 3vw, 75px);
}

footer .right-content p,
footer .right-content li>a {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--text);
    margin-bottom: 7px;
}

.site-footer::before {
    background-image: url(../imgs/section-bg-leaf1.svg);
    opacity: .1;
    width: 164px;
    height: 251px;
    bottom: 0;
}

.site-footer::after {
    background-image: url(../imgs/section-bg-leaf2.svg);
    opacity: .1;
    width: 206px;
    height: 162px;
}

.social-icon {
    gap: 15px;
    align-items: center;
    justify-content: center;

}

.social-icon i {
    color: var(--primary);
    font-size: 22px;
}

.social-icon a {
    display: inline-block;
}

footer .quick-links-wrapper,
footer .copyright-div {
    gap: 30px;
}

footer .quick-links ul li:hover a {
    text-decoration: underline;
}

footer .social-icon>a:hover i {
    scale: 1.1;
}

footer .logo-container img {
    width: 206px;
}

.quick-links li {
    margin-bottom: 5px;
}

/* footer-leaf */

.site-footer .leaf1 {
    left: 28%;
}

.site-footer .leaf2 {
    left: 70%;
}

.site-footer .leaf3 {
    left: 15%;
}

.site-footer .leaf4 {
    left: 10%;
}

.site-footer .leaf5 {
    left: 14%;
}

.site-footer .leaf6 {
    left: -1%;
}

.site-footer .leaf7 {
    left: 60%;
}

.site-footer .leaf8 {
    left: 6%;
}

.site-footer .leaf9 {

    left: 40%;
}

.site-footer .leaf10 {
    left: 37%;
}

.site-footer .leaf11 {
    left: 3%;
}

/* footer-leaf */

@media (max-width: 1120px) {
    .banner-section .container {
        justify-content: space-evenly;
    }

    .bar-icon {
        display: block;
    }

    .site-header .main-navigation {
        display: none;
    }

    .main-navigation.off-canvas .menu,
    .main-navigation.off-canvas {
        display: block;
    }

    .main-navigation.main-navigation.off-canvas #primary-menu1 {
        display: block;
    }

    #primary-menu1 .sub-menu {
        display: none;
        background: #eeebeb94;
    }

    body.menu-active::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

@media (max-width: 750px) {
    footer .site-info {
        flex-direction: column;
    }

}

@media (max-width:550px) {
    footer .copyright-div {
        justify-content: center;
        text-align: center;
    }

    header .apply-btn>.btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
        background-color: var(--primary);
        color: white;
        border: 1px solid var(--primary);
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 1000;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

}