:root {
    --cs-color-1: #285430;
    --cs-color-2: #000000;
    --cs-color-3: #046123;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Roboto', sans-serif; */
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.wow {
    visibility: hidden;
}
a,
button,
.btn {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.btn:focus, 
button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
a {
    text-decoration: none;
}
p:last-child {
    margin-bottom: 0;
}
.owl-carousel .owl-item img {
    width: auto;
    height: auto;
}

/* COMMON STYLE :START */

.section-padding {
    padding: 100px 0px;
}

/* ---- heading-1 :start ---- */
.hd-style-1 {
    font-family: 'Kalnia', serif;
    /* font-family: 'DM Serif Display', serif; */
    font-size: 55px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
}
/* ---- heading-1 :end ---- */

/* ---- Sub heading-1 :start ---- */
.subhd-style-1 {
    /* font-family: 'Kalnia', serif; */
    /* font-family: 'DM Serif Display', serif; */
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
}
/* ---- heading-1 :end ---- */

/* ---- btn-style-1 :start ---- */
.btn-style-1 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 12px 22px;
    color: #ffffff;
    background-color: var(--cs-color-1);
    border: 1px solid var(--cs-color-1);
    border-radius: 5px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn-style-1:hover {
    color: #ffffff;
    background-color: var(--cs-color-3);
    border-color: var(--cs-color-3);
}
/* ---- btn-style-1 :start ---- */

/* ---- owldots-1 :start ---- */
.owldots-1 .owl-dots {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
}
.owldots-1 .owl-dots .owl-dot span {
    display: none;
}
.owldots-1 .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--cs-color-1);
    border-radius: 4px;
    background-color: #ffffff;
}
.owldots-1 .owl-dots .owl-dot:hover, 
.owldots-1 .owl-dots .owl-dot.active {
    background-color: var(--cs-color-1);
    border-color: var(--cs-color-1);
}
.owldots-1 .owl-dots .owl-dot.active {
    width: 25px;
}
/* ---- owldots-1 :end ---- */

/* ---- owl-sameheight :start ---- */
.owl-sameheight .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.owl-sameheight .owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}
/* ---- owl-sameheight :end ---- */

/* ---- box-style-1 :start ---- */
.box-style-1 {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1.5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #000000;
}
/* .box-style-1::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5046393557422969) 30%, rgba(0,0,0,0) 70%);
    z-index: 1;
} */
.box-style-1 .bs1image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
    opacity: 0.8;
    z-index: 0;
}
.box-style-1 .bs1text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 20px 20px;
    z-index: 2;

    display: none;
}
.box-style-1 .bs1text h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
}
.box-style-1 .bs1play {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.box-style-1 .bs1play img, 
.box-style-1 .bs1play svg {
    width: 50px;
    height: 50px;
    transition: 0.5s;
    opacity: 0;
}
.box-style-1 .bs1play svg path {
    fill: #ffffff !important;
}

.box-style-1:hover .bs1image {
    transform: scale(1.1);
    opacity: 0.5;
}
.box-style-1:hover .bs1play img, 
.box-style-1:hover .bs1play svg {
    transform: scale(1.1);
    opacity: 1;
}
/* ---- box-style-1 :end ---- */

/* ---- box-style-2 :start ---- */
.box-style-2 {
    width: 100%;
    height: 300px;
    /* aspect-ratio: 1/1.5; */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.box-style-2::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0) 70%);
    z-index: 1;
}
.box-style-2 .bs1image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
    z-index: 0;
}
.box-style-2 .bs1text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 20px 20px;
    z-index: 2;

    top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: 0.5s;
}
.box-style-2 .bs1text h3 {
    font-family: 'Kalnia', serif;
    /* font-family: 'DM Serif Display', serif; */
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
    transition: 0.5s;
}
/* ---- box-style-2 :end ---- */

/* ---- box-style-3 :start ---- */
.box-style-3 {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid var(--cs-color-1);
    border-radius: 15px;
    padding: 30px 30px;
    transition: 0.5s;
}
.box-style-3 h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 0px;
    transition: 0.5s;
}
.box-style-3 h5 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 10px;
    transition: 0.5s;
}
.box-style-3 img {
    max-width: 100%;
    height: auto;
    transition: 0.5s;
}
.box-style-3:hover {
    background-color: var(--cs-color-1);
}
.box-style-3:hover h3 {
    color: #ffffff;
}
.box-style-3:hover h5 {
    color: #ffffff;
}
.box-style-3:hover img {
    filter: brightness(0) invert(1);
}
/* ---- box-style-3 :end ---- */

/* ---- box-style-4 :start ---- */
.box-style-4 {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #000000;
}
.box-style-4 .bs4image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
    opacity: 1;
    z-index: 0;
}
.box-style-4:hover .bs4image {
    transform: scale(1.1);
}
/* ---- box-style-4 :end ---- */

/* ---- form-style-1 :start ---- */
.form-style-1 .form-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 5px;
    display: block;
}
.form-style-1 .form-control {
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.5;
    color: #000000;
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 6px 15px;
    box-sizing: border-box;
}
.form-style-1 textarea.form-control {
    line-height: 1.5;
    padding: 6px 15px;
    border-radius: 10px;
    resize: none;
}
.form-style-1 .form-control:focus {
    box-shadow: none;
    border-color: var(--cs-color-1);
}
.form-style-1 .nice-select {
    width: 100%;
    height: 49px;
    line-height: 47px;
    background-color: var(--cs-color-1);
    border-color: var(--cs-color-1);
    padding: 0px 30px 0px 15px;
}
/* ---- form-style-1 :end ---- */

/* COMMON STYLE :END */

/* preloader section :start */
#preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
#preloader img {
    filter: brightness(0) invert(1);
    animation: preloadmove 2s infinite;
}
@keyframes preloadmove {
    0% {
      transform: scale(0.7);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.7);
    }
}
/* preloader section :end */

/* important-note-wrap section :start */
.important-note-wrap {
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #ffffff;
    background-color: #005e04;
    text-align: center;
    padding: 12px 0px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.important-note-wrap .btn-close {
    width: 40px;
    height: 100%;
    padding: 0px 0px;
    filter: brightness(0) invert(1);
}
/* important-note-wrap section :end */

/* Header section :start */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}
/* Header section :end */

/* home banner section :start */
.homebanner-section {
    background-color: #000000;
}
.homebanner-section .hbitem {
    width: 100%;
    /* height: 800px; */
    height: 100dvh;
    min-height: 700px;
    position: relative;
}
.homebanner-section .hbitem .hbanner-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background-color: rgba(0, 0, 0, 0.6);
}
.homebanner-section .hbitem .hbanner-caption .hbc-inner {
    width: 100%;
    padding: 45px 40px;
}
.homebanner-section .hbitem .hbanner-caption .hbc-inner h1 {
    font-family: 'Kalnia', serif;
    /* font-family: 'DM Serif Display', serif; */
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
}
.homebanner-section .hbitem .hbanner-caption .hbc-inner p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
}
.homebanner-section .hbitem video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    opacity: 1;
}


.homebanner-section .owl-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
}
.homebanner-section .owl-dots .owl-dot span {
    display: none;
}
.homebanner-section .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background-color: #ffffff;
}
.homebanner-section .owl-dots .owl-dot:hover, 
.homebanner-section .owl-dots .owl-dot.active {
    background-color: var(--cs-color-1);
}
/* home banner section :end */


/* review section :start */
.review-section {}

.review-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;

    padding: 30px 30px;
    background-color: #f5f5f5;
    border-radius: 10px;
    cursor: grab;
}
.review-item::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 70px;
    color: var(--cs-color-1);
    position: absolute;
    top: 0px;
    left: 30px;
    /* z-index: -1; */
}
.review-item .ritext {
    width: 100%;
    height: 100%;
    padding-top: 60px;
}
.review-item .ritext p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}
.review-item .riuser {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 24px;
    margin-top: auto;
}
.review-item .riuser .rusr-img {
    flex-shrink: 0;
    flex-grow: 0;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid var(--cs-color-1);
    border-radius: 10px;
    overflow: hidden;
}
.review-item .riuser .rusr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.review-item .riuser .rusr-txt h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 0;
}
.review-item .riuser .rusr-txt p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #424242;
    margin-bottom: 0;
}
/* review section :end */

/* Nearby section :start */
.nearby-section {
    width: 100%;
    height: auto;
    background-color: #f7f7f7;
    padding: 70px 0px;
    position: relative;


    background-color: #000000;
    background-image: url('../images/nearby-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.nearby-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
}


.nearby-owl .nearby-item {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1.5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.nearby-owl .nearby-item::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5046393557422969) 30%, rgba(0,0,0,0) 70%);
    z-index: 1;
}
.nearby-owl .nearby-item .niimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
    z-index: 0;
}
.nearby-owl .nearby-item .nitext {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 20px 20px;
    z-index: 2;
}
.nearby-owl .nearby-item .nitext h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
}
.nearby-owl .nearby-item .nitext p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
}

.nearby-owl .nearby-item:hover .niimage {
    transform: scale(1.1);
}
/* Nearby section :end */


/* Reels section :start */
.reels-section {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    /* padding: 70px 0px; */
}
/* Reels section :end */

/* Services section :start */
.services-section {
    width: 100%;
    height: auto;
    /* background-color: #f1f1f1; */
    /* padding: 70px 0px; */
}
/* Services section :end */

/* About section :start */
.about-section {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.about-section .abt-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.about-section .abt-left img {
    border-radius: 20px;
}
.about-section .abt-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.about-section .abt-right h3 {
    margin-bottom: 10px;
}
.about-section .abt-right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
/* About section :end */


/* Contact Us section :start */
.contactus-section {
    width: 100%;
    height: auto;
}
.contactus-section .cusec-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.contactus-section .cusec-left .cusl-title {
    margin-bottom: 40px;
}
.contactus-section .cusec-left .cusl-block {
    margin-bottom: 24px;
}
.contactus-section .cusec-left .cusl-block:last-child {
    margin-bottom: 0 !important;
}
.contactus-section .cusec-left .cusl-block h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--cs-color-1);
    margin-bottom: 15px;
}
.contactus-section .cusec-left .cusl-block p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0px;
}
.contactus-section .cusec-left .cusl-block a {
    color: inherit;
}
.contactus-section .cusec-left .cusl-block a:hover {
    color: var(--cs-color-1);
}

.contactus-section .cusec-left .cusl-block.clinks p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0px;
}
.contactus-section .cusec-left .cusl-block.clinks p:last-child {
    margin-bottom: 0;
}
.contactus-section .cusec-left .cusl-block.clinks p a {
    /* text-decoration: underline; */
}

.contactus-section .cusec-right {}


.gmap-wrap {
    width: 100%;
    height: 400px;
    position: relative;
}
.gmap-wrap iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
/* Contact Us section :end */










/* footer section :start */
footer {
    width: 100%;
    height: auto;
    color: #ffffff;
    background-color: var(--cs-color-1);
}
footer .ftop-section {
    width: 100%;
    height: auto;
    padding: 70px 0px;
}
footer .ftop-section .ftsleft {
    width: 100%;
    height: 100%;
}
footer .ftop-section .ftsleft .flogo {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}
footer .ftop-section .ftsleft p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    /* color: #000000; */
}
footer .ftop-section .ftsleft .fsocialmedia {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 24px;
    /* color: #000000; */
}
footer .ftop-section .ftsleft .fsocialmedia li {}
footer .ftop-section .ftsleft .fsocialmedia li a {
    color: inherit;
}
footer .ftop-section .ftsleft .fsocialmedia li a:hover {
    color: var(--cs-color-2);
}


footer .ftop-section .ftsmiddle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
footer .ftop-section .ftsmiddle h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}
footer .ftop-section .ftsmiddle p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0px;
}
footer .ftop-section .ftsmiddle p:last-child {
    margin-bottom: 0;
}
footer .ftop-section .ftsmiddle p a {
    color: inherit;
}
footer .ftop-section .ftsmiddle p a:hover {
    color: #000000;
}



footer .ftop-section .ftsright {
    width: 100%;
    height: 100%;
    display: flex;
    /* align-items: center; */
}
footer .ftop-section .ftsright h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}
footer .ftop-section .ftsright .flinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
footer .ftop-section .ftsright .flinks li a {
    color: inherit;
}
footer .ftop-section .ftsright .flinks li a:hover {
    color: var(--cs-color-2);
}


footer .fcopyright-section {
    width: 100%;
    height: auto;
    /* color: #000000; */
    /* background-color: var(--cs-color-3); */
}
footer .fcopyright-section .fcopy-inner {
    border-top: 1px solid #115b17;
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
footer .fcopyright-section .fcopy-inner p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}
footer .fcopyright-section .fcopy-inner p a {
    color: inherit;
}
footer .fcopyright-section .fcopy-inner p a:hover {
    color: #000000;
}
/* footer section :end */

/* inner banner section :start */
.innerbanner-section {
    width: 100%;
    height: 400px;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    position: relative;
}
.innerbanner-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
}
.innerbanner-section h1 {
    font-family: 'Kalnia', serif;
    /* font-family: 'DM Serif Display', serif; */
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
}
.innerbanner-section :last-child {
    margin-bottom: 0;
}
/* inner banner section :end */

/* About Page :start */
.content-wrap-1 {
    width: 100%;
    height: 100%;
}
.content-wrap-1 h3 {
    margin-bottom: 10px;
}
.content-wrap-1 p {
    font-size: 16px;
    font-weight: 400;
    /* line-height: 1.5; */
}
/* About Page :end */