* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'Outfit';
    src: url(../fonts/Outfit-Regular.ttf);
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: 'Poppins-regular';
    src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
    font-family: 'TrajanPro-Bold';
    src: url(../fonts/TrajanPro-Bold.otf);
}

:root {
    --primary-color: #5da9dd;
    --secondary-color: #45443f;
    --primary-font-size: 1rem;
    --title-font-size: 1.6rem;
    --primary-font: 'Poppins-regular';
    --secondary-font: 'Poppins';
    --title-font: 'Outfit';
    --title-font-trajan: 'TrajanPro-Bold';
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

body,
html {
    padding: 0;
    margin: 0;
    font-size: var(--primary-font-size);
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 1.2;
    background: #fffef4;
    height: 100vh;
    width: 100vw;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.home-screen {
    height: 100vh;
    width: 100vw;
}

.main {
    height: 100vh;
    width: 100vw;
    background-size: 13rem;
    background-repeat: repeat;
    position: relative;
   
}

/*loader*/

.loading-section {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-items {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 200px;
    position: relative;
}


.loading {
    position: relative;
    width: 110px;
    display: flex;
    align-items: center;
}

.loading span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #45443f;
    border-radius: 30px;
    position: absolute;
}

.loading span:first-child {
    animation: loading-span1 1.3s infinite;
    left: 0;
}

.loading span:nth-child(2) {
    animation: loading-span2 1.3s infinite;
    left: 40px;
}

.loading span:nth-child(3) {
    animation: loading-span3 1.3s infinite;
    left: 80px;
}

@keyframes loading-span1 {
    0% {
        height: 30px;
    }

    25% {
        height: 60px;
    }

    50% {
        height: 30px;
    }

    100% {
        height: 30px;
    }
}

@keyframes loading-span2 {
    0% {
        height: 30px;
    }

    25% {
        height: 30px;
    }

    50% {
        height: 60px;
    }

    75% {
        height: 30px;
    }

    100% {
        height: 30px;
    }
}

@keyframes loading-span3 {
    0% {
        height: 30px;
    }

    25% {
        height: 30px;
    }

    50% {
        height: 30px;
    }

    75% {
        height: 60px;
    }

    100% {
        height: 30px;
    }
}


/*loader end*/

.svg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.svg-img embed {
    height: 100%;
    width: 85%;
}

.arch-section {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72vw;
    height: 76vh;
    border-radius: 30rem 30rem 0 0;
}

.logo2 {
    position: absolute;
    top: 20%;
    left: 0;
    background: linear-gradient(90deg, #8a3ab9, #ff6ec4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    padding: 15px;
}

.logo-img {
    top: 12%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
}
#hotelLogo {
    width: 100%;
}
.explore-button {
    margin-top: 4rem;
}

.button {
height: 100%;
    width: 100%;
    display: flex
;
    justify-content: center;
    align-items: center;
    padding: 30px !important;
    /* background-color: #fff; */
    border-radius: 50%;
    background-image: url(../../assets/images/emblem-color.png);
    background-size: cover;
    object-fit: cover;
    background-position: center;
    filter: brightness(20.5);
}

.button img {
    height: 100%;
    width: auto;
}

.circle {
    position: absolute;
    top: auto;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    height: 210px;
    border-radius: 100vmax;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    background-color: #00000061;
    /* outline-offset: 8px; */
}

.logo {
    width: 110px;
    height: 110px;
    z-index: 9;
}

.text {
    position: absolute;
    width: 90%;
    height: 90%;
    font-family: var(--title-font-trajan);
    color: #fff;
    font-size: 18px;
    animation: textRotation 8s linear infinite;
    transform-origin: center;
    letter-spacing: 80px;
}

.swiper {
    height: 100vh;
    width: 100vw;
}

.swiper-cards {
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

.text span {
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0px 94px;
    text-transform: capitalize;
}

.button-section {
    position: absolute;
    bottom: 15%;
    width: 100%;
}

.navigation .home {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0%;
    display: flex;
    justify-content: center;
    height: 90px;
    width: 90px;
    background-color: #ffffffbf;
    border-radius: 0 50% 50% 0;
    z-index: 9;
    padding-right: 8px;
    box-shadow: 0px 7px 30px 0px #8f8f8f;
}

.navigation .back {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0%;
    display: flex;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: #ffffffbf;
    border-radius: 50% 0 0 50%;
    z-index: 9;
    padding-left: 8px;
    box-shadow: 0px 7px 30px 0px #8f8f8f;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15);
}

.swiper-slide {
    background: #FFFEF4;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
}

.swiper-container,
.swiper-wrapper,
.swiper-slide {
  transform: translate3d(0,0,0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout paint style;
  overflow: hidden;
}

#eventsDisplay-two .swiper-container {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#eventsDisplay-two .swiper-wrapper,
#eventsDisplay-two .swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: none;
  contain: none;
  overflow: visible;
}


.home-screen {
    background: url(../images/bottom-element.png) #fffef4;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;

}

.navigation .home img,
.navigation .back img {
    width: 85%;
}

.menu img {
    width: 75% !important;
    height: auto !important;
}

.img-section {
    height: 60%;
    overflow: hidden;
}

.inner-section {
    height: 100%;
    width: 100%;
}

.img-section:after {
    display: none;
}

.bg-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.img-section {
    height: 60%;
    overflow: hidden;
}

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

.content-section {
height: 40%;
    width: 87%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding: 2.5rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    font-family: var(--secondary-font);
}

.img-section:after {
    display: none;
}

.swiper-pagination-bullet {
    width: .8rem !important;
    height: .8rem !important;
    display: inline-block !important;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%) !important;
    background: #fff !important;
    opacity: .6 !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 5% !important;
}

.swiper-pagination-bullet-active {
    width: 4rem !important;
    border-radius: 1rem !important;
    opacity: 1 !important;
}

.bg-section:after {
    content: '';
    height: 120px;
    width: 100%;
    /* background-color: red; */
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/bottom-element.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.no-object.bg-section:after {
    content: unset;

}

@keyframes move {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

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

.content-section h1 {
    font-family: var(--title-font-trajan);
    text-transform: uppercase;
    font-size: 2rem;
}

.content-section p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--secondary-color);
    text-align: justify;
}

.title {
    position: absolute;
    width: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    text-transform: uppercase;
    z-index: 1;
    color: #fff;
    text-align: center;
    font-family: var(--title-font);
}

.title-font {
    font-family: var(--title-font);
}

.overlay {
    position: relative;
}

.overlay:after {
    content: '';
    height: 100%;
    width: 100%;
    background-image: url(../images/destination/destination-overlay.png);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-size: cover;
}

.dining::after {
    background-image: url(../images/dining-overlay.png);
}

.high-tide:after {
    background-image: url(../images/high-tide-overlay.png);
}

.hide-tide-page:after {
    background-image: url(../images/high-tide-overlay-inner-page.png);
}

.wellness:after {
    background-image: url(../images/wellness-overlay.png);
}

.event:after {
    background-image: url(../images/events-overlay.png);
}

.room:after {
    background-image: url(../images/rooms/room-overlay.png);
}

.pool:after {
    background-image: url(../images/pool-overlay.png);
}

.fitness:after {
    background-image: url(../images/fitness-overlay.png);
}

.fitness-page:after {
    background-image: url(../images/fitness-overlay-page.png);
}

.about:after {
    background-image: url(../images/about-overlay.png);
}

.bekal:after {
    background-image: url(../images/gateway-bekal-overlay.png);
}

.gateway:after {
    background-image: url(../images/gateway-overlay.png);
}

.menubtn.button-section {
    position: relative;
    top: 0;
    width: 100%;
    height: 210px;
    margin-bottom: 1rem;
}

.menubtn .button {
    background-color: var(--secondary-color);
}

.menubtn .circle {
    outline: 1px solid var(--secondary-color);
}

.menubtn .text {
    color: var(--secondary-color);
}

.fancybox-toolbar {
    right: 0;
    top: 10%;
}

.fancybox-infobar {
    bottom: 10%;
    top: unset;
}

.fancybox-caption {
    top: 5%;
}

.arrow {
    position: absolute;
    bottom: 200px;
    left: 50%;
    top: 45%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    height: 110px;
    animation: hide 4s linear forwards;
}

.arrow img {
    height: 100%;
    width: auto;
    opacity: 0.8;
    transform: rotate(95deg);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transform-origin: 70% 70%;
    animation: rotate .8s linear 5 alternate forwards;
}
.arrow.color img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(59%) saturate(534%) hue-rotate(1deg) brightness(97%) contrast(95%);
}



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

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

@keyframes hide {

    0%,
    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.menu {
    position: fixed;
    top: 38%;
    transform: translateY(-50%);
    right: 0%;
    display: flex;
    justify-content: center;
    height: 90px;
    width: 90px;
    background-color: #ffffffbf;
    border-radius: 50% 0 0 50%;
    z-index: 9;
    padding-left: 10px;
    box-shadow: 0px 7px 30px 0px #8f8f8f;
}


/*status check*/
#status {
    font-size: 2em;
    margin-bottom: 20px;
}

#authorization {
    font-size: 1.5em;
}

#statusDot {
    position: fixed;
    bottom: 10%;
    left: 2%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: grey;
    z-index: 1;
}


.hidden {
    overflow: hidden;
    display: none;
    visibility: hidden;
}



.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.position-relative {
    position: relative;
}

.text-center {
    text-align: center !important;
}

.p-3 {
    padding: 1rem !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5)
}

*,
::after,
::before {
    box-sizing: border-box;
}

*,
::after,
::before {
    box-sizing: border-box;
}

div {
    display: block;
    unicode-bidi: isolate;
}

/* 
.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
} */

img,
svg {
    vertical-align: middle;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay)* 2);
    animation-delay: calc(var(--animate-delay)* 2);
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


#status {
    position: fixed;
    top: 1%;
    right: 2%;
    background-color: #00000000;
    z-index: 9;
}

#status img {
    height: 35px;
    width: 35px;
    filter: invert(1);
    opacity: .5;
}

#home-section video {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.svg-img svg {
    height: 100%;
    width: 85%;
}

.mfp-close {
    position: fixed !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    right: 0% !important;
    display: flex !important;
    justify-content: center !important;
    height: 80px !important;
    width: 80px !important;
    background-color: #000000bf !important;
    border-radius: 50% 0 0 50% !important;
    z-index: 9 !important;
    padding-left: 8px !important;
    box-shadow: 0px 7px 30px 0px #8f8f8f !important;
    font-size: 60px !important;
    line-height: 80px !important;
    color: #fff !important;
}

/* events seeting */

.setting-list {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}

.setting-list .setting {
    width: 30%;
}

#events-meetings-and-conferences-section .content-section {
    width: 100%;
}

#events-meetings-and-conferences-section .content-section p {
    width: 87%;
    margin: 0 auto 1rem;
}

.icon-sec .img-sec p {
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

/* Seating Arrangements Styles */
.seating-arrangements {
    /* margin: 1rem 0; */
}

.seating-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem;
    min-width: 80px;
}

.seating-type-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seating-type-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.seating-type-item .capacity {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 500;
    margin: 0;
}

#events-meetings-and-conferences-section .content-section {
    width: 100%;
}

.icon-sec .img-sec {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.icon-sec .icon {
    width: 45%;
    height: 45%;
}

.event-container {
    width: 90%;
    margin: auto;
    border-radius: 5px;
    max-width: 400px;
    color: #373737;
}

.event-container:first-child {
    border-top: none;
}

.event-header {
    font-weight: bold;
    margin-bottom: 5px;
}

.separator {
    margin: 20px 0;
    border-bottom: 1px dashed #ddd;
}

.section17 h2 {
    color: #ad8b3a !important;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.5;
    font-family: var(--title-font-trajan)   ;
}

#eventsDisplay section {
    border: 1px solid var(--secondary-color);
    text-align: center;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
    padding: 30px 0;
}

#eventsDisplay {
    margin-top: 50px;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
}

.event-date {
position: absolute;
    top: -25px;
    background-color: #ad8b3a;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    padding: 0px 20px;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5;
    color: #FFF;
}

#events-Display .swiper-wrapper{
    align-items: stretch;
}

#events-Display .swiper-slide{
    height: auto;
}

/* Grid new design css start */

.heading-title{
position: fixed;
    top: 8%;
    font-weight: 600;
    color: #ad8b3a;
    text-transform: uppercase;
    font-size: 2.7rem;
    text-align: center;
    font-family: 'TrajanPro-Bold';
}
.box{
    width: 33.3%;
    text-align: center;
    margin-bottom: 4rem;
}
.box img{
    width: 40%;
    margin: auto;
    filter: brightness(0) saturate(100%) invert(50%) sepia(52%) saturate(482%) hue-rotate(5deg) brightness(97%) contrast(94%);
}
.box p{
    font-size: 1.3rem;
    margin: 12px 0;
    color: #ad8b3a;
    font-weight: 600;
}
.dinner1 {
    margin-top: -18%;
}



/* Grid new design css end here */


#gatewayAurangabadGrid {
    margin-top: 30px;
    height: 100%;
}

.gridBtnClick {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gridBtnClick:hover {
    transform: scale(1.05);
}

.grid-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}

.grid-title {
    font-size: 14px;
    font-weight: 500;
    color: #9b7b2f; /* same gold shade */
    margin: 0;
}
.atrium2{
    position: absolute;
    bottom: 10%;
    width: auto;
    left: 41%;
}
.atrium2 img {
    width: 100%;
}

.box.sliderBtnClick{
    box-shadow: none !important;
}
.events-without-media{
    margin-left: -8px !important;
}
.venue-info-box {
    position: absolute;
    bottom: 8rem;
    width: 100%;
}
.content-section h1 {
    font-family: var(--title-font-trajan);
    text-transform: uppercase;
    font-size: 2.8rem;
}
.venue-detail-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.venue-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.venue-icon {
    width: 35px !important;
    filter: brightness(0) saturate(100%) invert(55%) sepia(65%) saturate(478%) hue-rotate(10deg) brightness(94%) contrast(93%);
}
.venue-text {
    font-size: 22px;
    color: #45443F;
    font-weight: 500;
    margin-bottom: 0;
    line-height: normal;
}
.venue-text p {
    margin-bottom: 0;
}

.cuisine-icon {
    width: 35px !important;
    filter: brightness(0) saturate(100%) invert(55%) sepia(65%) saturate(478%) hue-rotate(10deg) brightness(94%) contrast(93%);
}
.wellness-box{
    bottom: 5rem !important;
}
.banqutes-list.setting-list .setting {
    width: 16% !important;
}
.logo-img img {
    height: auto;
    width: 65%;
}
.location-menu h1{
    color: #ad8b3a;
}
#banquets-menu .content-section{
    width: 100% !important;
}

#banquets-menu .content-section p{
    width: 87% !important;
    margin: 10px auto !important;
}

#no-events img {
    margin-bottom: 30px;
}
#no-events{
    text-align: center;
    margin-top: 40px;
}
#no-events h3{
    font-size: 1.7rem !important;
}

#home-promotions-swiper .swiper{
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
}
.arch-section{
    border-radius: 0 !important;
}
.taj-no-events-logo {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 55%;
}

.banner-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* ensures blur doesn’t overflow */
}

.banner-img .blurred-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(11px); /* actual blur effect */
}



/* Home page events style start from here */

#eventsDisplay-two .swiper {
    width: 100% !important;
    height: 100% !important;
}
#eventsDisplay-two .swiper-slide{
    background: none !important;
}
.promotion-event1{
    margin-top: 35px;
}

.hm-td-vnts{
    background: rgb(255 255 255);
    box-shadow: 7px 7px 2px 3px #ad8b3a;
    border-radius: 8px;
    font-family: 'TrajanPro-Bold';
    font-size: 28px;
    color: #ad8b3a;
    padding: 10px 25px;
    letter-spacing: 1px;
    font-style: normal;
    width: fit-content;
    margin: auto;
    position: relative;
    z-index: 1;
}

#eventsDisplay-two {
    background-color: rgb(0 0 0 / 29%);
    height: 17vh;
    width: 120%;
    margin-left: -50px;
    border: 1px solid #fff;
    border-radius: 15px;
    margin-top: -5%;
}
.event-info-overlay {
    width: 70%;
    text-align: center;
    margin: auto;
    padding-top: 11%;
    height: auto;
}
.event-name-two {
    color: #FFF;
    font-size: 28px;
    font-weight: bold;
}
.event-room-two {
    color: #FFF;
    font-size: 28px;
    font-weight: bold;
}
.spektra-level {
    justify-content: center;
}
/* Home page events style end here */