<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --mainColor: #0f6e55;
    --whiteColor: #fff;
    --yellowColor: #aa0b00;
    --blueColor: #0d87e5;
    --backgroundColor: #d7f5fb;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

* {
    font-family: "Open Sans", sans-serif !important;
}

a {
    color: #106eea;
    text-decoration: none;
}

a:hover {
    color: #3b8af2;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #106eea;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #106eea;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #3284f1;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--backgroundColor);
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    padding: 0;
}

#topbar .contact-info i {
    font-style: normal;
    color: #000000;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: var(--mainColor);
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: var(--yellowColor);
    text-decoration: underline;
}

#topbar .log-reg-links a {
    background-color: var(--mainColor);
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    transition: 0.3s;
    margin-left: 10px;
}

#topbar .log-reg-links a:hover {
    background-color: #1e7758;
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    transition: 0.3s;
    margin-left: 10px;
}

#topbar .log-reg-links a:hover {
    color: var(--yellowColor);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background-size: cover;
    background-image: url("../img/header/bg_header2.jpg");
    transition: all 0.5s;
    z-index: 997;
    height: 85px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

#header.fixed-top {
    height: 70px;
}

#header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;

    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: #106eea;
}

#header .logo img {
    max-height: 70px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar &gt; ul &gt; li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar li,
.navbar a:focus {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 4px 3px;
    font-size: 15px;
    font-weight: 600;
    color: var(--whiteColor);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar &gt; ul &gt; li &gt; a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--yellowColor);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover &gt; a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover &gt; a {
    color: rgba(255, 255, 255, 0.678);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--mainColor);
    box-shadow: 0px 0px 20px rgba(25, 25, 25, 0.5);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover &gt; a {
    color: rgba(255, 255, 255, 0.678);
}

.navbar .dropdown:hover &gt; ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover &gt; ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover &gt; ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 0px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile &gt; ul &gt; li {
    padding: 5px 0 5px 5px;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover &gt; a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover &gt; a {
    color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover &gt; a {
    color: #106eea;
}

.navbar-mobile .dropdown &gt; .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    /* overflow: hidden; */
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}
@media only screen and (max-width: 720px) {
    .section-title {
        text-align: center;
        padding-bottom: 15px;
    }
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #e7f1fd;
    color: #106eea;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: var(--yellowColor);
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 75%;
    }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.featured-services .icon-box::before {
    content: "";
    position: absolute;
    background: #cbe0fb;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    background: var(--mainColor);
    top: 0;
    border-radius: 0px;
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #106eea;
    transition: all 0.3s ease-in-out;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: var(--mainColor);
}

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.about .content ul li:first-child {
    margin-top: 35px;
}

.about .content ul i {
    background: #fff;
    box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
    font-size: 24px;
    padding: 20px;
    margin-right: 15px;
    color: #106eea;
    border-radius: 50px;
}

.about .content ul h5 {
    font-size: 18px;
    color: #555555;
}

.about .content ul p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 10px;
    text-align: center;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 15px;
    /* border: 10px solid #fff; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    height: 280px;
}

.services .icon-box .icon {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
}

.services .icon-box H5 A {
    color: #112d1f;
    text-transform: uppercase;
}

.services .icon-box .icon .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.services .icon-box .action-btn {
    padding: 20px;
}

.services .icon-box .action-btn .btn {
    background-color: var(--mainColor);
    color: var(--whiteColor);
}

.services .icon-box .action-btn .btn:hover {
    background-color: var(--yellowColor);
    color: var(--whiteColor);
}

.services {
    background-color: var(--backgroundColor);
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.gallary-bg-image {
    height: 250px;
    overflow: hidden;
}

/* .services .icon-box:hover .icon {
  border-color: #106eea;
} */

.carousel-item {
    height: 400px;
}

.carousel-caption h5,
.carousel-caption p {
    text-shadow: 3px 3px 10px #000000, -2px 1px 10px #000000;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.slide_img {
    position: relative;
}

.child_slide_img {
    position: absolute;
    z-index: 100;
    top: 40px;
    left: 40px;
    width: 35%;
    height: 80%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    /* align-items: center; */
    padding: 30px;
    color: #060606;
    border-radius: 5px;
    text-shadow: 2px 2px 4px rgba(122, 122, 122, 0.5);
}

.child_slide_img div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.child_slide_img div a {
    margin: 0 auto;
    margin: 30px 15px 15px 0;
    width: 30%;
}

.child_slide_img div h3 {
    margin-bottom: 10px;
    background-color: rgba(5, 82, 28, 0.5);
    padding: 5px;
    color: white;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .child_slide_img {
        width: 60%;

        height: 100px;
    }

    .child_slide_img div a {
        margin: 0 15px 15px 0;
        width: 100%;
    }

    .child_slide_img div h1 {
        margin-bottom: 40px;
    }

    .child_slide_img div p {
        display: none;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: var(--mainColor);

    padding: 0 0 30px 0;
    color: var(--whiteColor);
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background-image: url("../img/header/bg_header2.jpg");
}

@media only screen and (max-width: 720px) {
    #footer .footer-top {
        padding: 30px 0 0 0;
        background-image: url("../img/header/bg_header2.jpg");
    }
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #106eea;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: var(--whiteColor);
    margin-bottom: 10px;
}

#footer .footer-top h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--whiteColor);
    position: relative;
    padding-bottom: 0px;
}

#footer .footer-top p strong {
    font-size: 16px;
}

#footer .footer-top p svg {
    background: #0a850aab;
    height: 15px;
    width: 15px;
    padding: 5px;
    border-radius: 50%;
    margin-bottom: -6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--yellowColor);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--whiteColor);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--yellowColor);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--whiteColor);
    color: var(--blueColor);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--yellowColor);
    text-decoration: none;
}

#footer .copyright {
    text-align: center;
    float: center;
    color: var(--whiteColor);
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: var(--whiteColor);
}

@media (max-width: 768px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

/* About Page Start */
.about-us {
    background-color: var(--backgroundColor);
}

.about-us .image {
    min-height: 300px;
    background-color: #fff;
}

.about-us .content {
    min-height: 300px;
    padding: 30px;
    background-color: #fff;
}

/* About Page End */
/* Contact us Page Start */
.contact-us {
    /* background-color: var(--backgroundColor); */
    padding: 20px 0;
}

.contact-us .image {
    height: 350px;
    padding: 10px;
}

.contact-us .image img {
    width: 100%;
    height: 100%;
}

.contact-us .content {
    min-height: 200px;
    padding: 30px;
}

/* Contact Page End */

/* Photo Gallary start from here  */
.photo_gallery {
    /* background-color: var(--backgroundColor);
   */
    padding-top: 30px;
}

/* Photo Gallary end here  */

/* Video Gallary start from here  */
#main .video_gallery {
    background-color: var(--backgroundColor);
}

/* Video Gallary end here  */

/* Event start from here  */
#main .all_event {
    background-color: var(--backgroundColor);
}

/* Event end here  */

/* user_register start */
.user_register {
    background-color: var(--backgroundColor);
}

/* user_register end */
.login-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* user_register start */
.user_login {
    background-color: var(--backgroundColor);
}

/* user_register end */

/* policies */

.hall_policies {
    /* background-color: var(--backgroundColor); */
}

.hall_policies .title {
    width: 100%;
    height: 60px;
    background-color: #fff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: var(--mainColor);
}

/*  */
.booking-scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    animation: scroll 30s linear infinite;
    color: red;
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

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

#calendar {
    padding: 10px;
}

.booking-calender,
.pricing-Table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.booking-calender-title,
.pricing-Table-title {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    font-size: 24px;
    font-weight: bold;
    background-color: #f2f2f2;
    padding-bottom: 15px;
    color: var(--mainColor);
    text-align: center;
}

.pricing-option {
    margin-bottom: 20px;
    border: 15px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pricing-option__inner {
    background-color: white;
}

.pricing-option_popular {
    position: relative;
}

.pricing-option_popular::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    height: 0;
    width: 0;
    border-left: 60px solid #ed3e49;
    border-bottom: 60px solid transparent;
}

.pricing-option_popular::after {
    content: "\f0e7";
    font-family: "FontAwesome";
    font-size: 16px;
    position: absolute;
    display: block;
    top: -5px;
    left: 0;
    color: white;
}

.pricing-option__inner {
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.pricing-option__inner:hover {
    border-color: rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.pricing-option__header {
    padding: 15px 10px;
}

.pricing-option__header h5,
.pricing-option__header .h5 {
    font-weight: 600;
    font-size: 14px;
}

.pricing-option__price {
    padding: 10px;
    background: rgba(0, 0, 0, 0.03);
    color: #ed3e49;
}

.pricing-option-price__currency {
    vertical-align: 90%;
}

.pricing-option-price__number {
    font-size: 36px;
    font-weight: 300;
}

.pricing-option__body {
    padding: 10px 0 15px;
}

.pricing-option__body ul &gt; li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    color: #999;
}

.pricing-option__body ul &gt; li:last-child {
    border-bottom: 0;
}

/* Pricing Options - Joint */
.pricing-options_joint {
    padding: 10px;
    margin-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.05);
}

.pricing-options_joint .row {
    margin-left: 0;
    margin-right: 0;
}

.pricing-options_joint [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.pricing-options_joint .pricing-option {
    margin-bottom: 0;
    border: 5px solid transparent;
}

.pricing-options_joint .pricing-option_popular:before {
    top: 0;
    left: 0;
}

.pricing-options_joint .pricing-option_popular:after {
    top: 10px;
    left: 15px;
}

/* Pricing Options - Table */

.pricing-options_table {
    border: 15px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.pricing-options-table__table {
    margin-bottom: 0;
    text-align: center;
}

.pricing-options-table__table &gt; thead &gt; tr &gt; th {
    text-align: center;
    padding: 0;
}

.pricing-options-table__table .pricing-option__price {
    margin: -8px;
}

.pricing-options-table__table .pricing-option_popular:before {
    border-bottom-width: 40px;
    border-left-width: 40px;
    top: 0;
    left: 0;
}

.pricing-options-table__table .pricing-option_popular:after {
    font-size: 12px;
    top: 5px;
    left: 11px;
}

.pricing-options-table__table .fa-check {
    color: rgba(0, 0, 0, 0.4);
}

.pricing-options-table__table .fa-times {
    color: rgba(0, 0, 0, 0.2);
}

.pricing-options-table__title {
    vertical-align: middle !important;
    padding-left: 20px !important;
    text-align: left;
}

.booking-page-header {
    width: 100%;
    height: 60px;
    background-color: #00642e;
}

.custom-div-day-green {
    box-sizing: border-box;
    padding: 2px 8px;
    background-color: #00642e;
    height: 40%;
    width: 50%;
    color: #fff;
    cursor: pointer;
}

.custom-div-day-yellow {
    box-sizing: border-box;
    padding: 2px 8px;
    background-color: #fae60a;
    height: 40%;
    width: 50%;
    color: #fff;
    cursor: pointer;
}

.custom-div-day-red {
    box-sizing: border-box;
    padding: 2px 8px;
    background: #91f488c2;
    font-size: small;
    height: 45%;
    width: 85%;
    color: #303030;
    cursor: pointer;
}

.custom-div-night-green {
    box-sizing: border-box;
    padding: 2px 8px;
    font-size: small;
    color: #262626;
    background-color: rgba(167, 248, 239, 0.6);
    height: 45%;
    width: 85%;
    cursor: pointer;
}

.custom-div-night-yellow {
    box-sizing: border-box;
    padding: 2px 8px;
    background-color: #ffc20d;
    height: 50%;
    width: 100%;
    color: #fff;
    cursor: pointer;
}

.custom-div-night-red {
    box-sizing: border-box;
    padding: 2px 8px;
    background-color: #9f0707;
    height: 50%;
    width: 100%;
    color: #fff;
    cursor: pointer;
}

.hall-banner {
    margin-top: 30px;
    width: 100%;
    height: 50px;
    /* background: var(--backgroundColor); */
    color: #ffffff;

    border-radius: 15px;
}

.hall-banner h4 {
    font-size: 35px;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    color: var(--mainColor);
}

.hall-page {
    margin-top: 50px;
    background-color: var(--mainColor);
    padding: 20px;
}

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

.hall-page ul li {
    display: flex;
    align-items: center;
    list-style: none;
    height: 30px;
    background: var(--mainColor);
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;
    padding-left: 5px;
}

.hall-page ul li:hover {
    background: #fff;
    color: var(--mainColor);
}

.important_links {
    margin-top: 20px;
}

.important_links h4 {
    border-bottom: 1px solid var(--mainColor);
    padding: 5px;
}

.important_links ul li {
    color: var(--blueColor);
}

.important_links ul li:hover {
    color: rgb(2, 115, 24);
}

.services .section-content p {
    text-align: justify;
    font-size: 18px;
}

.senaprodhan {
    display: flex;
    justify-content: center;

    min-height: 300px;
}
.senaprodhan .sena-title {
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-radius: 15px 15px 0 0;
    margin-bottom: 10px;
}

/* Start:: Hall calendar  */
.date-availability-filtering {
    padding: 10px;
}
/* End:: Hall calendar  */

/* Policies  */
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: white !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
        var(--bs-accordion-border-color);
}

/* Start:: Video Section  */

.video-section img {
    object-fit: cover;
    width: 100%;
}

.video-section .item {
    margin: 10px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 5px 0px rgba(40, 40, 40, 0.2);
}

.video-section .item {
    position: relative;
    cursor: pointer;
}

.video-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    border-radius: 5px;
}
.video-section .overlay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    border-radius: 5px;
}

.video-section .overlay svg.svg-inline--fa.fa-play {
    position: absolute;
    font-size: 40px;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
}
.video-section .overlay-video svg.svg-inline--fa.fa-play {
    position: absolute;
    font-size: 40px;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
}

.video-section .item:hover .overlay {
    display: block;
}
.video-section .item:hover .overlay-video {
    display: block;
}

#videoModal iframe {
    width: 100%;
    height: 550px;
}

@media only screen and (max-width: 1200px) {
    #videoModal iframe {
        width: 100%;
        height: 450px;
    }
}

@media only screen and (max-width: 720px) {
    #videoModal iframe {
        width: 100%;
        height: 350px;
    }
}

@media only screen and (max-width: 500px) {
    #videoModal iframe {
        width: 100%;
        height: 200px;
    }
}

/* Video Modal Styles */
#videoModal {
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent background */
    padding: 0;
}

#videoModal .modal-dialog {
    margin: 30px auto;
    /* center the modal vertically and horizontally */
    max-width: 800px;
    /* set max width of the modal */
}

#videoModal .modal-content {
    background-color: transparent;
    /* make the modal content transparent */
    border: none;
    /* remove border */
    box-shadow: none;
    /* remove shadow */
}

#videoModal .modal-body {
    padding: 0;
    /* remove default padding */
    position: relative;
    /* make the body relative for positioning overlay */
}

#videoModal .embed-responsive {
    padding-bottom: 56.25%;
    /* maintain aspect ratio (16:9) */
    position: relative;
}

#videoModal .embed-responsive-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#videoModal .close-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    width: 40px;
    /* increased width */
    height: 40px;
    /* increased height */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoModal .close-overlay:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}

.all-hall-slider-video .item {
    margin: 0 0 10px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 5px 0px rgba(40, 40, 40, 0.2);
}
/* End:: Video Section  */
</pre></body></html>