/* google font */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/* Custom Color */
:root {
    --green:#007a4e;
    --darkgreen:#00452c;
    --white:#fff;
}

/* Custom CSS */

* {
    font-family: "Unna", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: all .2s linear;
    background-color: #f8f8f8;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: "Host Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    display: block;
}

/* Website All Heading */
.heading {
    margin: 2rem;
    padding-top: 6rem;
    text-decoration: underline;
    display: inline-block;
    font-size: 3.5rem;
    color: var(--green);
    position: relative;
    letter-spacing: .2rem;
}

/* Website All Button */
.btn {
    outline: none;
    border: none;
    border-radius: 5rem;
    background-color: var(--green);
    color: var(--white);
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    font-size: 1.7rem;
    box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .3);
}

.btn:hover {
    letter-spacing: .1rem;
    opacity: .8;
}

/* Header section start */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 8rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Logo name */

.header .logo {
    font-size: 2.5rem;
    color: var(--white);
}

.header .logo i {
    padding: 0 .5rem;
}

/* Nabar Link */
.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .navbar ul li {
    margin: 0 1.5rem;
}

.header .navbar ul li a {
    font-size: 2rem;
    color: var(--white);
}

.header .fa-bars {
    color: var(--white);
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* Header Section End */

/* Home-Header section start */
.home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 8rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Logo name */

.home-header .logo {
    max-height: 90px;
    width: auto;
    margin-right: auto;
}

.home-header .logo:hover {
    opacity: 0.8;
    cursor: pointer;
}

/* Navbar Link */
.home-header .navbar ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-header .navbar ul li {
    margin: 0 3rem;
}

.home-header .navbar ul li a {
    font-size: 2.2rem;
    color: var(--darkgreen);
}

.home-header .navbar ul li a:hover {
    font-size: 2.5rem;
    color: var(--green);
}

.home-header .navbar ul button {
    position: relative;
    height: 5rem;
    width: 20rem;
    border-radius: .5rem;
    background-color: var(--darkgreen);
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 2rem;
    font-weight: 400;
    box-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
}

.home-header .navbar ul button .grass {
    position: absolute;
    top: -35px; 
    left: 90%; 
    transform: translateX(-50%); 
    height: 40px; 
    width: auto;
    z-index: 10; 
    background-color: transparent;
}

.home-header .fa-bars {
    color: var(--darkgreen);
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* Horizontal line to separate sections */

/* FAQ START */


.separator {
    width: 100%;
    margin: 20px auto; /* Center the line and add vertical spacing */
    border: none; /* Remove default border styling */
    border-bottom: 2px solid var(--darkgreen); /* Add a solid line */
    padding-top: 100px;
}


.wrapper {
    height: 80vh;
    max-width: 80%;
    margin: 120px auto;
}

.wrapper > h1 {
    font-size: 4rem;
    margin: 5rem 0;
    text-align: center;
    color: #3b302d;
}

.wrapper > h1 {
    letter-spacing: 3px;
} 


/* DROPDOWN BUTTON */
.accordion {
    background-color: #a3b18a;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    font-size: 3.2rem;
    width: 100%;
    padding: 1rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    text-align: start;
    border-radius: 10px;
    color: #fff;
}

.accordion > h1 {
    font-size: 1.6rem;
}

.active,
.accordion:hover {
    color: #fff;
    opacity: 0.8;
    transition: ease-in 0.2s;
}

.active, 
.accordion::after {
    background-color: #a3b18a;
    opacity: 1;
}


.pannel {
    max-height: 0; /* Start with no height */
    overflow: hidden; /* Hide the content initially */
    transition: 0.6s ease-out; /* Adjust duration (0.6s) and easing */
}

.faq.active .pannel {
    max-height: 300px; /* Adjust this to fit the content size */
}

.pannel p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 10px 50px;
    text-align: start;
}

.faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-color: transparent;
    margin: 18px 0;
}

.faq.active {
    border: none;
}

/* FAQ ENDING */

/*  QUOTE FOR SPACING AT FOOTER */

.quoteSpaceHolder {
    height: 400px;
    display: flex;
    justify-content: center; /* Center the text block horizontally */
    align-items: center;
}

.quoteSpaceHolder > h1 {
    color: #735e59;
    font-size: 7rem;
    font-family: "DynaPuff", serif;
    text-align: center;
    margin: auto;
}

/* Footer Section Start */

/* body {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 100vh;
    background-color: #333;
} */

footer {
    position: relative;
    width: 100%;
    background-color: #735e59;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .social_icon,
footer .menu {
    /* color: #fff; */
    background-color: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon , 
footer .menu li {
    list-style: none;
}

footer .social_icon a {
    font-size: 3em;
    color: #f8f8f8; /* Makes the icon color white */
    background-color: #735e59; /* Sets the brown background */
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    border-radius: 50%; /* Optional: Makes the background circular */
    padding: 10px; /* Adds space inside the background for a circular look */
    text-align: center;
}

/* ??? footer .social_icon:hover {
    transform: translateY(-10px);
    cursor: pointer;
} */

footer .menu li a {
    font-size: 1.2em;
    color: red;
    background-color: transparent;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    color: #fff;
    background-color: transparent;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 2em;
}

footer h2 {
    color: #fff;
    background-color: transparent;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 4em;
}

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(/images/wave.png);
    background-size: 1000px 100px;
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 2.5s linear infinite;
}

@keyframes animateWave {
    0%
    {
        background-position-x: 1000px;
    }
    100%
    {
        background-position-x: 0px;
    }
}

@keyframes animateWave_02 {
    0%
    {
        background-position-x: 0px;
    }
    100%
    {
        background-position-x: 1000px;
    }
}

/* Footer Section End */