:root{
    --black-color:#000000;
    --gray-color:#1d1d1d;
    --white-color:#fff;
}

html{
    scroll-behavior: smooth;
}

html,body{
    background:var(--white-color);
    font-size: 14px;
    color: var(--black-color);
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
}

h1{
    font-size: 3.5rem;
}

h2{
    font-size:3rem;
}

h3{
    font-size:2.5rem;
}

h4{
    font-size:2rem;
}

h5{
    font-size: 1.5rem;
}

h6{
    font-size: 1rem;
}

p{
    font-size:2.3rem;
    line-height: 2.5rem;
}

.subtitle, .description{
    font-size:2.3rem;
    line-height: 2.5rem;
}

.font-bold{
    font-weight: bold;
}

.font-thin{
    font-weight: 300;
}

.has-margin{
    padding-left:3rem;
    padding-right: 3rem;
}

.eventDesc, .eventDesc span, .eventDesc p, .eventDesc i, .eventDesc a, .eventDesc *{
    font-family: "Manrope", sans-serif!important;
    font-style: normal!important;
    font-size: 2.3rem!important;
    line-height: 2.5rem!important;
}

.note-float-left{
    margin-right:20px!important;
}

.note-float-right{
    margin-left:20pximportant;
}
/*************/
/* preloader */
/*************/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: transparent;
}

.preloader .preloader-before,
.preloader .preloader-after {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--white-color);
}

.preloader .preloader-before {
    top: 0;
}

.preloader .preloader-after {
    bottom: 0;
}

.preloader .preloader-block {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
}

.preloader .preloader-block .title {
    position: absolute;
    left: 0;
    bottom: calc(50% + 16px);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--gray-color);
}

.preloader .preloader-block .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    font-weight: 700;
    letter-spacing: 8px;
    font-size: 24vw;
    color: rgba(54, 54, 53, 0.3);
    z-index: 1;
}

.preloader .preloader-block .loading {
    position: absolute;
    top: calc(50% + 16px);
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--black-color);
    -webkit-animation: blink-animation 2.2s linear infinite;
    animation: blink-animation 2.2s linear infinite;
}

.preloader .preloader-bar {
    position: absolute;
    z-index: 2;
    top: calc(50% - 1px);
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-color);
}

.preloader .preloader-bar .preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.7);
}

@-webkit-keyframes blink-animation {
    0% {
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    75%{
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes blink-animation {
    0% {
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    75%{
        opacity: 1;
    }
    100% {
        opacity: 01;
    }
}

@keyframes blink-animation {
    0% {
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    75%{
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
    -webkit-animation-duration: 1s; /* Animation duration */
    animation-duration: 1s;         /* Animation duration */
    -webkit-animation-fill-mode: forwards; /* Ensure the element stays in its final state */
    animation-fill-mode: forwards;         /* Ensure the element stays in its final state */
}

.slideOutDown {
    -webkit-animation-name: slideOutDown!important;
    animation-name: slideOutDown!important;
    -webkit-animation-duration: 1s; /* Animation duration */
    animation-duration: 1s;         /* Animation duration */
    -webkit-animation-fill-mode: forwards; /* Ensure the element stays in its final state */
    animation-fill-mode: forwards;         /* Ensure the element stays in its final state */
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.5s; /* Animation duration */
    animation-duration: 0.5s;         /* Animation duration */
    -webkit-animation-fill-mode: forwards; /* Ensure the element stays in its final state */
    animation-fill-mode: forwards;         /* Ensure the element stays in its final state */
}

/*************************/
/* full screen container */
/*************************/
.full-screen{
    width:100%;
    height: 100vh;
    margin: 0;
    padding:0;
    background-color: #fff;
}

.mainBkg{
    width:100%;
    height:100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    margin: 0;
}

.overlay{
    width:100%;
    height:100%;
    padding:0;
    margin:0;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top:0;
    left:0;
}

/*****************/
/* carousel text */
/*****************/
.carousel {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top:0;
    left:0;
    padding: 30px;

}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 3rem;
    padding-bottom: 1.25rem;
    color: var(--white-color);
    text-align: center;
    transition: transform 0.7s ease-in-out; 
}

.carousel-item h1{
    font-size:10vh;
    line-height: 10vh;
    text-align: left;
    width:80%;
    white-space: wrap;
    margin-left:3rem;
}

/************/
/* language */
/************/
.language{
    position: absolute;
    top:30px;
    right:30px;
    z-index: 200;
}

.language a{
    color:#fff;
    padding:10px 15px 15px 15px;
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .6em;
}

.langLink a{
    background:#000;
    color:#fff;
    padding:10px 15px 15px 15px;
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .6em;
}

/*************/
/* main logo */
/*************/
.main-logo{
    position:absolute!important; 
    bottom:100px; 
    left:60px;
    filter: invert(100%) brightness(100%) contrast(100%);
    cursor: pointer;
    z-index: 4;
}

.top-ticket{
    position:absolute!important; 
    bottom:100px; 
    right:60px;
    z-index: 4;
}

.main-logo img{
    transition: transform 0.3s ease-in-out;
}

.main-logo:hover img{
    transform: scale(1.1);
}

/**********/
/* navbar */
/**********/
#bottom-navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height:80px;
    background-color: var(--white-color);
    transform: translateY(0);  /* Start at the bottom */
    transition: transform 0.4s ease-in-out;  /* Transition on the transform property */
}

.navbar-slide-up {
    transform: translateY(calc(-100vh + 80px))!important;  /* Move the navbar out of view (up) */
}

.navbar-brand{
    margin-left: 3rem;
    margin-right: 3rem;
}

.menu-desktop{
    position: relative;
    z-index: 999;
    float: right;
    right: 3rem;
    display:flex;
}

.menu-desktop a{
    margin-left:20px;
    font-size: 1.2rem;
    text-decoration: none;
    color:var(--black-color);
}

.menu-desktop a:after {
    content: "";
    position: relative;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--black-color);
    transition: 0.3s;
    display: flex;
}

.menu-desktop a:hover:after {
    width: 100%;
}

.menu-icon {
    display: none;
    position: relative;
    z-index: 999;
    float: right;
    top: 5px;
    cursor: pointer;
    right: 3rem;
}

.menu-icon .icon-m {
    position: relative;
    width: 22px;
    display: inline-block;
    height: 18px;
}

.menu-icon__line {
    height: 2px;
    width: 22px;
    display: block;
    background-color: var(--black-color);
    margin-bottom: 4px;
    -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease, background-color 0.5s ease;
    transition: transform 0.2s ease, background-color 0.5s ease;
    transition: transform 0.2s ease, background-color 0.5s ease, -webkit-transform 0.2s ease;
}

.menu-icon:hover .menu-icon__line-left {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
}

.menu-icon:hover .menu-icon__line-right {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.menu-icon__line-left {
    width: 22px;
    -webkit-transition: -webkit-transform 0.5s ease-in-out !important;
    transition: -webkit-transform 0.5s ease-in-out !important;
    -o-transition: transform 0.5s ease-in-out !important;
    transition: transform 0.5s ease-in-out !important;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out !important;
}

.menu-icon__line-right {
    width: 22px;
    position: absolute;
}


/*************/
/* main menu */
/*************/
.overlay-menu {
    position: fixed;
    width: 0;
    top: 0;
    background-color: var(--white-color);
    opacity: 1;
    overflow-x: hidden;
    height: 100%;
    transition: 0.5s;
    z-index: 9999;
}

.overlay-content {
    text-align: center;
    position: relative;
    width: 100%;
    padding-top: 50px;
    margin-top: 30px;
}

.overlay-content a {
    font-size: 2rem;
    color: var(--black-color);
    display: block;
    padding: 10px;
    margin-bottom: 4px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.overlay-content a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--black-color);
    transition: 0.3s;
    display: block;
}

.overlay-content a:hover {
    color: #ff9f1a;
}

.overlay-content a:hover:after {
    width: 15%;
}

.close {
    display: inline-block;
    padding: 30px 0 0 30px;
    cursor: pointer;
    font-size: 2rem;
    color: var(--black-color);
    text-decoration: none;
    transition: 0.5s;
    position: absolute;
    right: 3rem;
    z-index: 10000;
}

/*************/
/* accordion */
/*************/
.accordion{
    border:none!important;
}


.accordion-item:first-of-type {
    border-radius: 0;
    border-top:1px solid #000;
    border-bottom: 1px solid #000;
    border-left:none;
    border-right:none;
}

.accordion-item:not(:first-of-type) {
    border-radius: 0;
    border-top:none;
    border-bottom: 1px solid #000;
    border-left:none;
    border-right:none;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius:0!important;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: none;
    outline:none;
}

h2.accordion-header button{
    font-size:3rem;
    padding-left:0;
    padding-right:0;
}

.accordion-button::after {
    content: '-';
    font-size: 4rem;
    font-weight: 200;
    display: inline-block;
    margin-left: auto;
    background-image: none;
    position: relative;
    top: 25px;
    right: 5px;
    transition: none;
}

.accordion-button.collapsed::after {
    content: '+';
    font-size: 3rem;
    font-weight:400;
    display: inline-block;
    margin-left: auto;
    background-image: none;
    position: relative;
    top: -20px;
    right: 10px;
    transition: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-body{
    padding-left:0;
    padding-right:0;
}

/********/
/* grid */
/********/
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.card {
    background-color: #fff;
    /* padding: 16px; */
    border: 0px solid #ddd;
    border-radius: 8px;
    margin-bottom:16px;
}
.double-card {
    grid-column: span 2;
}

.cardImgParent{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.cardImg{
    background-size:cover; 
    width:100%; 
    height:0;
    padding-bottom:100%; 
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.card:hover .cardImg{
    transform: scale(1.1);
}

.cardImg.cc{
    background-position: center center;
}

.cardImg.tl{
    background-position: top left;
}

.cardImg.tr{
    background-position: top right;
}

.cardImg.bl{
    background-position: bottom left;
}

.cardImg.br{
    background-position: bottom right;
}

.double-card .cardImg{
    width:100%; 
    height:0;
    padding-bottom:calc(50% - 8px);
}

.card-body{
    padding: 15px 0;
}

h6.card-title{
    font-size: 1.3rem;
    font-weight:500;
}

p.card-text{
    font-weight:500!important;
}

.tag-inline{
    padding:3px;
    display: flex;
    justify-content: space-between;
    gap:50px;
}

.tag-inline .tag{
    background-color:#000;
    color:#FFF;
    padding:5px;
    height: fit-content;
}

/*****************/
/* Spaces slider */
/*****************/
.carousel-gallery {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    margin-top: 20px;
    margin-bottom: 30px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-container2 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow:hidden;
}

.swiper-slide .image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0px;
}

.swiper-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 0px;
}

.swiper-slide:hover .overlay {
    opacity: 1;
}

.swiper-container2 .swiper-button-next, .swiper-container2 .swiper-button-prev{
    top:30%!important;
}

.swiper-button-next{   
    filter: brightness(0) invert(1);
} 

.swiper-button-prev{
    filter: brightness(0) invert(1);
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 0 !important;
}

/**********/
/* spaces */
/**********/
.spaces-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.space-card {
    background-color: #fff;
    /* padding: 16px; */
    border: 0px solid #ddd;
    border-radius: 8px;
    margin-bottom:1px;
}

.space-image{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.space-image .image{
    background-size:cover; 
    width:100%;
    height:0;
    padding-bottom: 75%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    position:relative
}

.space-image:hover .image{
    transform: scale(1.1);
}

.space-image .image .overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height:100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.aboutbios_img{
    width:100%;
    height: 0;
    padding-bottom: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.readmore{
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 6px 12px;
    text-decoration: none;
    display: block;
    width:fit-content;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight:bold;
}

/************/
/* Projects */
/************/
.spaces-grid .card-body p{
    font-size:1.3rem!important;
}

.spaces-grid .card{
    background:#e1e1e1;
}

/**********/
/* footer */
/**********/
.footer{
    background:#d9d9d9;
    padding-top:15px;
    padding-bottom: 15px;
}

.logo{
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-content: flex-end;
    align-items: flex-end;
}

.footer a{
    color:inherit;
    text-decoration: none;
}

/****************/
/* Editor Style */
/****************/
.quote{
    display:block;
    font-size:1.5rem;
    font-weight:700;
    line-height:1.8rem;
    border-top:1px solid #000;
    border-bottom: 1px solid #000;
    padding:10px 0;

}

.body {
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 300;
}

.lead{
    font-size:1.5rem;
    line-height: 1.7rem;
}

.notes{
    font-size:0.875rem;
    font-weight:300;
    line-height: 1rem;
}

/* Pagination */
.pagination{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pagination-link{
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
}

.pagination-link.active{
    background-color: #000;
    color: #fff;
}

.titleFilter{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.get-ticket {
    font-size: 10px;
    color: #fff;
    padding: 5px 35px;
    background: #ff6600;
    /*text-transform: uppercase;*/
    font-family: 'Open Sans', sans-serif;
    font-size:1rem!important;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    text-decoration:none!important;
}

.get-ticket:hover{
	color:#ff6600;
	background:#fff;
	border:1px solid #ff6600;
}



/****************/
/* mobile style */
/****************/
@media only screen and (max-width: 768px) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .double-card {
        grid-column: span 1;
    }

    .double-card .cardImg {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .text-end {
        text-align: left !important;
    }

    .logo{
        display:none;
    }

    .menu-icon {
        display: block;
    }

    .menu-desktop{
        display:none;
    }
    
    .spaces-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    
    .carousel-item h1 {
        font-size: 6vh;
        line-height: 6vh;
        text-align: left;
        width: 80%;
        white-space: wrap;
        margin-left: 3rem;
    }

    .titleFilter{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center; 
        margin-bottom: 30px;
    }

    .titleFilter h2{
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: left;
    }
}