:root {
    /* Theme Colors */
    --primary-color: #709343;
    --secondary-color: #fbda69;
    --tertiary-color: #90c4f0;
    /* Surface Colors */
    --surface-color-1: #fbf7ed;
    --surface-color-2: #e6f3eb;
    --surface-color-3: #ffffff;
    /* Text Colors */
    --heading-color: #222222;
    --subHeading-color: #3b3339;
    --othersHeading-color: #51494f;
    --paragraph-color: #505050;
    --placeholder-color: #9f9f9f;
    --white-color: #ffffff;
    /* State Colors */
    --success-color: #198754;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #0dcaf0;

    /* Neutral Colors */
    --black-color: #0c0c20;

    /* Font Family */
    --font-family-Roboto: "Roboto", sans-serif;
}

/* ================ Global CSS Start ================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    font-family: var(--font-family-Roboto);
    font-weight: normal;
    font-style: normal;
    color: var(--paragraph-color);
    font-size: 14px;
    line-height: 160%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    /* Choose a background color */
    z-index: 9999;
    /* Set a high z-index to display above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary-color);
    /* Choose a color for the spinner */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a,
.button {
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--black-color);
    font-size: 16px;
    font-family: 600;
}

a:focus,
a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

a,
button {
    outline: medium none;
}

.relative {
    position: relative;
}

table {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-Roboto);
    margin-top: 0px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

h1 {
    font-size: 60px;
    color: var(--heading-color);
}

h2 {
    font-size: 48px;
    color: var(--subHeading-color);
}

h3 {
    font-size: 32px;
    color: var(--othersHeading-color);
}

h4 {
    font-size: 24px;
    color: var(--othersHeading-color);
}

h5 {
    font-size: 20px;
    color: var(--othersHeading-color);
}

h6 {
    font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    color: var(--paragraph-color);
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 160%;
    font-family: var(--font-family-Roboto);
}

label {
    color: var(--placeholder-color);
    cursor: poRoboto;
    font-size: 14px;
    font-weight: 500;
}

.form-select {
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

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

*::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--placeholder-color);
}

*::placeholder {
    color: var(--placeholder-color);
}

.page-title {
    color: var(--primary-color);
}

/* ================ Global CSS Start ================== */
/* ================ preloader CSS Start ================== */
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ba55d3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ff00ff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
} */
/* ================ preloader CSS end ================== */

/*================== Common Class Start ================ */
.primary-color {
    background: var(--primary-color);
}

.primary-color-text {
    color: var(--primary-color);
}

.surface-color-1 {
    background: var(--surface-color-1);
}

.section-gap-top {
    padding-top: 60px;
}

.section-gap-bottom {
    padding-bottom: 90px;
}

.section-gap-y {
    padding: 80px 0;
}

.btn-group {
    gap: 30px;
    flex-wrap: wrap;
}

.btn-group .btn.primary,
.btn-group .btn.secondary {
    border-radius: 0;
}


.btn-grad {
    background-image: linear-gradient(to top, #b70b12 0%, #b51f25 51%, #b70b12 100%);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: inline-block;
}

.btn-grad:hover {
    background-position: bottom center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575px) {
    .section-gap-y {
        padding: 50px 0;
    }
}

/* Section Heading */
.heading-wrap {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 575px) {}

/* Section Heading */

/* =============== Buttons CSS Start ================*/
a.btn {
    font-family: var(--font-family-Roboto);
    font-size: 13px;
    font-weight: 500;
    line-height: 160%;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.6s ease-in-out;
}

a.btn.primary {
    background-color: var(--secondary-color);
    color: var(--heading-color);
    border: 1px solid var(--white-color);
}

a.btn.primary:hover {
    background: var(--primary-color);
    color: var(--surface-color-3);
    border: 1px solid var(--white-color);
}

a.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

a.btn.secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

a.text-btn {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
}

a.text-btn:hover {
    color: var(--secondary-color);
}

@media (max-width: 575px) {
    a.btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ---- Play Button ----- */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--white-color);
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    animation: shadows 1.4s linear infinite;
    transition: all ease 400ms;
}

.play-btn:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.play-btn i {
    font-size: 40px;
    color: var(--primary-color);
}

.play-btn:hover i {
    color: var(--white-color);
}

@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

@-webkit-keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

/* ---- Play Button ----- */
/* =============== Buttons CSS End ================*/
/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-social {
    justify-content: flex-end;
}

.top-social .social-icon {
    width: auto;
    height: 50px;
    padding: 0 10px;
    background: var(--primary-color);
    border-radius: 5px;
    color: var(--surface-color-3);
    transition: 0.6s ease-in-out;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-social .social-icon:hover {
    background: var(--secondary-color);
    color: var(--heading-color);
}

@media (max-width: 575px) {
    .social {
        margin-bottom: 20px;
    }
}

/* Social */

/* slider Arrow */

.carousel-item {
    max-height: 80vh;
    transition: transform 1s ease-in-out;
}

.owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 2%;
}

.testimonials-section .owl-dots {
    bottom: -40px;
}

/* .owl-dots .owl-dot {
    height: 6px;
    width: 25px;
    background: #959da0;
    display: inline-block;
    margin: 5px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
}

.owl-theme .owl-dots .owl-dot span {
    background: transparent !important;
}

.owl-dots .owl-dot.active {
    background-color: var(--primary-color);
} */

/* slider Arrow */
/*================== Common Class End ================ */

/*================ Header Section Start =============== */
/* Top Navbar */

/* Bottom Navbar */
/* .navbar .navbar-brand {
    max-width: 270px;
} */

.main-menu {
    background-color: var(--secondary-color);
}

.navbar-nav .nav-link {
    color: var(--black-color);
    font-size: 14px;
    margin: 0 16px;
    padding: 0;
    text-decoration: none;
    font-weight: 500;
    border-right: none;
    text-transform: capitalize;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    /* border-bottom: 2px solid var(--white-color); */
    color: var(--black-color);
    display: inline-block;
}

.dropdown:hover .dropdown-menu {
    display: block;
    background: var(--surface-white);
    border-radius: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.nav-item .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #3b4e25;
    box-shadow: none;
    border: none;
}

.dropdown-menu li {
    position: relative;
    top: 10px;
}

.dropdown-menu .dropdown-item {
    transition: 0.6s ease-in-out !important;
    background: #3b4e25;
    border-color: var(--surface-color-2);
    font-size: 14px;
    font-weight: 400;
    color: #f9fff3;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.dropdown-submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
    display: block !important;
}

@media (max-width: 1399.98px) {
    .navbar-nav .nav-link {
        margin: 0 10px;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 10px 0;
    }

    .navbar-nav img {
        display: none;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .dropdown-menu {
        overflow: hidden;
        margin-bottom: 10px;
    }

    .dropdown-menu .dropdown-item {
        display: block;
        margin-bottom: 0px;
        padding: 10px;
    }
}


/* Pages Banner */
.inner_slider {
    width: 100%;
    position: relative;
    background-color: rgba(32, 43, 20, 0.9);
}

.inner_slider_text {
    width: 100%;
    padding: 97px 0;
    background-position: center;
    background-size: cover;
}

.inner_slider_text h1 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.inner_slider_text h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/*------------ Hero Section Start -------- */

/*------------ Welcome Section Start -------- */
.welcome-item h2 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
}

.welcome-item h2 span {
    font-size: 30px;
    color: var(--black-color);
}

.welcome-item p {
    text-align: justify;
    font-weight: 500;
}

.welcome img {
    width: 50%;
}

@media (max-width: 767.98px) {
    .welcome img {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* --------------- notices ----------------- */
.notices {
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.notices-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: var(--secondary-color);
}

.notices-heading h4 {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}


.notices-heading h4 img {
    margin-right: 6px;
}

.single-notice {
    margin: 0 25px;
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
    border-top: 0;
}

.notices-img iframe {
    height: 500px;
}

.single-notice-img iframe {
    min-height: 950px;
    height: 100%;
}



.single-notice-title {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.notices-scroll {
    width: 100%;
    /* Full width */
    height: 377px;
    /* Height of the ticker view */
    overflow: hidden;
    position: relative;
}

.notices-row {
    display: flex;
    flex-direction: column;
    animation: scroll-vertical 10s linear infinite;
}

.notices-scroll:hover .notices-row {
    animation-play-state: paused;
}

/* Animation for vertical scrolling */
@keyframes scroll-vertical {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.single-notice-title h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

.single-notice p {
    font-weight: 500;
    margin-bottom: 0;
}

.single-notice p a {
    font-size: 14px;
    text-align: justify;
    color: var(--primary-color);
}

.single-notice p a:hover {
    color: var(--primary-color);
}


#box {
    position: relative;
    height: 395px;
    overflow: hidden;
}

#box1 {
    position: absolute;
    width: 100%;
}

@media ( max-width: 1399.98px) {
    #box {
        height: 330px;
    }
}



/* --------------- notices ----------------- */

/* --------------- member ----------------- */
.member-header {
    margin-bottom: 30px;
}

.member-header h1 {
    font-size: 30px;
    font-weight: 800;
}

.member-header p {
    font-size: 18px;
    font-weight: 600;
}

.member-item {
    background-color: rgb(251 218 105 / 15%);
    text-align: center;
    padding: 30px;
    border-radius: 3px;
    transition: .5s;
    display: block;
    height: calc(100%);
}

.member-item .member-icon {
    margin-bottom: 15px;
}

.member-item p {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
}

.member-item:hover {
    background-color: var(--primary-color);
}

.member-item:hover p {
    color: var(--surface-color-3);
}

.member-form {
    margin-bottom: 20px;
}

.member-form .primary {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: .5rem;
}

.members-blog-photo {
    text-align: center;
    border: 1.5px solid #ebebeb;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    display: block;
    height: calc(100%);
    overflow: hidden;
    background-color: #fff;
    padding: 4px;
}

.members-blog-photo img {
    width: 100%;
    border-radius: 18px 18px 0 0;
    height: 225px;
    object-fit: cover;
    object-position: top;
}

.members-blog-photo h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    text-align: center;
    padding: 10px 0 0;
    margin-bottom: 0;
}

.members-blog-photo p {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #5b8531;
    margin-top: 10px;
    margin-bottom: 0;
}

.members-blog-photo .table {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.members-blog-photo .table>:not(caption)>*>* {
    padding: .2rem .5rem;
}

.profile-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 200px;
    width: 100%;
}


/* Profile */
.avatar-4xl {
    height: 8.125rem;
    width: 8.125rem;
}

.avatar {
    position: relative;
    display: inline-block;
}

/* Memorable and Venerable */
.memorable-header h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--black-color);
}

.memorable-header p {
    font-size: 18px;
    font-weight: 600;
}

.memorable-section h4 {
    color: var(--black-color);
    margin-bottom: 30px;
}

.gorgeous-table {
    background: #ffffff;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    border-color: rgb(112 147 67 / 25%);
}

.gorgeous-table thead {
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gorgeous-table td,
.gorgeous-table th {
    vertical-align: middle;
    padding: 1rem;
    font-size: 16px;
}

.gorgeous-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.gorgeous-table tr:hover {
    background-color: rgb(112 147 67 / 15%);
    transition: background-color 0.3s ease;
}
.gorgeous-table tr:last-child {
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0 0 15px 15px;
}


/* Achivements */
.achive {
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
}

.achive img {
    width: 100%;
}


/*  */
.under-construction {
    width: 100%;
}

.under-construction h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #222;
    background: #e9ffce;
    display: block;
    margin: auto;
}


/*==========================================
			Photo Gallery
==========================================*/


.gal_box {
    margin: 0;
    position: relative;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
}

.image {
    display: block;
    height: auto;
    width: 100%;
    border-radius: 4px;
}

.overlay {
    background-color: rgba(0, 66, 123, .8);
    /*background-color: #004e88;*/
    bottom: 0;
    height: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
    border-radius: 5px;
}

.gal-text {
    background-color: #f89d05;
    color: white;
    font-size: 20px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 90%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    width: 100%;
}

.gal-text a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
}

.gal-text a:hover {
    color: #004e88;
    transition: width 2s ease 0s;
}

.gal_box:hover .overlay {
    height: 100%;
}

/*----------- poll start---------- */
.poll {
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    position: relative;
    display: block;
}

.poll-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: var(--secondary-color);
}

.poll-heading h4 {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.poll-heading h4 img {
    margin-right: 6px;
}

.poll-text {
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
}

.poll-text p {
    font-weight: 500;
    color: #1b1b1b;
    text-align: justify;
    margin-bottom: 0;
}

.poll-text p i {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 5px;
}

.poll-item {
    padding: 10px 15px;
}

.poll-item .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.poll-item label {
    font-size: 14px;
    color: #1b1b1b;
}

.poll-item .progress {
    height: 5px;
}

.poll-item .progress-bar {
    height: 5px;
    background-color: var(--primary-color);
}

.poll-footer {
    position: relative;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin-top: 10px;
    border-top: 1px solid var(--secondary-color);
}

.poll-footer a {
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .poll-footer {
        position: relative;
    }
}

/*----------- message start---------- */
.message {
    margin-top: 80px;
    background: linear-gradient(rgba(32, 43, 20, 0.9), rgba(32, 43, 20, 0.9)), url('../images/slider/slider-1.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.message-item {
    background-color: rgb(255 255 255 / 100%);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.message-item img {
    margin-top: 0px;
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
    width: 100px;
}

.message-item p {
    margin-top: 20px;
    font-weight: 500;
    color: #222222;
}

.message-item span {
    color: var(--primary-color);
}

.message-item p a {
    color: var(--primary-color);
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .message-item {
        margin-bottom: 30px;
    }
}

.dreamscape img {
    border: 5px solid #f9d974;
    max-width: 100%;
    padding: 5px;
    border-radius: 20px;
}

.dreamscape-info {
    margin-top: 40px;
}

.dreamscape-info h5 {
    color: var(--black-color);
}

.dreamscape-info h6 {
    color: var(--primary-color);
    /* margin-bottom: 30px; */
}

.dreamscape-info p {
    color: var(--subHeading-color);
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
}

.dreamscape-info p i {
    color: var(--primary-color);
}

/* Story */

.story-item {
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
}

.story-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.story-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--primary-color);
    transition: .5s;
}

.story-carousel .owl-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.story-half>div {
    width: 50%;
    background-color: rgb(249 217 116 / 10%);
}

@media (max-width: 991.98px) {
    .story-half>div {
        width: 100%;
    }
}

.story-half .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--secondary-color);
}

@media (max-width: 991.98px) {
    .story-half .img {
        height: 250px;
    }
}

.story-half .text {
    padding: 90px;
}

@media (max-width: 991.98px) {
    .story-half .text {
        padding: 30px;
    }
}

.story-half .text blockquote p {
    color: #000;
    font-size: 18px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.story-half .text .author {
    margin-top: 50px;
}

.story-half .text .author strong {
    color: #000;
}


/* membership-form */

.membership-form {
    border: 3px solid #CEC663;
}

/*image upload*/

#image-preview {
    width: 100%;
    /*height: 400px;*/
    height: 232px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #ecf0f1;
}

#image-preview input {
    line-height: 200px;
    font-size: 200px;
    position: absolute;
    opacity: 0;
    z-index: 10;
}

#image-preview label {
    background-color: #bdc3c7;
    bottom: 0;
    color: #000;
    cursor: pointer;
    font-size: 14px !important;
    height: 40px;
    left: 0;
    line-height: 40px;
    margin: auto;
    opacity: 0.8;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    top: 88px;
    width: 200px;
    z-index: 5;
}

/*-------------------
   Gallery Page
 -------------------*/

.gallery__page {
    padding: 80px 15px 65px;
}

@media (max-width: 576px) {
    .gallery__page {
        padding: 30px 15px 65px;
    }
}

.gallery__warp {
    max-width: 1570px;
    margin: 0 auto;
}

.gallery__item {
    display: block;
    margin-bottom: 0px;
}

.gallery__item img {
    object-fit: cover;
    max-height: 178px;
    width: 100%;
}

.fr-position-outside {
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}

.fr-position-text {
    color: #fff;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
    background-color: transparent;
}

.fr-thumbnail-active {
    border: 2px solid #8DB952;
}

/*==========================================
			Contact Us
==========================================*/

.contact_info {
    width: 100%;
    overflow: hidden;
}

.con_info_box {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.contact-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.contact-icon i {
    font-size: 70px;
    opacity: .1;
}

.symbol {
    width: 100%;
    overflow: hidden;
}

.symbol img {
    float: right;
    margin-right: 23px;
}

.con_text {
    background-color: rgb(113 147 73 / 10%);
    border-radius: 5px;
    margin-top: 0;
    width: 100%;
}

.con_text h3 {
    font-size: 18px;
    color: #222;
    font-weight: bold;
    padding: 25px 0 0 25px;
}

.con_text p {
    font-size: 14px;
    color: #222;
    padding: 10px 0 30px 25px;
}

.con_text p span {
    padding-left: 25px;
}


.contact_form {
    width: 100%;
    overflow: hidden;
    padding-top: 0;
}

.form_custom_2 {
    background-color: rgb(113 147 73 / 10%);
    background-image: none;
    font-weight: 400;
    border: 1px solid rgb(113 147 73 / 20%);
    border-radius: 4px;
    -moz-outline-color: #222;
    outline-color: #222;
    -webkit-text-fill-color: #222;
    color: #222222;
    display: block;
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    margin-bottom: 40px;
}

.btn_custom_2 {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    line-height: 50px;
    padding: 0 50px;
    color: #fff;
    background-image: none;
    background: #4a622b;
    border: 1px solid #4a622b;
    margin-top: 15px;
    font-size: 16px;
}

.btn_custom_2:hover {
    color: #fff;
    background-image: none;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.map {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.form-box {
    width: 100%;
    display: block;
    padding: 15px 0;
    margin: auto;
}

.form-box h2 {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    text-align: center;
}

.form-box img {
    margin: 0 auto;
    display: block;
}

.btn_custom_form {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    line-height: 30px;
    width: 200px;
    color: #fff;
    background-image: none;
    background: #4a622b;
    border: 1px solid #4a622b;
    margin-top: 15px;
    font-size: 16px;
    display: block;
    margin: 15px auto;
}

.btn_custom_form:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.textarea-h {
    min-height: 105px !important;
}


.signature {
    width: 100%;
    overflow: hidden;
    margin: 50px 0 0 10px;
    text-align: center;
}

.signature h4 {
    font-size: 15px;
    color: #000;
    text-align: center;
    border-top: 1px dashed #838383;
    padding-top: 20px;
}


/*  */
.bg-appointment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(9, 9, 9, .9)), url(../images/slider/slider-1.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 4px;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary-color);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

/*----------- footer start---------- */

.counter-number {
    text-align: center;
    width: 18%;
    margin: 35px auto;
    background: #4a622b;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 10px;
}

.counter-number span {
    display: inline-block;
    padding: 8px 8px 8px;
    border-radius: 3px;
    background: #e9ffce;
    margin-right: -2px;
    border: 1px solid #222;
    font-size: 20px;
    font-weight: bold;
    color: #4a622b;
}

@media (max-width: 991.98px) {
    .counter-number {
        width: 90%;
        margin-bottom: 10px;
    }
}

.footer_wrapper {
    width: 100%;
    background-color: #222222 !important;
    overflow: hidden;
}

.footer_main {
    width: 100%;
    overflow: hidden;
}

.footer_logo {
    width: 100%;
    margin: 25px 0 0;
}

.social {
    width: 100%;
    overflow: hidden;
}

.social ul {
    margin: 0 auto;
    width: 150px;
    display: flex;
}

.social ul li {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4a622b;
    margin: 0 5px;
}

.social ul li a {
    font-size: 14px;
    color: #e9ffce;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.social ul li:hover {
    background-color: #fff;
}

.social ul li:hover a {
    color: var(--primary-color);
}

.footer_image{
    /* overflow: hidden; */
    padding: 15px 0 35px;
    width: 100%;
    display: block;
    margin: auto;
}

.footer_menu {
    overflow: hidden;
    padding: 15px 0 35px;
    width: 45%;
    display: block;
    margin: auto;
}

.footer_menu ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-flow: wrap;
}

.footer_menu ul a {
    display: block;
    color: #727272;
    font-size: 12px;
    padding: 7px 9px;
    text-decoration: none;
    text-transform: capitalize;
    border: 1px solid #434343;
    border-radius: 5px;
}

.footer_menu ul a:hover {
    color: rgb(32, 43, 20);
    background-color: #e9ffce;
    border-radius: 5px;
    border: 1px solid #e9ffce;
}

@media (max-width: 991.98px) {
    .footer_menu {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer-text {
    color: #9b9b9b;
    font-size: 18px;
    margin-bottom: 20px;
}


#footer {
    width: 100%;
    overflow: hidden;
    background-color: var(--secondary-color);
    padding: 15px 0;
}

.footer_bottom p {
    font-size: 12px;
    font-weight: 500;
    color: #12314b;
    text-align: center;
}

.footer_bottom p a {
    font-size: 12px;
    font-weight: 600;
}

/*-------------- footer end--------- */