/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");


:root {
    --white: #fff;
    --black: #000;
    --primary: #d71e1a;
    --secondary: #fbf861;
    font-family: "Roboto", serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", serif;
}

section {
    position: relative;
    padding: 3rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    margin: 0;
    font-family: "Inter", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Inter", serif;
    margin: 0;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--black);
    text-transform: capitalize;
    font-weight: bold;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 0.438rem;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.slideOne .themeBtn {
    background: #fff;
}

.themeBtn:hover {
    background: #b39970;
    transition: 0.5s ease;
    color: #fff;
}

ul.footer-social li a i:hover {
    background: #fff;
    color: #000;
    transition: 0.4s ease;
}

ul.qiuck-link li:hover {
    transform: translate(10px);
    transition: 0.7s ease;
}

.about-content .themeBtn:hover {
    background: #fff;
    color: #000;
    transition: 0.4s ease;
}

/* NAV HEADER CSS */

header {
    margin: 0 auto;
    width: 100%;
    transition: 0.3s ease-in-out;
    padding-bottom: 1.3rem;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 3.75rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    font-family: "Roboto", serif;
    position: relative;
}

.navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background: #000;
    bottom: -2px;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
    transition: 0.5s ease;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 850px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
    height: 14.313rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 3.125rem;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
}

.main-slider p {
    color: var(--white);
    font-weight: 600;
    margin: 1rem 0;
    font-size: 1.25rem;
    line-height: 1.7;
    text-transform: capitalize;
}

/* !MAIN HERO SLIDER CSS */

/* Top-Bar-Sec Css Start */
.top-imag img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(58%) saturate(4220%) hue-rotate(355deg) brightness(104%) contrast(88%);
}

figure.top-imag {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

figure.top-imag h5 {
    text-transform: capitalize;
    color: #767474;
    font-size: 0.938rem;
    font-weight: 400;
    line-height: 1.4;
}

figure.top-imag h5 span {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    display: block;
    text-transform: initial;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 1.688rem;
    justify-content: end;
}

.top-img-main {
    display: flex;
    align-items: center;
    gap: 3.125em;
}

.top-right .themeBtn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: 1.688rem;
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: capitalize;
    padding: 1.563rem 2rem;
    border-radius: 0.625rem;
    color: #fff;
}

.topbar {
    padding: 1.5em 0;
}

.top-main {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 2.188rem;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: 3.75rem;
}

.nav-social li a i {
    height: 2.188rem;
    width: 2.188rem;
    display: grid;
    place-items: center;
    border-radius: 3.125rem;
    background-color: #444342;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.955rem;
}

.slideOne h3 {
    font-size: 1.875rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    line-height: 2.6;
}

.homeSlider .slide-inner::before {
    position: absolute;
    content: "";
    inset: 0;
    background: rgb(0 0 0 / 40%);
    z-index: -1;
}

.homeSlider .swiper-pagination-bullet {
    height: 1.313rem;
    width: 1.313rem;
}

.homeSlider .swiper-pagination {
    left: 2.5rem;
    writing-mode: sideways-rl;
    display: flex;
    gap: 1.188rem;
    top: 50%;
    bottom: 0;
    margin: auto;
}

.homeSlider .swiper-pagination-active {
    background: #fff;
}

/* Top-Bar-Sec Css Start */

/* About-Sec Css Start */
.subHead {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: capitalize;
    color: #a83939;
    line-height: 1.2;
}

.mainHead {
    font-size: 3.125rem;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1;
    color: #1f1f1f;
}

.about-content p {
    font-size: 1.25rem;
    color: #4f4f4f;
    line-height: 2.05;
    margin: 1.25rem 0;
    width: 85%;
}

.about-content .themeBtn {
    color: #fff;
    padding: 1.625rem 2rem;
}

.about-content .subHead {
    margin-bottom: 0.313rem;
}

section.abbut-sec {
    padding: 8.125rem 0;
    background-color: #e9e1d4;
}

/* About-Sec Css End */

/* Services-Sec Css Start */
.services-wrapp {
    text-align: center;
    margin-top: 3.438rem;
}

.services-wrapp h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.services-wrapp p {
    color: #747474;
    font-weight: 500;
    line-height: 1.9375;
}

section.services-sec {
    padding: 4.063rem 0;
}

section.services-sec .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

section.services-sec .swiper-button-next {
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 3.125rem;
    background-color: rgb(199 197 197 / 20%);
    color: #595959;
    right: 6%;
}

section.services-sec .swiper-button-prev {
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 3.125rem;
    left: 6%;
    background: rgb(199 197 197 / 20%);
    color: #595959;
}

section.services-sec .themeBtn {
    margin-top: 3.125rem;
    color: #fff;
}

/* Services-Sec Css End  */

/* Play-Sec Css Start */

section.play-sec a i {
    background: #ffff;
    height: 6.563rem;
    width: 6.563rem;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: #1f1f1f;
    font-size: 1.5rem;
    z-index: 1;
}

figure.play-Imag {
    position: relative;
}

figure.play-Imag a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
}

section.play-sec a::before {
    position: absolute;
}

section.play-sec a::before {
    position: absolute;
    content: "";
    height: 10rem;
    width: 10rem;
    background: rgb(255 255 255 / 32%);
    border-radius: 100%;
}

/* Play-Sec Css End  */

/* Subscribe-Sec Css Start */
.subscribe-main h2 {
    font-size: 1.125rem;
    font-weight: 300;
    text-transform: capitalize;
    border: 1px solid #a59a8d;
    width: fit-content;
    margin: auto;
    text-align: center;
    padding: 0.313rem 1.063rem;
    border-radius: 1.875rem;
    letter-spacing: -0.25px;
    color: #a59a8d;
    line-height: 1.5;
}

.subscribe-main h5 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding-bottom: 1.875rem;
}

.subscribe-main h5 sup {
    font-size: 3.125rem;
    color: #403226;
}

.subscribe-main h5 strong {
    font-size: 4.688rem;
    color: #403226;
    font-weight: 600;
}

.subscribe-main small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #403226;
    text-transform: capitalize;
}

.subscribe-wrapp {
    background-color: #f3f3f3;
    padding: 3.438rem 4.813rem 4.688rem;
    margin-top: 3rem;
    border-radius: 1.75rem;
    border: 1px solid #c6c6c6;
    text-align: center;
}

.subscribe-wrapp p {
    color: #4f4f4f;
    line-height: 2.1;
    margin: 2rem 0;
    text-align: start;
}

.subscribe-content .themeBtn {
    margin-top: 1rem;
    background: #518d4a;
    color: #fff;
}

.subs-top {
    border-bottom: 1px solid rgb(64 50 38 / 21%);
}

.subscribe-wrapp:hover {
    background-color: #ecd94f8a;
    transition: 0.8s ease;
}

.subscribe-wrapp:hover p {
    color: #4f4f4f;
}

.subscribe-wrapp:hover .themeBtn {
    background: var(--primary);
    transition: 0.9s ease;
}

.subscribe-wrapp:hover h2 {
    background: #fff;
}

/* Subscribe-Sec Css End  */

/* Community-Sec Css Start */
.community-sec {
    background: url(../images/com-bg.webp) center/cover no-repeat;
    height: 1099px;
}

section.community-sec .mainHead {
    margin: 0.875rem 0;
}

/* Community-Sec Css End  */

/* Testimonial-Sec Css Start */
section.testmonial-sec {
    background: #3f6f35;
    padding: 4.688rem 0 4.375rem;
}

.test-main {
    text-align: center;
    border: 1px solid #ffff;
    padding: 57px 37px 80px;
    background: #fff;
    border-radius: 1.25rem;
    height: 500px;
    position: relative;
}

ul.test-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

ul.test-stars li a i {
    color: #f2c50d;
}

.test-main p {
    color: #444444;
    font-size: 1.063rem;
    margin: 2.188rem 0 2.625rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.9;
}

figure.testi-imag {
    height: 5rem;
    width: 5rem;
    background: #e09939;
    display: grid;
    place-items: center;
    border-radius: 3.125rem;
    position: absolute;
    left: 36%;
    margin: auto;
    bottom: -2.5rem;
}

.test-main h5 {
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: capitalize;
}

section.testmonial-sec .mainHead {
    margin-bottom: 4rem;
    color: #fff;
}

section.testmonial-sec .subHead {
    color: #fff;
}

.testi-slider {
    padding-bottom: 9rem;
}

section.testmonial-sec .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

section.testmonial-sec .swiper-button-prev {
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 3.125rem;
    left: -8%;
    background: rgb(199 197 197 / 20%);
    color: #fff;
}

section.testmonial-sec .swiper-button-next {
    height: 3.75rem;
    width: 3.75rem;
    background: rgb(199 197 197 / 20%);
    color: #fff;
    right: -8%;
    border-radius: 3.125rem;
}

section.testmonial-sec .swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
    background: #000;
}

section.testmonial-sec .swiper-pagination {
    position: absolute;
}

section.testmonial-sec .swiper-button-prev:hover {
    background: rgb(123 123 123 / 20%);
    transition: 0.5s ease;
}

section.testmonial-sec .swiper-button-next:hover {
    background: rgb(123 123 123 / 20%);
    transition: 0.5s ease;
}

/* Testimonial-Sec Css End  */

/* Footer-Sec Css Start */
footer {
    padding: 6rem 0 0;
    background: #000;
}

footer h2 {
    font-size: 1.375rem;
    color: #fff;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 1.7rem;
}

ul.qiuck-link li a {
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
    font-family: "Roboto";
}

ul.qiuck-link li+li {
    margin: 0.625rem 0;
}

.footer-imag img {

    filter: brightness(0) saturate(100%) invert(19%) sepia(58%) saturate(4220%) hue-rotate(355deg) brightness(104%) contrast(88%);
}

figure.footer-imag {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

figure.footer-imag h5 {
    font-size: 0.938rem;
    color: #a8a6a6;
    text-transform: capitalize;
    font-weight: 400;
}

figure.footer-imag h5 span {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 1rem;
    margin-top: 0.313rem;
}

ul.footer-social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.563rem;
}

ul.footer-social li a i {
    border: 1px solid #fff;
    height: 2.5rem;
    width: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 3.125rem;
    color: #fff;
}

form.footer-form input {
    background-color: transparent !important;
    border: 1px solid #585858;
    outline: unset !important;
    box-shadow: unset !important;
    height: 4.25rem;
    width: 100%;
    border-radius: 0.625rem;
    position: relative;
}

form.footer-form button {
    width: 12rem;
    border-radius: 0.625rem;
    position: absolute;
    right: 0;
    top: 0;
    height: 4.25rem;
    border: unset;
    color: #fff;
}

form.footer-form input::placeholder {
    font-size: 0.875rem;
    font-weight: 500;
    color: #757575;
    text-transform: capitalize;
    font-family: "Inter", serif;
}

figure.footer-imag+figure.footer-imag {
    margin: 1.563rem 0;
}

.footer-bottom p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffff;
}

.footer-bottom {
    border-top: 1px solid #fff;
    margin-top: 4rem;
    padding: 1.563rem 0;
}

/* Footer-Sec Css End  */

/* Inner-Pages Css Start */
.service-page .services-wrapp {
    text-align: inherit;
    margin-top: auto;
}

.service-page .services-wrapp h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-page .themeBtn {
    margin-top: 1rem;
}

.service-page .services-img img {
    width: 100%;
}

.service-page .services-main {
    margin-bottom: 3rem;
}

.service-page .row+.row {
    margin-top: 3rem;
}

.service-subscribe {
    padding: 2rem 0 6rem 0;
}

.communicty-page .themeBtn {
    color: #fff;
}

.communicty-page {
    padding: 7rem 0 0 0;
}

.inner-bann .overlay {
    position: absolute;
    display: flex;
    align-items: center;
    inset: 0;
}

.inner-bann {
    position: relative;
}

.overlay h2 {
    font-size: 3.125rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

section.play-sec.about-p-play {
    padding: 0;
}

section.our-sec {
    background: #e9e1d4;
    padding: 7.813rem 0;
}

.our-content p {
    font-size: 1.25rem;
    color: #4f4f4f;
    line-height: 2.05;
}

.our-content h2 {
    font-size: 3.125rem;
    font-weight: 800;
    text-transform: capitalize;
    color: #1f1f1f;
}

form.contact-form input {
    height: 78px;
    width: 100%;
    border-top: unset;
    border-right: unset;
    border-left: unset;
    border-bottom: 1px solid #7d9a6c;
    background-color: transparent !important;
    border-radius: unset;
    outline: unset !important;
    box-shadow: unset !important;
}

section.contact-sec {
    background: #e9e1d4;
}

form.contact-form label {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0 2 75 / 50%);
    text-transform: capitalize;
}

section.contact-sec h2 {
    font-size: 3.125rem;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 7.5rem;
}

form.contact-form button {
    border: unset;
    height: 68px;
    width: 243px;
    margin-top: 1rem;
    color: #fff;
}

form.contact-form button:hover {
    background: #000;
    color: #ffff;
    transition: 0.5s ease;
}

section.contact-sec iframe {
    border-radius: 0 100px 0 100px;
}

section.contact-sec h5 {
    font-size: 22px;
    color: #00054b;
    font-weight: bold;
}

section.contact-sec h5 span {
    display: block;
    font-weight: 500;
    color: #000000;
    font-size: 1rem;
    margin-top: 5px;
}

section.contact-sec h5+h5 {
    margin: 90px 0;
}

ul.contact-social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

ul.contact-social li a i {
    border: 1px solid #000;
    background: #444342;
    height: 2.188rem;
    width: 2.188rem;
    display: grid;
    place-items: center;
    border-radius: 3.125rem;
    color: #fff;
}

section.subscribe-sec .subHead {
    margin-bottom: 0.5rem;
}

/* Calender Page Start */
.calender {
    background-color: #d8261d1f;
    padding: 5rem 0;
}

/* Calender CSS */
.evo-calendar,
.calendar-inner,
.calendar-events {
    background-color: #dc5553 !important;
    border-radius: 25px !important;
    border: 0 !important;
}

.calendar-events::-webkit-scrollbar {
    width: 0px !important;
}

.calendar-sidebar {
    background-color: #5e342b !important;
    box-shadow: 15px 0 20px 0 rgba(0, 0, 0, 0.12) !important;
}

.calendar-sidebar>span#sidebarToggler {
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.sidebar-hide .calendar-inner {
    width: calc(100% - 0px) !important;
}

button.icon-button>span.bars::after {
    width: 16px;
    height: 4px;
    border-radius: 4px;
}

button.icon-button>span.bars::before {
    width: 27px;
    height: 4px;
    border-radius: 4px;
}

button.icon-button>span.bars {
    width: 24px;
    height: 4px;
    border-radius: 4px;
}

.calendar-sidebar>.calendar-months>li.active-month {
    background: var(--secondary) !important;
    color: var(--black) !important;
}

.day.calendar-active.calendar-today,
tr.calendar-body .calendar-day .day.calendar-active,
tr.calendar-body .calendar-day .day.calendar-active:hover {
    background: #5e342b !important;
    border: unset !important;
    color: var(--white) !important;
}

tr.calendar-body .calendar-day .day {
    color: var(--white) !important;
    font-size: 22px !important;
}

tr.calendar-header .calendar-header-day {
    font-size: 22px !important;
    color: var(--white) !important;
    /* font-family: "Bright" !important; */
    font-family: "Inter", serif;
}

th[colspan="7"] {
    font-size: 37px !important;
    color: var(--white) !important;
    /* font-family: "Bright" !important; */
    font-family: "Inter", serif;
}

.submissionForm {
    background-color: var(--secondary);
    border-radius: 15px;
    padding: 5.125rem;
}

.submissionForm input,
.submissionForm .img-upload {
    border: 1px solid var(--black);
    border-radius: 50px;
    padding: 0 1.5rem !important;
    width: 100%;
    height: 65px;
    color: var(--black) !important;
    margin-bottom: 1.875rem;
    background-color: transparent !important;
    color-scheme: light dark;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.submissionForm .img-upload i {
    margin-left: auto;
}

.submissionForm select {
    height: 65px;
    border-radius: 50px;
    background-color: transparent !important;
    border: 1px solid var(--black);
    box-shadow: none !important;
}

.submissionForm input:focus,
.submissionForm select:focus {
    border-color: var(--black);
}

.submissionForm select option {
    background-color: var(--primary);
    color: var(--white);
}

.submissionForm input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.text-dark {
    color: var(--black) !important;
}


/* Calender Page End */

.top-logo {
    width: 260px !important;
}

.top-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    color: #fbf861 !important;
}

/* Inner-Pages Css End  */

.lateral-program {
    padding: 5rem 0 !important;
}

.lateral-program--text {
    /* background: var(--primary); */
    background-image: url(../images/op.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    color: var(--white);
    border-radius: 1rem;
}
.pre-img{
    width: 50%;
}
.lateral-program ul{
    list-style: disc;
    text-align: left !important;
}
.lateral-program ul li{
    font-weight: 800;
    font-style: italic;
    color: var(--primary);
}
.lateral-program .mainHead{
    text-align: left !important;
    font-size: 33px;
    line-height: 1.3;
}
.lateral-program--text .mainHead {
    color: var(--white);
}
.lateral-program--content p{
    color: var(--black);
    text-align: left !important;
}


#eventAddButton{
    display: none !important;
}

.event-container:hover {
    background: var(--primary) !important;
}

.event-container:hover p {
    color: var(--white) !important;
}

.event-container:hover .event-bullet-event {
    background: var(--white) !important;
}

/* .event-list {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 70vh;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
} */

/* Hide scrollbars visually */
/* .event-list::-webkit-scrollbar {
    display: none;
}
.event-list {
    scrollbar-width: none;
    -ms-overflow-style: none;
} */

/* body.scroll-locked {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
} */
.event-list {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: none;
}

.event-list::-webkit-scrollbar {
    display: none;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 0, 0, 0.5);
    z-index: 9998;
}
.event-container .card-body {
    padding: 0.25rem;
}
.modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 1200px;
}
.mobile-logo{
    display: none;
}

/* privacy policy css start */

section.privacy-policy-sec.privacy-policy-page ul li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    margin: 0;
    font-family: "Inter", serif;
    list-style: disc;
    margin-left: 20px;
}

section.privacy-policy-sec.privacy-policy-page ul {
    margin: 1rem 0;
}

section.privacy-policy-sec.privacy-policy-page h3 {
    margin: 0 0 0.7rem;
}

section.privacy-policy-sec.privacy-policy-page p {
    margin: 0 0 1rem;
}

.services-img img {
    border-radius: 20px;
}

/* privacy policy css end */
