@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
    --green: #576613;
}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none; border: none;
    text-decoration: none;
    transition: all .2s linear;
}

* ::selection {
    background: var(--green);
    color: #fff;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background-color: #fff;
 }
 
html::-webkit-scrollbar-thumb{
    background-color: var(--green);
 }

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-behavior: smooth;
}
ul, li {
    list-style: none;
}


section {
    padding: 2rem 9%;
}

.heading {
    text-align: center;
    padding: 2.5rem 0;
}
.heading span {
    font-size: 3.5rem;
    background: rgba(205, 209, 185, .2);
    color: var(--green);
    border-radius: .5rem;
    padding: .2rem 1rem;
}
.heading .space {
    background: none;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--green);
    color: #fff;
    padding: .8rem 3rem;
    border: .2rem solid var(--green);
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: rgba(205, 209, 185, .2);
    color: var(--green);
}

.logo {
    width: 150px;
    height: auto;
}


header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .3rem;
    padding: 2rem 9%;
}
header .nav-bar-cotainer, .search-social, .book-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* header .nav-bar-cotainer .navbar a {
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    margin: 0 .8rem;
}
header .nav-bar-cotainer .navbar a:hover {
    color:var(--green);
}

header .nav-bar-cotainer .icons i {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    margin-left: 2rem;
}
header .nav-bar-cotainer .icons i:hover {
    color:var(--green);
} */




/* Book-info ☪ 
    /* Booking Info  */
.book-info {
    position: fixed;
    top: 131px;
    left: 0;
    right: 0;
    z-index: 1;
    background: #111111ab;
    display: flex;
    justify-content: space-between;
    padding: .8rem 9%;
}
.book-info.hide {
    display: none;
}

.book-info a {
    font-size: 1.4rem;
    color: #fff;
    margin-left: 1rem;
}
.book-info .donate i{
    margin-right: .9rem; 
}
/* .book-info a:hover {
    color: var(--green);
} */
book-info end  */




/* New nav-bar design  */
header .navbar ul {
    list-style: none; 
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 1.8rem;
    margin-left: 2rem;
    display: block;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    position: relative;
}

header .navbar li a::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--green);
    position: absolute;
    top: -.75rem;
    left: 0;
    right: 0;
    transform: scale(0,1);
    transition: transform ease-in-out 250ms;
}

header .navbar a:hover::before {
    transform: scale(1,1);
}

header .navbar a:hover{
    color: var(--green)
}
header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 256px;
    margin: 0;
    padding: 25px 0;
    background: #333;
    z-index: 2000;
    display: none;
}

header .navbar ul li ul li {
    width: 100%;
}
 

header .navbar ul li ul li a {
    padding: 4px 10px 4px 30px;
    margin: 0;
    font-size: 1.5rem;
    color: #eee
}
 

header .navbar ul li:hover > ul {
    display: initial;
    transition: 0.3s ease-in;
}

header .navbar ul li ul li:hover {
   transition: .3s linear; 
   padding-left: 45px;
}

/* End nav-bar */


header .nav-bar-cotainer .search-bar-container {
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header .nav-bar-cotainer .search-bar-container.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .nav-bar-cotainer .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .nav-bar-cotainer .search-bar-container #search-bar {
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
    border-radius: .5rem;
}
header .nav-bar-cotainer .search-bar-container label {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;
}
header .nav-bar-cotainer .search-bar-container label:hover {
    color:var(--green);
}
/* header Icons  */
header .search-social {
    border-bottom: .1px solid rgba(255, 255, 255, .2);
    padding-bottom: .6rem;
}
header .search-social a {
    font-size: 1.5rem;
    color: #fff;
    display: inline-block;
}
header .search-social .search-bloc i:hover {
    color:var(--green);
}
header .search-social .social-bloc i:hover {
    color:var(--green);
}


header .search-social .search-bloc i {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin: 0 1rem;
}

header .search-social .social-bloc i {
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    margin-left: 2rem;
}




.login-form-container {
    position: fixed;
    top: -120%; left: 0;
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form-container.active {
    top: 0;
}

.login-form-container form {
    margin: 2rem;
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    background: #fff;
    width: 50rem;
}

.login-form-container form h3 {
    font-size: 3rem;
    color: #444;
    text-transform: unset;
    text-align: center;
    padding: 1rem 0;
}
.login-form-container form .box {
    width: 100%;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    margin: .6rem 0;
    border: .1rem solid rgba(0, 0, 0, .3);
    text-transform: none;
}
.login-form-container form .box.box:focus {
    border-color: var(--green);
}

.login-form-container form #remember {
    margin: 2rem 0;
}

.login-form-container form label {
    font-size: 1.5rem;
}
.login-form-container form .btn {
    display: block;
    width: 100%;
}
.login-form-container form p {
    padding: .5rem 0;
    font-size: 1.5rem;
    color: #666;
}
.login-form-container form p a {
    color: var(--green);
}
.login-form-container form p a:hover {
    color: #333;
    text-decoration: underline;
}

.login-form-container #login-form-close {
    position: absolute;
    top: 2rem; right: 3rem;
    font-size: 5rem;
    color: #fff;
    cursor: pointer;
}

#menu-bar {
    color: #fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}
#menu-bar:hover {
    background: #fff;
    color: #333;
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
}
.home .content {
    text-align: center;
}
.home .content h3 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .1);
}
.home .content p {
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem 0;
}

.home .video-container video {
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home .controls {
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0, 0, 0, .7);
    position: relative;
    top: 10rem;
}

.home .controls .vid-btn {
    height: 2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin: 0 .5rem;
}
.home .controls .vid-btn.active {
    background: var(--green);
}


/* Statistics section  */
.impact-statistics {
    color: #5B605C;
    padding: 30px 0;
    margin: 0 auto;
    background-color: #e5e5e5;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.impact-statistics .container {
    display: flex;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.impact-statistics .container .element {
    flex: 1 1 30rem;
    padding: 2rem;
    text-align: center;
}
.impact-statistics .container .element .ulistration {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
}
.impact-statistics .container .element .ulistration .img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.impact-statistics .container .element .description p {
    font-size: 2rem;
}
.impact-statistics .container .element .description p span {
    font-size: 2.2rem;
    color: var(--green);
}

/* book now section  */
.book .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.book .row .image {
    flex: 1 1 40rem;
}
.book .row .image img {
    width: 100%;
}

.book .row form {
    flex: 1 1 40rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}
.book .row form .inputBox {
    padding: .5rem 0;
}
.book .row form .inputBox input:focus {
    border-color: var(--green);
}
.book .row form .inputBox input {
    width: 100%;
    padding: 1rem;
    border: .1rem solid rgba(0, 0, 0, .1);
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
}

.book .row form .inputBox h3 {
    font-size: 2rem;
    padding: 1rem 0;
    color: #666;

}

/* Packages section */
.packages .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.packages .box-container .box {
    flex: 1 1 30rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
}
.packages .box-container .box img {
    height: 25rem;
    width: 100%;
    object-fit: cover;
}
.packages .box-container .box .content {
    padding: 2rem;
}
.packages .box-container .box .content h3 {
    font-size: 2rem;
    color: #333;
}
.packages .box-container .box .content h3 i {
    color: var(--green);
}
.packages .box-container .box .content p {
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}
.packages .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--green);
}
.packages .box-container .box .content .price {
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}
.packages .box-container .box .content .price span {
    color: #666;
    font-size: 1.5rem;
    text-decoration: line-through;
}

.gallery .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.gallery .box-container .box {
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    border: 1rem solid #fff;
    border-radius: .5rem;
    flex: 1 1 30rem;
    height: 25rem;
    position: relative;
}
.gallery .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.gallery .box-container .box .content {
    position: absolute;
    top: -100%; left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    padding: 2rem;
    padding-top: 5rem;
}

.gallery .box-container .box:hover .content {
    top: 0;
}

.gallery .box-container .box .content h3 {
    font-size: 2.5rem;
    color: var(--green);
}

.gallery .box-container .box .content p {
    font-size: 1.5rem;
    color: #fff;
    padding: .5rem 0;
}

/* contact section  */

.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.contact .row .image {
    flex: 1 1 35rem;
}
.contact .row .image img {
    width: 100%;
}

.contact .row form {
    flex: 1 1 50rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}
.contact .row form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact .row form .inputBox input, .contact .row form textarea {
    width: 49%;
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    background: rgba(87, 102, 19, .1);
    text-transform: none;
}
.contact .row form textarea {
    height: 15rem;
    resize: none;
    width: 100%;
}

/* brand slider show */
.brand-container {
    text-align: center;
    margin: 5rem 0;
}
.brand-container .swiper-wrapper img {
    height: 100px;
    width: 100px;
}
.brand-container .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
/* footer section */
.footer {
    background: #333;
}
.footer .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer .box-container .box {
    padding: 1rem 0;
    flex: 1 1 25rem;
}
.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: .7rem 0;
    color: #fff;
}
.footer .box-container .box p {
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #eee;
}
.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #eee;
}
.footer .box-container .box a:hover {
    color: var(--green);
    text-decoration: underline;
}
.credit {
    background: #111;
    color: #fff;
}
.credit .copy-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(87, 102, 19, .5);
}
.credit .copy-box .copy {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 530px;
}

.credit .copy-box .social-md i {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-left: 2rem;
}
.credit .copy-box .social-md i:hover {
    color:var(--green);
}

/* discription section */

.desciption {
    margin-top: 10rem;
}

.desciption .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: baseline;
    margin-bottom: 5rem;
}
.desciption .row .image {
    height: 400px;
    flex: 1 1 50rem;
    
}
.desciption .row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desciption .row .content {
    flex: 1 1 50rem;
    padding: 0 2rem;
}
.desciption .row .content .title span {
    color: var(--green);
    font-size: 2rem;
    text-transform: none;
}
.desciption .row .content .title h3 {
    font-size: 3rem;
    color: #333;
    padding: 0 0 1rem 0;
    text-transform: uppercase;
}
.desciption .row .content p {
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
    line-height: 1.5;
    text-transform: none;
}


/* chatbot section  */
.chatbot {
   position: fixed;
   right: 40px;
   bottom: 100px;
   width: 250px;
   height: 350px;
   transform: scale(0.5);
   opacity: 0;
   overflow: hidden;
   background: #fff;
   z-index: 1000;
   border-radius: 15px;
   /* position: relative; */
   box-shadow: 0 0 128px 0 rgba(0, 0, 0, .1), 0 32px 64px -48px rgba(0, 0, 0, .5);
}
.active .chatbot {
    transform: scale(1);
    opacity: 1;
    transition: .5s;
    pointer-events: auto;
}

.chatbot-toggler {
    position: fixed;
    right: 40px;
    bottom: 35px;
    width: 50px;
    height: 50px;
    background: var(--green);
    z-index: 1000;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chatbot-toggler span {
    position: absolute;
    font-size: 2.5rem;
    color: #fff
}
.active .chatbot-toggler span:first-child,
.chatbot-toggler span:last-child {
    opacity: 0;
}
.active .chatbot-toggler span:last-child {
    opacity: 1;
    transition: .5s;
}
/* .chatboot-header {
    position: relative;
    width: 100%;
} */
/* .show-chatbot .chatbot span {
    position: absolute;
    right: 20px;
    top: 50%;
} */

/* 
    Animation with Intersection Observer
*/

.reveal [class*="reveal-"] {
    opacity: 0 !important;
    transform: translateY(30px)!important;
}

[class*="reveal-"] {
    transition: 1s cubic-bezier(.54, .01, 0, .99);
}

.reveal-2 {
    transition: .1s;
}
.reveal-3 {
    transition: .2s;
}
.reveal-4 {
    transition: .3s;
}









/* media queries */
@media (max-width:1200px) {
    html {
        font-size: 55%;
    }
}
@media (max-width:991px) {
    header {
        padding: 2rem;
    }
    section {
        padding: 2rem;
    }
    /* .book-info {
        position: fixed;
        top: 123px;
        left: 0;
        right: 0;
    } */
}

/* Booking info  */
@media (max-width: 991px) and (max-width: 1200px) {
    .book-info {
        position: fixed;
        top: 123px;
        left: 0;
        right: 0;
    }
    
}

@media (max-width:768px) {
   #menu-bar {
       display: initial;
   }
   header .navbar {
       position: absolute;
       top: 100%; left: 0; right: 0;
       background: #333;
       border-top: .1rem solid rgba(255, 255, 255, .2);
       padding: 1rem 2rem;
       clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }
   header .nav-bar-cotainer .navbar a {
       display: block;
       width: 100%;
       border-radius: .5rem;
       padding: 1rem;
       margin: 1rem 0;
       background: #222;

   }
   .credit .copy-box{
       gap: 1.5rem;
   }
   .book-info {
        display: none;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
    .heading span {
        font-size: 2.5rem;
    }
    /* header {
        position: static;
    } */
    .contact .row form .inputBox input {
        width: 100%;
    }
    .chatbot {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .chatbot iframe {
        height: 90%;
    }
    .social-bloc {
        display: none;
    }
    .search-bloc, .social-md {
        margin: 0 auto;
    }
}