/* @import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

@font-face {
    font-family: "Montserrat";
    src: url("../Fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../Fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../Fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../Fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --baseFont: "Montserrat", Sans-serif;
    --titleFont: "Montserrat", Sans-serif;
    --primaryColor: #a23922;
    --primaryHoverColor: #23341c;
    --baseColor: #1b2e3c;
    --lightColor: #6e7683;
    --whiteColor: #fff;
    --darkBg: #181d24;
    --grayBg: #f5f5f5;
    --lightBg: #f2f2f2;
    --lightBg2: #cbcbcb;
    --lightBg3: #efefef;
    --bs-btn-disabled-bg: #363636;
    --bs-btn-disabled-border-color: #363636;
    --p-size: 18px;
}
html {
    scroll-behavior: smooth;
    overflow-x: auto;
}
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}
body {
    font-family: var(--baseFont);
    color: var(--baseColor);
    /* font-size: 18px;
     */
    overflow-x: hidden;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a,
.btn {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--primaryColor);
    text-decoration: none;
}
img {
    max-width: 100%;
}
h1,
h2,
h3,
h4 {
    font-family: var(--titleFont);
}
.btn.focus,
.btn:focus,
.form-control:focus {
    box-shadow: none;
}
.textAreaHeight {
    height: unset !important;
}
.btn {
    font-weight: 500;
    text-transform: uppercase;
    padding: 9px 15px;
    font-size: 16px;
    border-radius: 30px;
    width: fit-content;
}
/* .bannerConatinAlign{
    padding-left: 50px;
} */
.bannerSection .carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: block;
}
.imaAtCinatainB b {
    color: #4a6b38;
}
.btnPrimary {
    background-color: var(--primaryColor);
    color: var(--bs-white);
    position: relative;
    overflow: hidden;
}
.btnPrimary > span {
    position: relative;
    z-index: 2;
}
.btnSecondary {
    color: #4a6b38;
    background-color: #fff;
    border: 1px solid #4a6b38 !important;
}
.btnSecondary:hover {
    color: #fff;
    transition: 1s;
}
.imaAtContainBody {
    min-height: 100px;
}
.btnPrimary:hover {
    background-color: var(--primaryColor);
    color: var(--bs-white);
}
.btnPrimary:before {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    border-radius: 8px;
    top: 0;
    bottom: 0;
    opacity: 0;
    border-radius: 0;
    background-color: var(--primaryHoverColor);
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -ms-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    border-radius: 30px;
}
.btnPrimary:hover:before {
    left: 0%;
    right: 0%;
    opacity: 1;
}
header .logoCol img {
    height: 100px;
    object-fit: contain;
}
.headerTopCol {
    background-color: var(--darkBg);
    color: var(--lightColor);
    padding: 15px 0;
    font-size: 15px;
}
.headerTopCol p {
    margin: 0;
}
.headerBtmCol {
    padding: 0px 0;
    /*border-bottom: 5px solid var(--primaryColor);
    */position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--whiteColor);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.headerBtmCol:not(.sticky){
    padding: 30px 0;
}
.headerBtmCol.sticky{
    padding: 10px 0;
}
.headerBtmColShadow{
    padding: 80px 0;
}
/* Menu toggle */
.menuToggle {
    position: relative;
    width: 24px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    max-width: 100%;
    margin-left: 15px;
    z-index: 100;
}
.menuToggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--darkBg);
    border-radius: 8px;
    transition: 0.5s;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.menuToggle span:nth-child(1) {
    transform: translateY(-7px);
}
.activeMenu .menuToggle span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    transition-delay: 0.125s;
}
.menuToggle span:nth-child(2) {
    transform: translateY(7px);
}
.activeMenu .menuToggle span:nth-child(2) {
    transform: translateY(0) rotate(315deg);
    transition-delay: 0.25s;
}
.activeMenu .menuToggle span:nth-child(3) {
    transform: translateX(60px);
}
/* Menu toggle */
.navColMain > ul > li {
    display: inline-block;
}
.navColMain > ul > li + li {
    margin-left: 10px;
}
.giftShopNav {
    padding-right: 0 !important;
}
.navColMain > ul > li > a {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
}
.navColMain > ul > li.dropdown > a::after {
    content: "";
    border: none;
    /* width: 12px;
     */
    /* height: 8px;
     */
    /* background-image: url('../images/angle-down.svg');
     background-repeat: no-repeat;
     background-position: center center;
     -webkit-background-size: contain;
     background-size: contain;
     */
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f107";
}
.navColMain > ul > li.dropdown > a > span {
    font-family: var(--baseFont);
    font-weight: normal;
}
.navColMain > ul > li.dropdown > a {
    padding-right: 20px;
    position: relative;
    font-size: 18px;
}
.navColMain > ul > li > a.active,
.navColMain > ul > li > a.active + .ddTrigger,
.dropdownItem.active {
    color: var(--primaryColor);
}
.navColMain .dropdown-menu .dropdown-item.active,
.navColMain .dropdown-menu .dropdown-item:active,
.navColMain .dropdown-menu .dropdown-item:hover {
    color: var(--primaryColor);
    background-color: transparent;
    opacity: 1;
}
.bannerSection {
    color: #652011;
}
.bannerSectionInner{
    display: flex;
    min-height: 330px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    gap: 15px;
}
.bannerSectionInner h1{
    font-weight: 400;
    font-size: 48px;
}
.banner2Section{
    background-image: url("../images/bg-design-24.png");
    padding: 80px 0;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.banner2Section h1{
    font-weight: 300;
    font-size: 32px;
    font-style: italic;
    max-width: min(100%, 1120px);
    margin: 0 auto;
}
.bannerDesktopImg,
.bannerMbImg {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.bannerContentCol {
    min-height: calc(100vh - 155px);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.bannerInnerContentCol {
    position: relative;
    width: 100%;
}
.bannerTitle {
    font-size: 50px;
    line-height: 1.2;
    position: relative;
    font-family: var(--titleFont);
    text-transform: uppercase;
    padding-bottom: 30px;
    margin-bottom: 15px;
}
.bannerContent {
    max-width: 800px;
    padding: 50px 0;
}
.bannerContent p {
    font-size: 18px;
    max-width: 500px;
}
.bannerTitle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    border-bottom: 2px solid;
    width: 220px;
}
.bannerSection .carousel-indicators {
    justify-content: flex-end;
}
.sectionSpace {
    padding: 30px 0;
}
.lgText {
    font-size: 18px;
    line-height: 1.6;
}
.cardStyle1 {
    position: relative;
}
.cardStyle2 {
    background-color: #23351B;
    text-align: center;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cardStyle2Content {
    color: var(--bs-white);
}
.cardStyle2Image {
    margin-bottom: 20px;
}
.cardStyle2Image svg{
    fill: #fff;
    width: 100px;
    height: 100px;
}
.cs1ImgCol {
    position: relative;
    overflow: hidden;
}
.cs1ImgCol img {
    display: block;
    width: 100%;
    max-height: 235px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: transform 1500ms ease-in-out 0s;
    -o-transition: transform 1500ms ease-in-out 0s;
    transition: transform 1500ms ease-in-out 0s;
}
.cardStyle1:hover .cs1ImgCol img {
     -webkit-transform: scale(1.3);
     -ms-transform: scale(1.3);
     transform: scale(1.3);
     -moz-transform: scale(1.3);
     -o-transform: scale(1.3);
}
.bookingSpaceBottom {
    padding-bottom: 80px !important;
}
.image-text-box {
    position: relative;
    width: 100%;
    max-height: 235px;
    overflow: hidden; /* Prevent image overflow */
}
.box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;top: 0;
    left: 0;
    z-index: 1;
    transition: transform 1500ms ease-in-out 0s;
}
.box-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center text both horizontally and vertically */
    z-index: 2; /* Place text on top of image */
    color: white; /* Or your desired text color */
    text-align: center; /* Center text horizontally */
    padding: 35px; /*optional padding*/
    box-sizing: border-box; /*Include padding in width and height*/
}
.cardStyle1:hover .box-image {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.cs1ContentCol {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--bs-white);
}
.cs1ContentCol div {
    align-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 35px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.box-text h4 {
    font-size: 36px;
    text-transform: capitalize;
    max-width: 235px;
    text-align: center;
    margin: 0 auto;
}
.cs1ContentCol p {
    font-size: 20px;
    max-width: 220px;
}
.readmoreLinkCol {
    border-top: 1px solid;
    padding-top: 15px;
    margin-top: 20px;
}
.readmoreLink {
    position: relative;
    display: inline-block;
    padding-right: 20px;
}
.readmoreLink:hover {
    color: inherit;
    opacity: 0.8;
}
.readmoreLink:hover::before {
    right: 0px;
}
.readmoreLink::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 16px;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url("../images/angle-right-white.svg");
    background-repeat: no-repeat;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.cardsColMain {
    padding-top: 30px;
}
.blogtitleRightCol {
    border-bottom: 1px solid;
    text-align: right;
    padding-right: 80px;
}
.blogtitleRightCol a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 2px;
}
.middleHr {
    border-bottom: 1px solid;
    text-align: right;
    padding-right: 80px;
    opacity: 0.25;
}
.lgTitle {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 50px;
    line-height: 1;
}
.topNavSwiper {
    position: relative;
    padding-top: 30px;
}
.cs2ImgCol {
    overflow: hidden;
}
.cs2ImgCol img {
    width: 100%;
    height: 248px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 800ms ease-in-out 0s;
    -o-transition: all 800ms ease-in-out 0s;
    transition: all 800ms ease-in-out 0s;
}
.cs2ImgCol + .cs2ContentCol {
    padding-top: 25px;
}
.cs2ContentCol > h4 {
    min-height: 60px;
    font-size: 22px;
}
.cs2ContentCol > p {
    min-height: 60px;
    font-size: 20px;
}
.cs2ContentCol > h4,
.cs2ContentCol > p {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dateCol {
    font-size: 16px;
    opacity: 0.5;
}
.blogSliderNav {
    position: absolute;
    right: 0;
    top: -37px;
    width: 60px;
    z-index: 2;
}
.exibitionLeftColPlains {
    width: -webkit-fill-available !important;
}
.topNavSwiper .swiper {
    position: static;
}
.topNavSwiper .swiper-button-next::after,
.topNavSwiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.topNavSwiper .swiper-button-next {
    right: 0;
}
.topNavSwiper .swiper-button-prev {
    left: 0;
}
.topNavSwiper .swiper-button-next,
.topNavSwiper .swiper-button-prev {
    background: transparent;
}
.bookTourCol {
    text-align: center;
    background-color: #7c623c;
    background-image: url("../images/book-tour-bg.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    color: var(--bs-white);
    padding: 120px 0;
}
.connectRightCol {
    background-color: var(--darkBg);
    color: var(--bs-white);
    width: 450px;
    padding: 45px 25px;
    text-align: center;
}
.connectContentCol {
    padding-top: 30px;
}
.connectRightCol > h4,
.connectRightCol > p {
    padding-bottom: 15px;
}
.connectImg img {
    width: 100%;
    height: 215px;
    -o-object-fit: cover;
    object-fit: cover;
}
.newsletterFld {
    width: 100%;
    height: 55px;
    border-radius: 30px;
    border: none;
    padding: 10px 75px 10px 30px;
}
.newsletterFld:focus {
    outline: none;
}
.newsletterFldCol {
    position: relative;
}
.newsletterFldCol > .btn {
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px 20px;
    background-color: var(--primaryColor);
}
.socialIcons {
    text-align: center;
    padding: 30px 0;
}
.socialIcons > ul > li {
    display: inline-block;
    vertical-align: middle;
}
.socialIcons > ul > li + li {
    padding-left: 15px;
}
.socialIcons > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primaryColor);
    padding: 10px;
    border-radius: 50%;
    -webkit-filter: grayscale(1) brightness(0);
    filter: grayscale(1) brightness(0);
}
.socialIcons > ul > li > a:hover {
    -webkit-filter: none;
    filter: none;
}
.footerTopCol {
    background-color: #f4eddf;
    padding: 60px 0 40px;
    font-size: 16px;
    color: #652011;
}
.footerBtmCol {
    font-size: 16px;
    background-color: #652011;
    padding: 10px 0;
    text-align: center;
    color: var(--bs-white);
}
.footerLeftCol {
    width: 340px;
    padding-right: 30px;
}
.footerLogo img {
    padding-bottom: 40px;
    max-width: 284px;
}
.footerTitle {
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 15px;
}
.askAboutSpace h4 {
    margin-bottom: 10px;
}
.memberLogo > li {
    display: inline-block;
    vertical-align: middle;
    /* float: right; */
}
.memberLogo > li + li {
    padding-left: 15px;
}
.memberLogo > li > img {
    max-width: 100px;
    max-height: 100px;
}
.footerLinksCol,
.footerRightCol {
    /* padding-left: 50px; */
    border-left: 1px solid #b2b3b2;
    min-height: 100%;
    padding-right: 20px;
}
.visitLinks {
    width: 280px;
}
.footerContactCol {
    width: 70%;
}
.footerContactCol h5 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0px;
}
.footerContactCol small {
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
}
.social-grid-item svg {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    fill: #652011;
}
.social-grid-item a:hover svg {
    fill: #a23922;
}
.footerRightCol .memberLogo {
    margin-top: 30px;
    float: right;
}
.swiperBulletStyle .swiper-pagination {
    bottom: 10px;
}
.swiperBulletStyle .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #F4DB95;
    opacity: 1;
}
.swiperBulletStyle .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #A23922;
}
.innerPageBanner {
    background-color: #000;
    color: var(--bs-white);
}
.bannerImg {
    width: 100%;
    height: 440px;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.7;
}
.breadcrumbCol .breadcrumb {
    align-items: center;
}
.homeIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--primaryColor);
    border-radius: 50%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.homeIcon:hover {
    -webkit-filter: none;
    filter: none;
}
/****************************************/
.breadcrumbCol {
    margin-top: 40px;
}
.breadcrumbCol .breadcrumb-item + .breadcrumb-item {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}
.breadcrumbCol .breadcrumb-item + .breadcrumb-item::before {
    content: "";
    background-image: url("../images/angle-right.svg");
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    width: 5px;
    height: 11px;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.xlText {
    font-size: 18px;
    text-transform: none;
    color: #1B2E3C;
}
/******************************************/
.faqSection {
    margin: 50px 0;
}
.SectionSpaceIslam {
    padding-bottom: 30px;
}
.faqSection .accordion-item {
    background-color: var(--lightBg3);
    position: relative;
    border: 0;
}
.faqSection .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--baseColor);
}
.pannelBody {
    background-color: var(--lightBg3);
    position: relative;
    padding-left: 76px;
}
.pannelBodyheader {
    padding: 20px 35px;
    color: var(--baseColor);
    font-size: 22px;
    font-family: var(--titleFont);
    font-weight: 600;
    border-radius: 0;
    background-color: transparent;
}
.faqSection .accordion-body {
    padding: 0 35px 15px;
}
.faqSection .accordion-item:last-of-type {
    border-radius: 0;
}
.faqSection .accordion-body > p {
    font-size: 16px;
    margin-bottom: 15px;
}
.faqSection .accordion-item + .accordion-item {
    margin-top: 10px;
}
.faqSection .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.faqSection .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faqSection .accordion-button::after {
    display: none;
}
.collapseTrigger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f2f2f2;
    padding: 4px 10px;
    width: 60px;
    cursor: pointer;
    -webkit-transition: background-color 300ms ease-in-out 0s;
    -o-transition: background-color 300ms ease-in-out 0s;
    transition: background-color 300ms ease-in-out 0s;
}
.collapseTrigger i {
    -webkit-transition: transform 300ms ease-in-out 0s;
    -o-transition: transform 300ms ease-in-out 0s;
    transition: transform 300ms ease-in-out 0s;
}
.collapseTrigger[aria-expanded="true"] i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.collapseTrigger[aria-expanded="true"] {
    background-color: #d6d6d6;
}
.searchMainCol {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    background-color: #fff;
    padding: 70px 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.activeSearch .searchMainCol {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
html.activeSearch {
    overflow: hidden;
}
.searchInnerCol {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}
.searchFld .form-control {
    height: 80px;
    border-radius: 0;
    background-color: #f0f0f0;
    border: none;
    padding: 10px 70px 10px 30px;
    font-size: 18px;
}
.searchCloseTrigger {
    position: fixed;
    right: 20px;
    top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}
.searchInnerCol .searchIcon {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.3;
    font-size: 20px;
    pointer-events: none;
}
.tourBookingContentCol {
    padding-top: 30px;
}
.lblStyle {
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}
.formStyle .form-control,
.formStyle .form-select {
    border-radius: 0;
    /* border: none; */
    background-color: #f0f0f0;
    /* height: 48px; */
    font-size: 16px;
}
.formStyle .form-control::placeholder {
    color: #999999;
}
.formStyle .form-select:focus {
    box-shadow: none;
}
.formStyle .simpleList {
    font-size: 15px;
}
/* visit page start */
.navColMain .dropdown .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
}
.visitTopContent {
    padding: 0 0 20px 0;
}
.lh-md {
    line-height: 1.7;
}
.mdTitle {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 1;
}
.vLeftRow + .vLeftRow {
    padding-top: 25px;
}
.visitLeftCol {
    background-image: url("../images/bg-design-16.png");
    background-size: cover;
    padding: 60px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.admissionOptions > li + li {
    margin-top: 8px;
}
.vLeftRow > .mdTitle {
    padding-bottom: 5px;
}
.bookingSmCol {
    padding: 50px;
    background-color: var(--darkBg);
    color: var(--bs-white);
    border-radius: 8px;
    background-image: url("../images/book-tour-bg.jpg");
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.bookingSmCol > .mdTitle {
    padding-bottom: 10px;
}
.bookingSmCol p + .btn {
    margin-top: 10px;
}
.visitRightBtmCol {
    padding-top: 40px;
    padding-left: 10px;
}
.mdIcon {
    width: 80px;
    text-align: center;
}
.mdIcon img {
    max-width: 40px;
    max-height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
.GalleryImg {
    height: unset !important;
}
.accordionBody {
    display: flex;
    align-items: center;
}
.galleryBottomTxt p {
    text-align: center;
    margin: 20px 0 0 0;
    font-style: italic;
    color: #999;
}
.visitRightBtmCol > ul > li + li {
    padding-top: 30px;
}
.mapCol {
    padding-top: 30px;
}
.mapCol iframe {
    height: 360px;
}
/* visit page end */
/* galleries page start */
.galleryTopContent {
    padding: 0 0 40px 0;
}
.tabContentStyle .accordion-item {
    border: none;
}
.tabContentStyle .accordion-body {
    padding: 40px;
    border: 1px solid #dbdbdb;
    border-top: 0;
    border-radius: 0 0 15px 15px;
}
.tabNavLinks .nav-tabs .nav-item + .nav-item .nav-link {
    border-left: none;
}
.tabNavLinks .nav-tabs .nav-link {
    border: 1px solid #dbdbdb;
    border-radius: 0;
    color: var(--baseColor);
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    text-transform: uppercase;
    height: 80px;
    line-height: 1.2;
}
.tabNavLinks .nav-tabs .nav-link.active {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: var(--primaryColor);
}
.tabNavLinks .nav-tabs {
    border: 0;
}
.nav-tabs {
    display: none;
}
.tabText {
    padding: 0 15px 30px;
}
.moreless-button {
    color: var(--primaryColor);
}
/* galleries page close */
/* venue-hire page start */
.venueCardSlider {
    margin-top: 40px;
}
.venueCardSlider .cs2ImgCol img {
    height: 320px;
}
.venueTabCol .tabContentStyle .accordion-body {
    padding: 20px;
}
.venueTabImg > img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
}
.venueInfoMainCol {
    padding-top: 50px;
}
.venueTabContent {
    padding: 20px 50px;
}
.venueDetailCol > h4,
.venueDetailCol .accordion-button {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1;
    padding-bottom: 10px;
}
.venueDetailCol {
    margin-bottom: 50px;
}
.venueDetailCol > p,
.venueRoomlist + p {
    padding-top: 20px;
}
.readmore {
    display: inline-block;
    margin-left: 10px;
}
span.hidden {
    display: none;
}
.tourBoddomText p {
    color: #666;
    padding-top: 25px;
}
.kidsBeatBtn {
    text-align: center;
    padding: 30px 0;
}
.kidsBeatmain {
}
.Dealingmain {
}
.kidsBeatImg img {
    object-fit: cover;
    width: 100%;
    height: 280px;
}
.kidsBeatHeader {
    text-align-last: center;
    padding-bottom: 20px;
}
.DealingHeader {
    text-align-last: center;
    padding-bottom: 20px;
}
.DealingBtn {
    padding: 30px;
    text-align: center;
}
.DealingBtn h6 {
    font-size: 22px;
    font-weight: bold;
}
.DealingSection {
    padding: 50px 0;
    background-color: #fafafa;
}

.carousel-inner {
    display: flex;
}
.donateCard h1{
    font-weight: 500;
    line-height: 75px;
    color: #FFFFFF;
    font-size: 32px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
}
.donateCard:nth-child(odd) h1{
    background-image: url('../images/bg-design-21.png');
    background-size: cover;
}
.donateCard:nth-child(even) h1{
    background-image: url('../images/bg-design-18.png');
    background-size: cover;
}
.donateCard p{
    font-size: 18px;
}
.donateAmountCard {
    min-height: 200px;
    text-align: center;
    align-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    padding: 35px;
    width: 100%;
    z-index: 1;
    background-image: url('../images/bg-design-16.png');
    background-size: cover;
    cursor: pointer;
}
.donateAmountCard h1{
    font-size: 80px;
    font-weight: 500;
    color:#23341C;
}
.donateAmountCard p{
    font-size: 15px;
    font-style: italic;
    color: #496B37;
}
.hrStyle {
    width: 80%;
    margin: 0 auto;
    color: #F4DB95;
    background-color: #F4DB95;
    border: 0 none;
    height: 2px;
}
.color-primary{
    color: #652011;
}
.bg-primary {
    background-color: #A23922;
}
.swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 5/4;
}
.accordion-item:first-of-type,.accordion-item:first-of-type .accordion-button,.accordion-item:last-of-type,.accordion-item:last-of-type .accordion-button {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.accordion-button:not(.collapsed),.accordion-button{
    background-color: transparent;
    color: #652011;
    font-size: 18px;
    font-weight: 500;
}
.accordion-body p{
    font-size: 16px;
}
.accordion-button::before{
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-right: 10px;
    content: "";
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background-image:url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22SVGRepo_bgCarrier%22%20stroke-width%3D%220%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_tracerCarrier%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_iconCarrier%22%3E%3Cpath%20d%3D%22M4%2012H20M12%204V20%22%20stroke%3D%22%23652011%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}
.accordion-button:not(.collapsed)::before {
    background-image:url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22SVGRepo_bgCarrier%22%20stroke-width%3D%220%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_tracerCarrier%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_iconCarrier%22%3E%3Cpath%20d%3D%22M6%2012L18%2012%22%20stroke%3D%22%23652011%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}
.accordion-button::after,.accordion-button:not(.collapsed)::after{
    width: 0;
    height: 0;
    margin: 0;
    background-image: none;
}
.accordion-button:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #EEF0F2;
}
.accordion-collapse {
    transition: height 0.3s ease-in-out; /* Adjust duration and easing as needed */
}
.accordion-body {
    transition: opacity 0.3s ease-in-out; /* Optional fade transition */
}
.zoomEffect img {
    transition: all ease-in-out 1s;
    -webkit-transition: all ease-in-out 1s;
    -moz-transition: all ease-in-out 1s;
    -ms-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
}
.zoomEffect:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.resourceCard {
    min-height: 235px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}
.resourceCardBack {
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-design-19.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 1.5s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.resourceCard:hover .resourceCardBack {
    transform: scale(1.2);
    filter: contrast(1.2);
    transition: all 1.5s;
    -webkit-filter: contrast(1.2);
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -ms-transition: all 1.5s;
    -o-transition: all 1.5s;
}
.resourceCardInner {
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 35px;
    z-index: 1;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 235px;
}
.resourceCardInner p {
    font-size: 15px;
}
.resourceCardInner .btn {
    font-size: 15px;
    font-weight: 500;
    background-color: #496B37;
    border-width: 0px;
    border-radius: 100px;
    padding: 10px 20px;
}
@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

/* .carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
} */

/* medium and up screens */
/* @media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
} */

/* .carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
} */

#site {
    display: flex;
    flex-direction: column;
}

.player {
    padding: 0 0 1em 0;
}
.player__video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    width: 99%;
}
.player__video iframe {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* .gallery {
    background-color: lightgray;
    padding: 1em;
  } */
.gallery__item {
    align-items: center;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 96%;
}
.gallery__item__img {
    width: 100%;
}
/* .gallery__item__span {
    padding-left: 1em;
    text-shadow: 1px 1px 2px red;
    width: 60%;
  } */

/* venue-hire page close */
/* exhibition page start */
.exebitionTopContent {
    padding: 30px 0;
}
.exibitionLeftCol {
    width: 420px;
    padding-right: 20px;
}
.subTitle {
    font-size: 15px;
    opacity: 0.5;
}
.boundlessPlainsImg {
    width: 85%;
}
.resourseSectionSpace {
    background-color: #fafafa;
    padding: 40px 0;
}
.ExoeditionImgSectionSpace {
    padding: 50px 0;
}
.lightbox img {
    height: fit-content;
}
#baguetteBox-overlay .full-image img {
    width: 70% !important;
    height: 75vh !important;
    object-fit: cover;
}
.baguetteBox-button {
    background-color: rgb(22 19 19 / 0%) !important;
}
/* .cs4BodyCol.venueDetailsRight.pt-4 {
    padding-top: 5px!important;
} */
.italicStyle {
    font-style: italic;
}
.educationBottomBtn {
    float: right;
    margin-top: 30px;
}
.diskTypeUl {
    list-style-type: disc;
    padding-left: 15px;
}
.bottomsectionSpace {
    padding: 30px 0 80px 0;
}
.lookheader {
    text-transform: capitalize !important;
}
.exibitionLeftCol .mdTitle,
.exibitionLeftCol .mdTitle + p {
    padding-bottom: 10px;
}
.cs3ImgCol {
    overflow: hidden;
}
.cs3ImgCol img {
    width: 100%;
    height: 330px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: transform 800ms ease-in-out 0s;
    -o-transition: transform 800ms ease-in-out 0s;
    transition: transform 800ms ease-in-out 0s;
}
.cs3ImgCol + .cs3ContentCol {
    padding: 20px 0;
}
.cs3ImgCol > a {
    display: block;
}
/* .cs3ImgCol > a:hover img {
     -webkit-transform: scale(1.1);
     -ms-transform: scale(1.1);
     transform: scale(1.1);
} */
.cs3ContentCol h4 {
    font-size: 22px;
    margin: 0 0 5px;
}
.exhibitionsSwiper .swiper-slide,
.cExhibitionsSwiper .swiper-slide {
    height: calc((100% - 30px) / 2) !important;
}
.swiper.exhibitionsSwiper {
    height: 900px;
}
.currentGridImgCol img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: transform 800ms ease-in-out 0s;
    -o-transition: transform 800ms ease-in-out 0s;
    transition: transform 800ms ease-in-out 0s;
    /* opacity: 0;
     */
}
.currentGridImgCol {
    height: 350px;
    overflow: hidden;
    background-color: #efefef;
}
.currentGridImgCol a {
    display: block;
    height: 100%;
}
/* .currentGridImgCol a:hover img {
     -webkit-transform: scale(1.1);
     -ms-transform: scale(1.1);
     transform: scale(1.1);
} */
.swiper.cExhibitionsSwiper {
    height: 730px;
    margin-bottom: -120px;
}
.currentExbTopCol {
    padding-top: 20px;
}
.currentExhibitionContent {
    position: relative;
    overflow: hidden;
}
.loadMoreBtmBtnCol {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0px 0 10px;
    background-color: #fff;
}
.loadMoreBtmBtnCol::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 170px;
    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 58%,
        rgba(255, 255, 255, 1) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 58%,
        rgba(255, 255, 255, 1) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 58%,
        rgba(255, 255, 255, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.loadMoreBtmBtnCol a {
    position: relative;
    z-index: 5;
}
.cExBtmCol b {
    font-weight: 500;
}
.cExBtmCol .mdTitle {
    padding-bottom: 5px;
}
.cExBtmCol .socialIcons {
    text-align: left;
    padding: 10px 0;
}
.cExBtmCol p {
    line-height: 1.7;
}
/* exhibition page close */
/* ima page start */
.imaSwiper .blogSliderNav {
    top: -53px;
}
.playpause > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: var(--fwBold);
}
.playpause > span + span {
    margin-left: 25px;
}
.videoCol {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    cursor: pointer;
}
.playpause > span {
    display: flex;
    width: 137px;
    height: 137px;
    background-color: rgba(248, 96, 17, 0.5);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0 auto;
}
.playpause > span > img {
    width: 35px;
}
.videoCol .playpause {
    /* position: absolute;
     left: 50%;
     top: 50%;
     z-index: 1;
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
     pointer-events: none;
     */
    margin-top: 30px;
}
.videoCol video {
    cursor: pointer;
    -o-object-fit: cover;
    object-fit: cover;
}
.videoCol::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0px;
}
.videoLink {
    padding-top: 0 !important;
}
.vedioSection {
    padding-top: 30px;
}
/* .vedioSection p {
     padding-top: 50px;
} */
.imaSwiper .cs2ContentCol > h4 {
    min-height: initial;
}
.videoContentCol {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 20px;
    z-index: 5;
    color: #fff;
}
.secondaryVideo {
    padding-top: 20px;
}
.secondaryVideo iframe {
    width: 100%;
    height: 150px;
}
.videoContentCol .xlText {
    color: #fff;
    opacity: 0.55;
}
.eventImgCol {
    overflow: hidden;
}
.eventImgCol img {
    -webkit-transition: transform 800ms ease-in-out 0s;
    -o-transition: transform 800ms ease-in-out 0s;
    transition: transform 800ms ease-in-out 0s;
}
/* .eventCard:hover .eventImgCol img {
     -webkit-transform: scale(1.1);
     -ms-transform: scale(1.1);
     transform: scale(1.1);
} */
.eventCard {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px 0px;
    row-gap: 0px;
    column-gap: 0px;
}
.eCardImg {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: auto 640 / 800;
    transition-duration: 3s;
}
.eCardImg:hover {
    transform: scale(1.1);
}
.eventImgCol + .eventContentCol {
    padding-top: 25px;
}
.eventContentCol {
    padding: 20px;
    background-color: #E8F7DF33;
    min-height: 221px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.eventContentCol h4 {
    font-size: 20px;
    color: #A23922;
    font-weight: 500;
    height: 48px;
}
.eventContentCol h5 {
    height: 40px;
}
.eventDateCol {
    padding: 5px 0 15px;
}
.eventDate {
    opacity: 0.55;
}
.eventContentCol p {
    line-height: 1.7;
}
.eventContentCol > p + .btn {
    margin-top: 10px;
}
.eventContentCol .detailsList {
    display: flex;
    flex-direction: column;
}
.eventContentCol .detailsList svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
    fill: #496B37;
    margin-top: -3px;
}
.eventContentCol .detailsList li {
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    vertical-align: middle;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 5px;
}
.eventContentCol .detailsList li:last-child {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: 100%;
    margin-bottom: 0px;
    max-height: 72px;
}
.eventContentCol h5 {
    font-size: 18px;
}
.eventBottomText {
    font-size: 18px;
}
.detailsRow {
    font-size: 20px;
}
.detailsRow li {
    padding: 15px 0;
    display: flex;
    align-items: center;
}
.detailsRow svg {
    fill: #496B37;
    width: 35px;
    height: 35px;
    margin-right: 20px;
}
.singleEventContent {
    padding: 60px 40px 20px;
}
.detailsRow li {
    border-bottom: 1px solid #F4DB95;
}
.detailsRow li:last-child {
    border-bottom: none;
}
.dtlCol {
    line-height: 2;
}
.eiLeftCol > * > .mdTitle:last-child {
    padding-bottom: 10px;
}
.leftIconList > ul > li + li {
    padding-top: 20px;
}
.mdIcon2 {
    width: 45px;
    padding-right: 10px;
    text-align: center;
}
.mdIcon2 img {
    max-width: 35px;
    max-height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}
.eiRightCol {
    width: 440px;
    padding-left: 30px;
}
.eventDateCol .calendarIcon {
    width: 24px;
}
.eventFullImg {
    width: 100%;
    height: 380px;
    -o-object-fit: cover;
    object-fit: cover;
}
/* Events page close */
/* Sponsorship Css Starts */
.profileOuter {
    padding-top: 110px;
    margin-bottom: 80px;
}
.sidebarCol {
    background-color: #f1f1f1;
    padding: 0 30px 40px;
    width: 340px;
}
.userImg {
    margin-top: -70px;
    display: inline-block;
}
.sidebarCol .userName {
    padding: 15px 0 10px;
}
.userName h3 {
    font-family: var(--titleFont);
    text-transform: uppercase;
    font-size: 24px;
}
.userImg img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 8px solid #fff;
}
.sidebarMenu ul li + li {
    margin-top: 10px;
}
.sidebarMenu ul li a {
    background-color: #fff;
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    font-size: 16px;
}
.sidebarMenu ul li.active a,
.sidebarMenu ul li a:hover {
    background-color: #4a6b38;
    color: #fff;
}
.profileRight {
    padding-left: 20px;
}
.footerDonationBtn {
    border: 1px solid #4a6b38;
    border-radius: 50px;
    padding: 12px 15px;
    position: relative;
    top: 15px;
}
.calendarCol label {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.4;
    width: 22px;
}
.calendarCol label img {
    display: block;
}
.formStyle .calendarCol .form-control {
    padding-right: 50px;
}
.calendarFld {
    position: relative;
}
.tableBtn {
    padding: 13px 25px;
    font-size: 14px;
    font-weight: 600;
    background-color: #7d7d7d;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
}
.tableStyle thead tr th {
    background-color: #f0f0f0;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 20px;
    border-left: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    font-weight: 500;
}
.tableStyle thead tr th:last-child {
    border-right: 1px solid #dddddd;
}
.tableStyle tbody tr td {
    padding: 19px 20px;
    font-size: 18px;
    border-left: 1px solid #dddddd;
}
.tableStyle tbody tr td a {
    color: #0066cc;
}
.tableStyle tbody tr td:last-child {
    border-right: 1px solid #dddddd;
}
.tableTop .btn {
    padding: 11px 30px;
}
.tableTop {
    margin-top: 20px;
}
ul.pagination {
    justify-content: right;
}
/* Sponsorship Css Close */
/* IMA Membership page start */
.membershipContent {
    padding-top: 30px;
}
.membershipContent .lblStyle {
    text-transform: initial;
}
.roundCheck .form-check-input {
    border-radius: 50%;
}
.checkStyle .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 96, 17, 0.1);
}
.imaMShiopRightCol {
    width: 400px;
}
.cs4HeaderCol {
    padding: 15px 0px 15px 0px;
}
.cs4HeaderCol h4 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    padding-top: 2px;
}
.sponsorshipPanel h4 {
    background-color: #f2f2f2;
    padding: 20px 35px !important;
}
.cs4BodyCol {
    padding: 20px;
}
.tStyle b {
    font-weight: 500;
}
.tStyle > li {
    padding: 15px 5px;
}
.tStyle > li + li {
    border-top: 1px solid #b7b7b7;
}
.cardStyle4 + .cardStyle4 {
    margin-top: 30px;
}
.o5 {
    opacity: 0.5;
}
.cardFieldsCol .form-control {
    padding: 0;
    border-radius: 0;
    border: none;
}
.form-control.cardExpFld {
    width: 70px;
    text-align: center;
}
.form-control.cardCvcFld {
    width: 50px;
    text-align: center;
}
.cardFieldsCol .form-control.cardNumberFld {
    padding-left: 25px;
}
.cardFld {
    position: relative;
}
.cardIcon {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.8;
}
.purchaseBtn {
    padding-top: 5px;
}
/* IMA Membership page end */
/* support page start */
.supporyTopContent {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    /* padding-top: 20px; */
}
.supporyMainCol {
    padding-top: 20px;
}
.spCardCol {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    display: inline-block;
    width: 100%;
}
.spCardImg {
    width: 100%;
    position: relative;
    height: 300px;
}
.spCardImg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    background: -moz-linear-gradient(
        top,
        rgba(0, 0, 0, 1) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(0, 0, 0, 1) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 1) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(0, 0, 0, 1) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(255, 255, 255, 0) 60%,
        rgba(0, 0, 0, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=0 );
    -webkit-background-size: auto 200%;
    background-size: auto 200%;
    background-position: bottom;
}
.spCardCol:hover .spCardImg::before {
    background-color: rgba(0, 0, 0, 0.5);
}
.spCardImg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spCardText {
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    padding: 30px;
    margin-top: -95px;
}
.spCardCol:hover .spCardText {
    margin-top: 0;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%);
}
.spCardText > h3 {
    color: var(--whiteColor);
    text-transform: uppercase;
    font-size: 26px;
    padding-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: inherit;
}
.customBadgePackage {
    background-color: #4a6b38b8;
    border-radius: 20px;
    margin-left: 5px;
    font-size: 14px;
    padding: 6px 10px 5px 10px;
}
.packageAmoutAlign {
    display: flex;
    justify-content: center;
    align-items: center;
}
.spCardText > p {
    color: var(--whiteColor);
    font-size: 16px;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
/* support page close */
/* corporate partnership page start */
.cpTopContent {
    padding: 10px 0;
}
.cpBtn {
    max-width: 285px;
}
.cpBtn .btnPrimary {
    border-radius: 50px;
    line-height: 1.2;
}
.cpartnerText > ul {
    padding: 10px 0 20px;
}
.cpartnerText > ul > li {
    display: block;
    padding-left: 12px;
    position: relative;
    font-size: 16px;
}
.cpartnerText > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background-color: var(--baseColor);
    height: 4px;
    width: 4px;
    border-radius: 50%;
}
.gPartners > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 15px;
}
.gPartners > li > a > img {
    max-width: 170px;
    max-height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
}
.cpMdlContent {
    padding: 0 0 50px;
}
.founderSection > div {
    padding: 0;
}
.plainsHistoryHeader {
    text-align: center;
}
.plainSection {
    padding-top: 80px;
}
.plainsTopContain {
    padding-top: 0;
}
.plainsTopContain p {
    text-align: center;
}
.plainsSection .newColHead {
    background-color: #fff;
    color: #000;
    text-align-last: center;
    padding: 0;
}
.bookingHomeSection {
    margin-bottom: 50px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 50px !important;
}
.plainsSection .newColHead span {
    border-bottom: 3px solid #4a6b38;
    padding: 0 50px;
}
.plainsSection .newColHead h5 {
    font-size: 18px;
}
.MediaContent {
    text-align: center;
}
.plainsSection .newColBody {
    background-color: #fff;
    text-align: center;
    color: #555;
}
.plainSection .ourColHead {
    padding: 0;
}
.plainSection .ourColHead img {
    height: 160px;
    object-fit: cover;
}
.modalWidth {
    max-width: 1000px;
    margin: 0 15px;
}
.iconPossion {
    position: relative;
}
.dropDownIcon {
    color: #000000;
    position: absolute;
    right: 25px;
    font-size: 12px;
    bottom: 15px;
}
.venueDropdownicon {
    bottom: 15px;
}
.modalCloseBtn:before {
    background-color: transparent;
}
.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(248 96 17 / 18%);
    opacity: 1;
}
.active > .page-link,
.page-link.active {
    z-index: 3;
    color: #4a6b38;
    background-color: #ffffff;
}
.page-link {
    color: #000000;
}
.disabled > .page-link,
.page-link.disabled {
    color: #4a6b38;
}
.page-link:hover {
    z-index: 2;
    color: #4a6b38;
    /* text-decoration: underline; */
    background-color: #ffffff78;
    border-color: var(--bs-pagination-hover-border-color);
}
.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}
.page-link:focus {
    z-index: 3;
    color: #4a6b38;
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: none;
}
/* .modalWidth > div{
    padding: 30px 25px;
} */
.activeBox .active-type,
.bookingSpaceBottom .active-type {
    /* box-shadow: 0px 0px 16px rgb(255 1 1 / 75%); */
    border: 1px solid #4a6b38;
    background-color: #eeeeee80 !important;
    box-shadow: none;
}
#cafe_body img {
    min-height: 100px;
    object-fit: cover;
}
.cafeAlignItem {
    display: flex;
    flex-direction: column-reverse;
}
.mainCafeTabConatin .venueTabContent {
    text-align: center;
}
.cafeImgWidth {
    width: -webkit-fill-available;
}
.cafeTopContent {
    text-align: center;
    padding: 20px 0 40px 0;
}
.quantityField div {
    margin: 0 10px;
}
.paymentMethodStyle {
    border-radius: 0;
    border: none;
    background-color: #f0f0f0;
    height: 48px;
    font-size: 16px;
}

/* corporate partnership page close */
/************************************ ******** MEDIA-QUARY START ****** ***************************************/
.ddTrigger {
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
}
.dropdownItemCol:hover .ddTrigger,
.dropdownItemCol:hover > a {
    color: var(--primaryColor);
}
.dropdownMenu .dropdownItem {
    padding: 5px 20px;
    display: block;
}
.dropdownItemCol {
    position: relative;
}
.select2-container--default .select2-selection--single {
    border-radius: 8px !important;
    /*border: none!important;
    background-color: #f0f0f0!important;*/
    height: 46px !important;
    font-size: 16px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    display: none;
}
.dropdownMenu .dropdownItem:hover {
    background-color: #496B3712;
}
.boundlessHeader {
    text-align: center;
    color: #000000;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.youtubeLogo {
    display: flex;
    color: #fff;
    background-color: red;
    width: fit-content;
    padding: 2px 10px 2px 10px;
    border: 1px solid red;
    align-items: center;
}
.youtubeLogo i {
    font-size: 22px;
    margin-right: 2px;
}
.youtubeLogo p {
    margin-bottom: 0;
    font-size: 14px;
}
.youtubeSubscribeSection {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ToPresent {
    text-align: left !important;
}
.boundlessHeaderAlign {
    text-transform: uppercase !important;
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 10px;
}
.cafeImgWidth .venueTabImg > img {
    height: unset;
}
.imgHeader {
    text-align: center;
    color: #000000;
}
.discoverHeader {
    text-align: center;
    color: #000000;
    margin: 0px 0 10px 0;
}
.tourIconMenu {
    background-color: #eee;
    padding: 20px 0px;
    border: 1px solid transparent;
}
.tourIconMenu:hover {
    background-color: rgb(246, 246, 246);
}
.culturalSection .faqSection .accordion-button:not(.collapsed) {
    background-color: #d6d6d6;
    border-radius: 0;
}
.culturalSection .formStyle .form-control,
.formStyle .form-select {
    background-color: #e1e1e1;
}
.culturalSection .form-check-input:focus {
    border-color: #feb686;
}
.culturalSection .form-check-input:checked {
    background-color: #4a6b38;
    border-color: #fd610d;
}
.listUunstyled li {
    list-style-type: circle;
}
.listUunstyled {
    padding: 0 0 20px 30px;
}
.bannerGif {
    position: fixed;
    top: 25%;
    right: 0;
    /* z-index: 10; */
}
/* .lookingImg img {
    width: -webkit-fill-available;
    height: 70vh;
    object-fit: cover;
} */
.lookingImg .lookImg {
    background-image: url(../images/lookImg.jpeg);
    height: 75vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.DiscoverSectionSpace {
    background-color: #eeeeee50;
    padding: 70px 0 60px 0;
}
.discoverHistoryMainSection {
    text-align: center;
}
.bannerGif img {
    width: 100% !important;
}
label.DiscoverLineArrows {
    padding: 30px 1px;
    background-color: #4a6b38;
    margin: 10px 0 20px 0;
}

.boundlessBodyColor i {
    font-size: 50px;
}
.boundlessBodyColor img {
    margin-bottom: 20px;
}
.boundlessTittlebottom p {
    color: #fff;
}
.boundlessBodyColor {
    background-color: #9fa62a;
}
.boundlessTittlebottom {
    margin-bottom: 0 !important;
    text-align: center;
    color: #fff;
}
.youtubeChannelHeader {
    display: flex;
    align-items: center;
}
.youtubeChannelHeader .youtubeChannelHeaderImg {
    width: 15%;
    padding-right: 25px;
}
.channelDetailsFontSize {
    font-size: 14px;
}
.youtubeChannelHeadTitle h5:hover {
    text-decoration: underline;
    margin-bottom: 5px;
}
.youtubeChannelHeader > div > img {
    border-radius: 100px;
}
.culturalBottomContain {
    padding-top: 20px;
}
/* .tastyBg {
    background-color: #e7e7e7;
} */
.row.cafe-done-area {
    margin: 15px 0;
}
.boundlessbannerSection img {
    width: 45%;
    margin-bottom: 20px;
}
.boundlessSectionSpace {
    padding: 30px 0 40px 0;
}
.tasthead4 {
    margin: 0;
    border: none !important;
}
/* .culturalChecked{
    display: flex;
} */
/* .tourIconMenu:focus{
    background-color: rgb(0, 0, 0);
} */
.tourIconMenu > i {
    font-size: 80px;
    color: #4a6b38;
}
.tourPackage {
    border: 1px solid transparent;
}
.tourPackageSectionOne {
    background-color: #4a6b38;
    color: #fff;
    padding: 15px 0;
}
.tourPackageSectionTwo {
    background-color: rgb(242, 242, 242);
    padding: 30px 25px;
    min-height: 225px;
}
.tourPackageSectionThree {
    background-color: rgb(226, 226, 226);
    padding: 15px 0;
}
.tourPackageBtn {
    display: flex;
    justify-content: center;
}
.cafeContainBody {
    min-height: 25vh;
}
.tourPackageBtn > div {
    margin: 0 10px;
}
.bookingInputCafe {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.bookingInputCafeVisible {
    display: none;
}
.venueContainHead {
    text-align: center;
    padding: 20px 0 30px;
}

.quantityField {
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.qtyBtn {
    background: #eee;
    outline: none;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    border: none;
    width: 25px;
    padding: 9px;
}
.selected-qty {
    margin: 0 5px;
    background-color: #eee;
    padding: 5px 15px;
}
.quantyAlign {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.tastyBorder {
    border-right: 1px solid #eee;
}
.mealBtn {
    width: 130px;
}
.mealBtnfade {
    background-color: #f4a278;
}
.tastyTour {
    display: none;
}
.payMethodInput {
    border-radius: 0;
    border: none;
    background-color: #f0f0f0;
    height: 48px;
    font-size: 16px;
}
.cafeItem {
    display: flex;
    align-items: flex-start;
}
.timeAndPrice {
    font-size: 24px;
}
.paymentSectionBg {
    background-color: #f9f9f9;
}
.cs4PaymentHeaderCol {
    padding: 15px 25px;
    background-image: url('../images/bg-design-16.png');
    background-size: cover;
}
.cs4HrCol {
    border-bottom: 1px solid #f0f0f0;
}
/* #agreeTC{
    margin: 3px 10px 3px -17px;
} */
.page-link {
    border: none !important;
}
.newsInnerContent {
    text-align: justify;
}
.newsInnterFootContent {
    margin-top: 40px;
}
.newsInnterFootTags,
.newsInnterFootContact,
.newsInnterFootSocial {
    display: flex;
}
.newsInnterFootTags p,
.newsInnterFootContact p {
    padding: 0 15px;
    border-right: 1px solid;
    margin-bottom: 10px;
    height: 20px;
}
.newsInnterFootTags p:last-child,
.newsInnterFootContact p:last-child,
.newsInnterFootSocial p:last-child {
    border-right: none;
}
.newsInnterFootTags p:first-child,
.newsInnterFootContact p:first-child,
.newsInnterFootSocial p:first-child {
    padding-left: 0;
}
.lookingImg .BoundlessImg img {
    width: 100%;
    /* background-image: url(../images/boundless01.jpeg);
    height: 75vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; */
}
.lookingImg .EducationImg img {
    width: 100%;
    /* background-image: url(../images/edu_portal01.jpeg);
    height: 75vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; */
}
.BoundlesImgButton {
    padding: 40px 0;
    text-align: center;
}

.lightBgSwiper {
    --swiper-theme-color: black;
}
.swiperStyle1 .swiper-wrapper {
    padding-bottom: 50px;
}
.swiperControls {
    position: absolute;
    bottom: 60%;
    left: 0;
    right: 0;
    z-index: 5;
}

.swiperStyle1 .swiper-button-next::after,
.swiperStyle1 .swiper-button-prev::after {
    --swiper-navigation-size: 24px;
    -webkit-transition: transform 300ms ease-in-out 0s;
    -o-transition: transform 300ms ease-in-out 0s;
    transition: transform 300ms ease-in-out 0s;
}
.swiperControls .swiper-pagination {
    position: static;
}
.swiperStyle1 .swiper-button-next::after,
.swiperStyle1 .swiper-button-prev::after {
    --swiper-navigation-size: 24px;
    -webkit-transition: transform 300ms ease-in-out 0s;
    -o-transition: transform 300ms ease-in-out 0s;
    transition: transform 300ms ease-in-out 0s;
    font-size: 14px;
    color: #000;
}
.imaAtImgHeight {
    min-height: 300px;
}
.ThumbnailIconBox {
    position: relative;
}
.ThumbnailIcon {
    position: absolute;
    z-index: 1000;
    bottom: 55%;
    left: 33%;
}
.ThumbnailIcon img {
    width: 50%;
    opacity: 1;
}

.ThumbnailIcon img:hover {
    opacity: 0.8;
    transition: 0.5s;
}
.row.boundlessVideoTopSection {
    padding: 20px;
    background-color: #fafafa;
    margin: 0 0 40px 0;
    align-items: baseline;
    justify-content: space-between;
}
.youtubeSubscribeCount {
    padding: 8px 10px 8px 10px;
    background-color: #fff;
    color: #000;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
}
.youtubeSubscribeCount p {
    margin-bottom: 0;
    font-size: 14px;
}
.ellipsisText > h6 {
    width: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0;
}
.ellipsisText > small {
    color: #5d5d5d;
}
.youTubeVideoDetails {
    color: #5d5d5d;
}
.swiper-button-prev,
.swiper-button-next {
    color: #000;
    background-color: #fff;
    border-radius: 50px;
    padding: 20px 15px;
}
.youTubeVideoDetails .channelDetailsFontSize {
    font-size: 14px;
}
.textStyleNone > p {
    display: -webkit-box;
    max-width: auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
}
.ellipsisText > h6:hover {
    text-decoration: underline;
}
/* .ellipsisHover a, .btn{
    -webkit-transition: all 0s ease-in-out 0s!important;
    -o-transition: all 0s ease-in-out 0s!important;
    transition: all 0s ease-in-out 0s!important;
} */
.ellipsisHover a:hover {
    color: #000;
}
.textStyleNone p {
    font-size: 16px;
}
.textStyleNone h6 {
    padding-top: 15px;
    font-size: 18px;
}
.bookingMainGroup .active-type {
    box-shadow: 0px 0px 16px rgb(1 220 255 / 0%);
    border: 1px solid #4a6b38;
}

/* New CSS Loaded */
.newSectionSpaceTop {
    padding-top: 50px;
    position: relative;
}
.newSectionSpaceTopAndBottom {
    padding: 30px 0;
    position: relative;
}
.newHeaderTextStyle {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1;
    text-align: center;
}
.newHeaderLineTextStyle {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 34px;
    line-height: 1;
    text-align: center;
}
.newHeaderSecondTextStyle {
    font-size: 22px;
    text-transform: none;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
}
.newHeaderSecondaryTextStyle {
    text-align: center;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
}
.newHeaderSecondaryTextLeftStyle {
    text-align: left;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
}
.newPrimaryBackgroundColor {
    background-color: #fafafa;
}
.newtxtCenter {
    text-align: center;
}
.exibitionImgCol img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}
.venueDetails {
    text-align: start;
    margin: 10px 0 20px;
    font-style: italic;
    color: #999;
}
.headerBuyBtn {
    background-color: white !important;
    color: var(--primaryColor) !important;
    border: 1px solid var(--primaryColor) !important;
    width: 144px;
    height: 46px;
}
.headerBuyBtn:hover {
    color: #ffffff !important;
    background-color: var(--primaryColor) !important;
}
.headerBuyBtn:hover:before {
    background-color: var(--primaryColor);
}
.colored {
    color: #652011 !important;
}
@media (min-width: 992px) {
    .ddTrigger {
        pointer-events: none;
    }
    .dropdownMenu {
        display: block;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
        -webkit-transform: translate(0px, 15px);
        -ms-transform: translate(0px, 15px);
        transform: translate(0px, 15px);
        top: 45px;
        position: absolute;
        border-radius: 0;
        min-width: 294px;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        z-index: 1000;
    }
    .dropdownItemCol:hover .dropdownMenu {
        display: block;
        opacity: 1;
        pointer-events: initial;
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    .navColMain {
        padding-right: 10px;
    }
    .nav-tabs {
        display: flex;
    }
    .card {
        border: none;
    }
    .card .card-header {
        display: none;
    }
    .card .collapse {
        display: block;
    }
    /* accordion style on mobile */
    .accordionForMbOnly .accordion-button:not(.collapsed) {
        background-color: transparent;
        color: inherit;
    }
    .accordionForMbOnly .accordion-button {
        padding: 0;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 24px;
        line-height: 1;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .tabContentStyle.accordionForMbOnly .accordion-body {
        padding: 0px;
        border: none;
    }
    .tabContentStyle.accordionForMbOnly
        .accordion-header
        .accordion-button:not(.collapsed) {
        box-shadow: none;
    }
    .tabContentStyle.accordionForMbOnly
        .accordion-header
        .accordion-button::after {
        display: none;
    }
    #rcciAccordion .accordion-item + .accordion-item {
        margin-top: 40px;
    }
    .accordionForMbOnly .collapse {
        display: block !important;
        height: auto !important;
    }
    /* accordion style on mobile */
    /* row slider */
    .sParent.actLoadMore .swiper.exhibitionsSwiper,
    .currentExhibitionContent.actLoadMore .swiper.cExhibitionsSwiper {
        margin-bottom: 0;
        height: auto;
    }
    .cExhibitionsSwiper.rowSlider .swiper-slide,
    .exhibitionsSwiper.rowSlider .swiper-slide {
        height: auto !important;
    }
    .rowSlider .swiper-wrapper {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: initial !important;
        margin-left: -15px;
        margin-right: -15px;
        -webkit-flex-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
    }
    .rowSlider .swiper-wrapper .swiper-slide {
        padding: 0 10px;
        margin-top: 20px !important;
        width: 33.33% !important;
        margin-right: 0 !important;
    }
    .rowSlider .swiper-wrapper {
        margin-top: -20px;
    }
    .rowSlider .swiper-pagination {
        opacity: 0;
        pointer-events: none;
    }
    /* row slider */
}
@media (min-width: 1200px) {
    .rowSlider .swiper-wrapper {
        margin-top: -30px;
    }
    .rowSlider .swiper-wrapper .swiper-slide {
        padding: 0 15px;
        margin-top: 30px !important;
    }
}
@media (max-width: 1599px) {
    body,
    .navColMain > ul > li.dropdown > a,
    .btn {
        font-size: 16px;
    }
    .lgText {
        font-size: 18px;
    }
    .cardsColMain {
        padding-top: 20px;
    }
    .cs1ContentCol {
        padding: 30px 25px;
    }
    .box-text h4 {
        font-size: 34px;
    }
    .cs1ContentCol p {
        font-size: 18px;
        max-width: 190px;
    }
    .lgTitle {
        font-size: 50px;
    }
    .cs2ContentCol > h4 {
        min-height: 52px;
        font-size: 22px;
    }
    .cs2ContentCol > p {
        min-height: 55px;
        font-size: 18px;
    }
    .cs2ImgCol img {
        height: 225px;
    }
    .connectImg img {
        height: 195px;
    }
    .connectRightCol {
        padding: 40px 30px;
    }
    .bookTourCol {
        padding: 90px 0;
    }
    .footerLeftCol {
        width: 340px;
        padding-right: 30px;
    }
    /* .footerLinksCol, .footerRightCol {
         padding-left: 30px;
    } */
    .visitLinks {
        width: 250px;
    }
    .visitLeftCol,
    .bookingSmCol {
        padding: 40px;
    }
    .visitRightBtmCol {
        padding-top: 30px;
        padding-left: 0;
    }
    .tabNavLinks .nav-tabs .nav-link {
        font-size: 16px;
    }
    .venueCardSlider {
        margin-top: 30px;
    }
    .venueCardSlider .cs2ImgCol img {
        height: 280px;
    }
    .cs3ImgCol img {
        height: 280px;
    }
    .swiper.exhibitionsSwiper {
        height: 780px;
    }
}
@media (max-width: 1399px) {
    .ddTrigger {
        top: 13px;
    }
    .bookTourCol {
        padding: 80px 0;
    }
    .sectionSpace {
        padding: 30px 0;
    }
    .bannerContent {
        max-width: 550px;
    }
    .bannerTitle {
        font-size: 40px;
    }
    .lgTitle {
        font-size: 50px;
    }
    .box-text h4 {
        font-size: 28px;
    }
    .navColMain > ul > li + li {
        margin-left: 40px;
    }
    .cs2ImgCol img {
        height: 195px;
    }
    .box-text h4 {
        font-size: 30px;
    }
    .socialIcons {
        padding: 15px 0;
    }
    .connectRightCol {
        width: 400px;
        padding: 30px 20px;
    }
    .connectImg img {
        height: 170px;
    }
    .footerTitle {
        font-size: 24px;
    }
    .visitLinks {
        width: 190px;
    }
    .footerTopCol {
        padding: 60px 0 50px;
    }
    .footerLinksCol,
    .footerRightCol {
        padding-left: 20px;
        padding-right: 0;
    }
    .mdIcon {
        width: 50px;
    }
    .visitLeftCol,
    .bookingSmCol {
        padding: 30px;
    }
    .vLeftRow + .vLeftRow {
        padding-top: 20px;
    }
    .vLeftRow > .mdTitle {
        padding-bottom: 0;
    }
    .mapCol iframe {
        height: 320px;
    }
    .mdTitle {
        font-size: 24px;
    }
    .tabNavLinks .nav-tabs .nav-link {
        font-size: 14px;
    }
    .tabContentStyle .accordion-body {
        padding: 30px;
    }
    .venueCardSlider {
        margin-top: 20px;
    }
    .venueTopContent {
        padding: 10px 0 40px;
    }
    .cs3ImgCol img {
        height: 230px;
    }
    .swiper.exhibitionsSwiper {
        height: 650px;
    }
    .cs3ContentCol h4 {
        font-size: 20px;
    }
    .cs3ImgCol + .cs3ContentCol {
        padding: 15px 0;
    }
    .currentGridImgCol {
        height: 260px;
    }
    .swiper.cExhibitionsSwiper {
        height: 550px;
        margin-bottom: -50px;
    }
    .cExBtmCol.cExBtm1 {
        width: 320px;
    }
    .eiRightCol {
        width: 360px;
        padding-left: 20px;
    }
    .tableBtn {
        padding: 12px 18px;
        font-size: 12px;
    }
    .sidebarCol {
        padding: 0 20px 40px;
        width: 270px;
    }
    .sidebarMenu ul li a {
        padding: 12px 15px;
        font-size: 15px;
    }
    .sidebarCol .userName {
        padding: 10px 0 5px;
    }
    .userName h3 {
        font-size: 22px;
    }
    .userImg img {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }
    .profileRight {
        padding-left: 0px;
    }
}
@media (max-width: 1199px) {
    .headerTopCol {
        padding: 10px 0;
    }
    .navColMain > ul > li + li {
        margin-left: 15px;
    }
    /* .headerBtmCol {
         border-bottom-width: 3px;
    } */
    .bannerContent {
        max-width: 550px;
    }
    .bannerTitle {
        font-size: 40px;
    }
    .cardsColMain {
        padding-top: 10px;
    }
    .cs2ContentCol > h4 {
        min-height: 48px;
        font-size: 20px;
    }
    .cs2ContentCol > p {
        min-height: 50px;
        font-size: 16px;
    }
    .cs2ImgCol + .cs2ContentCol {
        padding-top: 15px;
    }
    .footerTopCol {
        font-size: 14px;
    }
    .footerLeftCol {
        width: 235px;
        padding-right: 0px;
    }
    .footerLinksCol,
    .footerRightCol {
        padding-left: 15px;
    }
    .visitLinks {
        width: 155px;
    }
    .footerTitle {
        margin-bottom: 10px;
        font-size: 22px;
    }
    .footerLogo {
        padding-bottom: 30px;
        padding-right: 20px;
    }
    .cs2ImgCol img {
        height: 160px;
    }
    .pannelBodyheader {
        padding: 18px 20px;
        font-size: 20px;
    }
    .faqSection .accordion-body {
        padding: 0 20px 15px;
    }
    .xlText {
        font-size: 18px;
    }
    .lgTitle {
        font-size: 45px;
    }
    .mdTitle {
        font-size: 22px;
    }
    .venueCardSlider .cs2ImgCol img {
        height: 240px;
    }
    .venueTabContent {
        padding: 15px 20px;
    }
    .swiper.venuehireSwiper {
        padding-bottom: 40px;
    }
    .swiper.exhibitionsSwiper {
        height: 600px;
    }
    .cs3ImgCol img {
        height: 200px;
    }
    .exibitionImgCol img {
        height: 350px;
    }
    .currentGridImgCol {
        height: 230px;
    }
    .swiper.cExhibitionsSwiper {
        height: 490px;
        margin-bottom: -30px;
    }
    .cExBtmCol.cExBtm1 {
        width: 270px;
    }
    .bannerImg {
        height: 350px;
    }
    .currentExbTopCol {
        padding-top: 10px;
    }
    .eventsCards {
        padding: 20px 0;
    }
    .eventContentCol > p + .btn {
        margin-top: 0;
    }
    .eventImgCol + .eventContentCol {
        padding-top: 20px;
    }
    .singleEventContent {
        padding: 40px 0px 20px;
    }
    .eventFullImg {
        height: 280px;
    }
    .profileRight {
        padding-left: 0;
        margin-top: 40px;
    }
    .sidebarMenu ul li a {
        text-align: center;
    }
    .sidebarCol {
        width: 100%;
    }
    .imaMShiopRightCol {
        width: 350px;
    }
    .cs4HeaderCol {
        padding: 15px 20px;
    }
    .cs4HeaderCol h4 {
        font-size: 20px;
    }
    .sectionSpace {
        padding: 30px 0;
    }
    .membershipContent {
        padding-top: 20px;
    }
    .navColMain > ul > li > a {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    .dropdownMenu {
        display: none;
    }
    .ddTrigger {
        top: 8px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        display: inline-block;
        width: 30px;
        text-align: center;
        /* background-color: #f1f1f1;
         */
        padding: 4px 5px;
    }
    .sidebarLogo {
        max-width: 180px;
    }
    .navColMain .dropdown-menu {
        border: none;
        padding: 5px 10px 10px;
        position: static !important;
        -webkit-transform: translate(0px, 0px) !important;
        -ms-transform: translate(0px, 0px) !important;
        transform: translate(0px, 0px) !important;
    }
    .navColMain .dropdown-menu .dropdown-item {
        padding: 5px 0;
        opacity: 0.6;
    }
    .navColMain .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        opacity: 1;
        padding-left: 4px;
    }
    .navColMain > ul > li.dropdown > a {
        font-size: 18px;
    }
    .menuToggleCol {
        padding: 15px 20px;
        cursor: pointer;
        height: 100%;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
    }
    .menuToggle {
        margin: 0 auto;
    }
    .navColMain {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #fff;
        width: 350px;
        max-width: 100%;
        z-index: 999;
        padding: 0px;
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }
    .activeMenu .navColMain {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .navColMain > ul > li {
        display: block;
    }
    .navColMain > ul > li + li {
        margin-left: 0;
        margin-top: 5px;
    }
    .ddTrigger {
        right: 30px;
    }
    .dropdownMenu .dropdownItem {
        padding: 5px 50px;
    }
    .navBackdrop {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 5;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }
    .activeMenu .navBackdrop {
        pointer-events: initial;
        opacity: 1;
    }
    .tourpackageMobile {
        margin-top: 25px;
    }
    .cs4HrCol {
        padding-left: 0 !important;
    }
    .mealSelect {
        margin-top: 25px;
    }
    .headerTopCol {
        text-align: center;
    }
    /* .headerBtmCol {
         border-bottom-width: 0;
    } */
    .btn.headerBtn {
        width: 100%;
        border-radius: 0;
        padding: 15px 20px;
    }
    .btnPrimary.headerBtn:before {
        border-radius: 0;
    }
    .bannerSectionInner {
        min-height: 250px;
        padding-top: 50px;
    }
    .bannerContent {
        max-width: 100%;
        text-align: center;
    }
    .bannerContent p {
        max-width: 100%;
    }
    .bannerTitle::before {
        width: 180px;
        right: 0;
        margin: 0 auto;
    }
    .bannerSection .carousel-indicators {
        justify-content: center;
    }
    .connectRightCol {
        width: auto;
        margin-top: 15px;
        padding: 40px 30px;
    }
    .connectContentCol {
        padding-top: 20px;
    }
    .visitLinks {
        width: auto;
    }
    .footerLinksCol,
    .footerRightCol {
        position: relative;
        border-left: none;
    }
    .footerLeftCol,
    .footerLinksCol,
    .footerRightCol {
        padding: 15px 0;
    }
    .footerTopCol {
        padding: 50px 0 40px;
    }
    .swiper.blogSwiper {
        padding-bottom: 60px;
    }
    .swiper.blogSwiper.swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 0px;
    }
    .newsletterFld {
        padding: 10px 85px 10px 30px;
    }
    .newsletterFldCol > .btn {
        right: 10px;
    }
    .socialIcons {
        padding: 25px 0 0;
    }
    .cs2ImgCol img {
        height: 190px;
    }
    .bannerContentCol {
        -ms-align-items: flex-end;
        align-items: flex-end;
    }
    .faqSection .accordion-body {
        padding: 10px 0px 15px;
    }
    .faqSection .accordion-body p:last-child {
        margin-bottom: 0;
    }
    .faqSection .accordion-item {
        background-color: transparent;
    }
    .faqSection .accordion-button:not(.collapsed),
    .pannelBodyheader {
        background-color: var(--lightBg3);
    }
    .faqSection .accordion-item:first-of-type .accordion-button,
    .faqSection .accordion-item:last-of-type .accordion-button.collapsed {
        border-radius: 0;
    }
    .breadcrumbCol {
        margin-top: 20px;
    }
    .bannerImg {
        height: 320px;
    }
    .tab-content > .tab-pane {
        display: block !important;
        opacity: 1;
    }
    .moretext {
        display: none;
    }
    .tabContentStyle.accordion {
        border: 0;
        border-radius: 0;
    }
    .tabContentStyle .accordion-body {
        padding: 20px 10px;
        border: 0;
    }
    .tabContentStyle .accordion-item:first-of-type {
        border-radius: 0;
    }
    .tabContentStyle .accordion-item:first-of-type .accordion-button {
        border-radius: 0;
    }
    .tabContentStyle .accordion-item {
        border: 0;
    }
    .tabText {
        padding: 0;
    }
    .tabContentStyle .accordion-button {
        box-shadow: none;
        background-color: #f0f0f0;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--baseColor);
        padding-right: 50px;
        border-radius: 3px !important;
    }
    .tabContentStyle .accordion-button::after {
        position: absolute;
        right: 20px;
        top: 50%;
        background-size: 20px 17px;
        filter: grayscale(1);
        -webkit-transform: translate(0, -50%) rotate(0deg);
        -o-transform: translate(0, -50%) rotate(0deg);
        transform: translate(0, -50%) rotate(0deg);
    }
    .tabContentStyle .accordion-button:not(.collapsed)::after {
        -webkit-transform: translate(0, -50%) rotate(180deg);
        -o-transform: translate(0, -50%) rotate(180deg);
        transform: translate(0, -50%) rotate(180deg);
    }
    .tabContentStyle .accordion-item + .accordion-item {
        margin-top: 10px;
    }
    .tabMainCardSlider .swiper.blogSwiper {
        padding-bottom: 40px;
    }
    .swiper.gallerySwiper {
        padding-bottom: 40px;
    }
    .venueTabCol .tabContentStyle .accordion-body {
        padding: 15px 10px;
    }
    .venueTabContent {
        padding: 0 0 20px;
    }
    .venueInfoMainCol {
        padding-top: 30px;
    }
    #rcciAccordion .tabContentStyle .accordion-item {
        margin-bottom: 10px;
    }
    .exibitionLeftCol {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .swiper.exhibitionsSwiper {
        height: auto;
        padding-bottom: 30px;
    }
    .exhibitionsSwiper .swiper-slide {
        height: auto !important;
        margin-top: 0 !important;
    }
    .exhibitionsSwiper.swiper-grid-column > .swiper-wrapper {
        flex-wrap: nowrap;
        flex-direction: initial;
    }
    .exibitionLeftCol .mdTitle,
    .exibitionLeftCol .mdTitle + p {
        padding-bottom: 0;
    }
    .exibitionImgCol img {
        height: 300px;
    }
    .swiper.imaSwiper {
        padding-bottom: 30px;
    }
    .playpause > span {
        width: 80px;
        height: 80px;
        padding: 25px;
    }
    .vedioSection p {
        padding-top: 30px;
    }
    .vedioSection {
        padding-top: 10px;
    }
    .videoCol .playpause {
        margin-top: 10px;
    }
    .playpause > span {
        width: 60px;
        height: 60px;
        padding: 20px;
    }
    .videoContentCol {
        padding: 10px;
    }
    .swiper.cExhibitionsSwiper {
        height: 510px;
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .loadMoreBtmBtnCol {
        display: none;
    }
    .cExBtmCol.cExBtm1 {
        width: 100%;
        padding-bottom: 30px;
    }
    .cExBtmCol {
        text-align: center;
    }
    .cExBtmCol .socialIcons {
        text-align: center;
        padding: 5px 0;
    }
    .cExBtmCol.cExBtm3 {
        padding-top: 10px;
    }
    .eventDateCol {
        padding: 0px 0 5px;
    }
    .eventDateCol .calendarIcon {
        width: 20px;
    }
    .eventContentCol {
        font-size: 16px;
    }
    .eventContentCol p {
        line-height: 1.5;
    }
    .eventContentCol h4 {
        font-size: 20px;
    }
    .eventsCards {
        padding: 10px 0;
    }
    body,
    .navColMain > ul > li.dropdown > a,
    .btn {
        font-size: 14px;
    }
    .xlText {
        font-size: 18px;
    }
    .eventsCards {
        padding: 5px 0;
    }
    .eventFullImg {
        height: 220px;
    }
    .eiRightCol {
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }
    .socialIcons > ul > li > a {
        width: 42px;
        height: 42px;
    }
    .socialIcons > ul > li > a img {
        max-width: 100%;
        max-height: 90%;
    }
    .socialIcons > ul > li + li {
        padding-left: 10px;
    }
    .mdTitle {
        font-size: 20px;
    }
    /* .tableBtnOuter {
         justify-content: center;
         margin-bottom: 5px;
    }
     */
    .imaMShiopRightCol {
        margin-top: 30px;
        width: 100%;
    }
    .cs4HeaderCol {
        padding: 15px 15px;
    }
    .cs4BodyCol {
        padding: 12px;
    }
    .membershipContent {
        padding-top: 10px;
    }
    .profileOuter {
        padding-top: 100px;
        margin-bottom: 60px;
    }
    .spCardText {
        padding: 25px;
    }
    .spCardText > h3 {
        font-size: 22px;
    }
    .spCardText > p {
        font-size: 14px;
    }
    .spCardImg {
        height: 360px;
    }
    .spCardText > h3,
    .spCardText > p {
        color: var(--baseColor);
    }
    .spCardText {
        position: inherit;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        padding: 20px 0 0;
        margin: 0;
    }
    .spCardCol:hover .spCardText {
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
    }
    .spCardText > h3 {
        text-transform: inherit;
        padding-bottom: 5px;
    }
    .spCardImg::before {
        display: none;
    }
    .supporyTopContent {
        padding-top: 0px;
    }
    .supporyMainCol {
        padding-top: 0px;
    }
    .tourBookingContentCol {
        padding-top: 20px;
    }
    .cpMdlContent {
        padding: 0 0 30px;
    }
    header .logoCol img {
        width: 75px;
        height: 100%;
    }
    .headerBtmCol:not(.sticky) {
        padding: 16px 0;
    }
    .bannerSectionInner h1 {
        font-size: 35px;
    }
    .headerBtmColShadow {
        padding: 50px 0;
    }
    h1 {
        font-size: 23px;
    }
    .container {
        width: 90%;
    }
    .footerContactCol {
        text-align: center;
        margin: 0 auto;
        width: unset;
    }
    .footerContactCol div {
        justify-content: center;
    }
    .footerContactCol small {
        font-size: 10px;
        line-height: unset;
        display: block;
    }
    .logoCol {
        display: flex;
        align-items: center;
        gap: 35px;
    }
    .logoCol>div svg {
        width: 20px;
        fill: #652011;
    }
    .headerBtmCol .btn.btnPrimary {
        font-size: 13px;
        padding: 10px 18px;
    }
    :root {
        --p-size: 16px;
    }
}
@media (max-width: 767px) {
    .bannerTitle {
        font-size: 32px;
    }
    .sectionSpace {
        padding: 30px 0;
    }
    .bannerContent p {
        font-size: 16px;
    }
    .lgText {
        font-size: 16px;
        line-height: 1.5;
    }
    .cs1ContentCol {
        padding: 20px;
    }
    .cs1ImgCol img {
        height: 150px;
    }
    .box-text h4 {
        font-size: 22px;
    }
    .cs1ContentCol p {
        font-size: 14px;
        max-width: 150px;
    }
    .readmoreLinkCol {
        padding-top: 8px;
        margin-top: 15px;
    }
    .cs2ContentCol > h4 {
        min-height: 45px;
        font-size: 18px;
    }
    .cs2ContentCol > p {
        min-height: 45px;
        font-size: 14px;
    }
    .lgTitle {
        font-size: 35px;
    }
    .cs2ImgCol img {
        height: 150px;
    }
    .footerRightCol .memberLogo {
        margin-top: 15px;
    }
    .memberLogo > li > img {
        max-width: 60px;
        max-height: 60px;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .venueDetailsRight {
        padding: 12px 0px !important;
    }
    .pannelBodyheader {
        padding: 15px 15px;
        font-size: 18px;
    }
    .faqSection .accordion-body p {
        font-size: 16px;
    }
    .faqSection .accordion-body {
        padding: 15px 0px 20px;
    }
    .collapseTrigger {
        width: 50px;
    }
    .xlText {
        font-size: 18px;
    }
    .faqSection {
        margin-top: 30px;
    }
    .homeIcon {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    .connectRightCol > h4,
    .connectRightCol > p {
        padding-bottom: 5px;
    }
    .bannerImg {
        height: 280px;
    }
    /*********************************/
    .galleryTopContent {
        padding: 15px 0 20px;
    }
    .cs3ContentCol h4 {
        font-size: 18px;
    }
    .vedioSection p {
        padding-top: 20px;
    }
    .videoContentCol .lgTitle {
        margin-bottom: 5px;
    }
    .videoContentCol .xlText {
        margin-bottom: 5px;
    }
    .playpause > span {
        width: 50px;
        height: 50px;
        padding: 15px;
    }
    .currentExbTopCol {
        padding-top: 10px;
    }
    .eventImgCol + .eventContentCol {
        padding-top: 15px;
    }
    .cs4HeaderCol h4 {
        font-size: 18px;
    }
    .cs4BodyCol {
        padding: 12px 15px;
    }
    .tStyle > li {
        padding: 10px 0px;
    }
    .cardStyle4 + .cardStyle4 {
        margin-top: 20px;
    }
    .profileOuter {
        padding-top: 80px;
        margin-bottom: 50px;
    }
    .tableStyle thead tr th {
        font-size: 16px;
        padding: 12px 15px;
    }
    .tableStyle tbody tr td {
        padding: 14px 12px;
        font-size: 15px;
    }
    .spCardCol {
        margin-bottom: 40px;
    }
    .spCardImg {
        height: 320px;
    }
    body {
        font-size: 16px;
    }
    .mealOderBtn {
        display: flex;
        justify-content: space-around;
    }
    .plainSection .ourColHead img {
        height: fit-content;
        object-fit: cover;
    }
    .bookingsMainSectionMobile {
        padding-bottom: 15px;
    }
    .mobilePOne {
        padding-bottom: 10px;
    }
    .mobilePTwo {
        padding-bottom: 20px;
    }
    .bannerGif {
        z-index: 1000;
    }
    label.DiscoverLineArrows {
        padding: 25px 1px;
    }
    .presentDayImg img {
        width: -webkit-fill-available;
        object-fit: cover;
    }
    .boundlessPlainsImg {
        width: -webkit-fill-available;
        object-fit: cover;
        height: -webkit-fill-available !important;
        padding-bottom: 50px;
    }
    .boundlessSpaceMobile {
        padding: 0 15px;
    }
    .lookingImg {
        display: none;
    }
    .ourColomHead img {
        width: -webkit-fill-available;
    }
    .paddingReleased {
        padding: 0;
    }
    .founderSection {
        padding: 0 !important;
    }
    .gallery__item {
        width: 100%;
    }
    .player__video {
        width: 100%;
    }
    .carousel-inner {
        max-height: 40vh;
    }
}
@media (max-width: 575px) {
    .navColMain > ul > li > a {
        padding: 12px 30px;
    }
    .navColMain > ul > li > a:hover {
        padding-left: 35px;
    }
    .ddTrigger {
        right: 25px;
    }
    .galleryMoretxt {
        display: block !important;
    }
    .galleryTabImg {
        padding: 0 !important;
    }
    .dropdownMenu .dropdownItem {
        padding: 5px 40px;
    }
    .sectionSpace {
        padding: 30px 0;
    }
    .xlText {
        font-size: 16px;
    }
    .cs2ImgCol img {
        height: 250px;
    }
    .cs2ContentCol > h4 {
        min-height: auto;
        font-size: 20px;
    }
    .cs2ContentCol > p {
        min-height: auto;
        font-size: 16px;
    }
    .cafeContainBody {
        min-height: fit-content;
    }
    .mainCafeTabConatin .venueTabContent {
        padding: 20px 0 40px 0;
    }
    .connectRightCol {
        margin-left: -12px;
        margin-right: -12px;
        padding: 40px 20px;
    }
    .bannerTitle {
        font-size: 26px;
    }
    .cs2ContentCol > h4 {
        font-size: 20px;
    }
    .lgTitle {
        font-size: 35px;
    }
    .cs2ImgCol img {
        height: 200px;
    }
    .topNavSwiper {
        padding-top: 20px;
    }
    .footerLinksCol,
    .footerRightCol {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 30px;
    }
    .socialIcons > ul > li > a {
        width: 46px;
        height: 46px;
    }
    .socialIcons > ul > li + li {
        padding-left: 10px;
    }
    .bannerImg {
        height: 220px;
    }
    .quantyAlign {
        position: absolute;
        right: 15px;
    }
    .tabMainCardSlider .swiper.blogSwiper {
        padding-bottom: 30px;
    }
    .tabContentStyle .accordion-body {
        padding: 10px 5px;
    }
    .footerTopCol {
        font-size: 16px;
    }
    .cs3ImgCol img {
        height: 300px;
    }
    .exibitionImgCol img {
        height: 200px;
    }
    .lh-md {
        line-height: 1.6;
    }
    .visitTopContent {
        padding: 10px 0;
    }
    .currentGridImgCol {
        height: 200px;
    }
    .swiper.cExhibitionsSwiper {
        height: 450px;
    }
    .eventFullImg {
        height: 180px;
    }
    .mdTitle {
        font-size: 18px;
    }
    /* .searchCol {
        margin-bottom: 15px;

    } */
    /* .activeBox .active-type {
        box-shadow: 0px 0px 16px rgb(1 220 255 / 75%);
    } */
    .sidebarCol {
        padding: 0 15px 20px;
    }
    .userImg img {
        width: 70px;
        height: 70px;
    }
    .gPartners > li > a > img {
        max-width: 100px;
        max-height: 50px;
    }
    .gPartners > li {
        padding: 5px 10px;
    }
    .preOrderMealMobile {
        display: flex;
    }
}
@media (max-width: 485px) {
    .spCardImg {
        height: 260px;
    }
}
@media (max-width: 375px) {
    .currentGridImgCol {
        height: 150px;
    }
    .swiper.cExhibitionsSwiper {
        height: 350px;
    }
}
@media (max-width: 374px) {
    .navColMain > ul > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .ddTrigger {
        top: 5px;
    }
    .navColMain .dropdown-menu {
        padding: 0px 10px 0px;
    }
    .navColMain .dropdown-menu .dropdown-item {
        padding: 4px 0;
    }
    .btn.headerBtn {
        padding: 12px 20px;
    }
    .breadcrumbCol {
        margin-top: 15px;
    }
    .bannerImg {
        height: 180px;
    }
    .headerTopCol {
        font-size: 12px;
    }
    .bannerTitle {
        font-size: 22px;
        padding-bottom: 15px;
        margin-bottom: 5px;
    }
    .bannerTitle::before {
        bottom: 4px;
    }
    .bannerContent p {
        font-size: 15px;
        margin-bottom: 0;
    }
    .lgText {
        font-size: 15px;
    }
    .topNavSwiper {
        padding-top: 15px;
    }
    .cs2ImgCol img {
        height: 170px;
    }
    .swiper.blogSwiper {
        padding-bottom: 40px;
    }
    .bookTourCol {
        padding: 50px 0;
    }
    .connectImg img {
        height: 130px;
    }
    .connectRightCol {
        padding: 40px 15px;
    }
    .newsletterFld {
        padding: 8px 75px 8px 20px;
        height: 42px;
    }
    .newsletterFldCol > .btn {
        right: 5px;
    }
    .footerBtmCol {
        font-size: 10px;
    }
    .tabContentStyle .accordion-button {
        font-size: 14px;
        padding: 15px 40px 15px 15px;
    }
    .tabContentStyle .accordion-button::after {
        right: 10px;
        background-size: 15px 15px;
        background-position: center;
    }
    .cs3ImgCol img {
        height: 250px;
    }
    .cs2ContentCol > h4 {
        font-size: 18px;
    }
    .gPartners > li > a > img {
        max-width: 90px;
        max-height: 40px;
    }
}
