:root {
    --white: #fff;
    --gray-light: #f4f4f4;
    --gray: #DDD;
    --gray-dark: #676767;
    --black: #000;
    --primary: #1F87BA;
    --secondary: #E93C05;
    --tertiary: #121212;
    --light: #818082;
    --extralight: #DFE4FD;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    cursor: pointer;
}

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

h1, .h1,
h2, .h2,
.fw-bold {
    font-weight: 700 !important;
}

h3, .h3,
h4, .h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5, .h5,
h6, .h6,
.fw-medium {
    font-weight: 500 !important;
}

.fw-regular {
    font-weight: 400 !important;
}

.fw-light {
    font-weight: 300 !important;
}

.rounded-3{
    border-radius:15px !important
}


.bg-gray{
    background-color:#F4F4F4 !important
}


img {
    max-width: 100%;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    width: 3rem;
    height: 3rem;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 400;
}

.btn-primary {
    color: #fff !important;
    background-color:  var(--primary) !important;
    border-color:  var(--primary) !important;
}
.btn-outline-primary {
    color: var(--primary) !important;
    background-color:  #fff !important;
    border-color:  var(--primary) !important;
}
.btn-primary:hover,
.btn-outline-primary:hover {
    color: #fff !important;
    background-color:  #19668c !important;
    border-color:  #19668c !important;
}

.btn-light {
    color: var(--primary) !important;
    background-color: transparent;
    border-color: var(--primary);
}

.btn-disabled {
    color: var(--white) !important;
    background-color: var( --gray-dark);
    border-color: var(--primary);
}
.btn-light:hover {
    color: var(--primary) !important;
    background-color: #e4e8fd;
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/***  Circular hover effect ***/
.circular-aura-effect {
    position: relative;
}
.circular-aura-effect:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 100%;
    opacity: 0;
    z-index: -1;
    transition: all .5s;
}
.circular-aura-effect:hover:before {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: .15;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 400;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.logo-img-main {
    height: 69px;
    width: auto;
}

.navbar .form-control, 
.navbar .btn {
    font-size: 14px;
}

.navbar .nav-floating-menu .form-control, 
.navbar .nav-floating-menu .btn {
    font-size: 18px;
}


@media (max-width: 1199px) {
    .navbar-collapse {
        display: flex;
        flex-direction: row;
        align-items: flex-start !important;
        overflow-y: auto;
        max-height: calc(100vh - 95px);
    }
    .navbar .navbar-nav {
        flex: 1;
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .nav-floating-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 10px 0 0 !important;
        padding: 0 !important;
        width: 60px;
        border-top: 1px solid rgba(0, 0, 0, .07);
    }
    /* .top-nav-btns {
        display: flex;
        gap: 15px;
    } */
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Live Breadcrumb */
.MuiTypography-root.MuiBreadcrumbs-root {
    margin: 1.3rem 0 ;
    height: 59px;
    display: flex;
}
.MuiBreadcrumbs-li .link-decoration {
    color: var(--tertiary) !important;
    font-size: 13px !important;
}
.MuiBreadcrumbs-li .MuiTypography-root {
    display: inline;
    color: #6c757d !important;
    font-size: 13px !important;
}
.MuiBreadcrumbs-separator {
    margin-left: 4px !important;
    margin-right: 4px !important;
}
.MuiBreadcrumbs-separator svg.MuiSvgIcon-root {
    margin-top: 4px !important;
    width: 18px !important;
    height: 18px !important;
}



/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}



#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 6rem;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: #000;
    border: 10px solid #000;
    border-radius: 3rem;
}

#header-carousel .carousel-control-prev-icon:before,
#header-carousel .carousel-control-next-icon:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    background-color: #000;
    border-radius: 4rem;
    opacity: 0;
    z-index: -1;
    transition: all .5s;
}
#header-carousel .carousel-control-prev:hover .carousel-control-prev-icon:before, 
#header-carousel .carousel-control-prev:focus .carousel-control-prev-icon:before, 
#header-carousel .carousel-control-next:hover .carousel-control-next-icon:before, 
#header-carousel .carousel-control-next:focus .carousel-control-next-icon:before {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: .2;
}

@media screen and (min-width: 992px) {
    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 10rem;
    }
}

#header-carousel .carousel-indicators {
    align-items: center;
    gap: 5px;
}
#header-carousel.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #fff;
}
#header-carousel .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 3px;
    border-radius: 10px;
    border: 0 none;
    opacity: 1;
    box-shadow: 0 0 5px #0008;
    transition: .5s all;
}
#header-carousel .carousel-indicators [data-bs-target].active {
    width: 20px;
    height: 20px;
}

/* @media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} */

/* .page-header {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: url(../img/banner-inner-pages.jpg) top left no-repeat;
    background-size: cover;
}
.ph-mask-blue {
    position: relative;
    z-index: 1;
}
.ph-mask-blue:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: .8;
    z-index: -1;
} */


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Carousel Search Start ***/
.carousel-search-bar {
    max-width: 70%;
    margin: auto;
    transform: translateY(-50%);
    margin-top: -10px;
    z-index: 1;
}



/*** Section Heading ***/
.section-heading .head-sub {
    font-size: 15px;
    color: #12121266;
}
.section-heading h2 {
    font-size: 35.2px;
    color:  var(--tertiary) !important;
}
.section-heading .btn-light {
    font-size: 14px;
    white-space: nowrap;
}

.section-heading .heading-btns {
    display: flex;
}
.section-heading .owl-nav {
    display: flex !important;
}
.section-heading .owl-nav.disabled {
    display: none !important;
}
.section-heading .owl-prev,
.section-heading .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12121266;
    background: #fff;
    border: 0 none;
    border-radius: 45px;
    font-size: 18px;
    transition: .5s;
    cursor: pointer;
    user-select: none;
}
.section-heading .owl-prev.circular-aura-effect:before,
.section-heading .owl-next.circular-aura-effect:before {
    background-color: #999;
}
.section-heading .owl-prev.disabled.circular-aura-effect:before,
.section-heading .owl-next.disabled.circular-aura-effect:before {
    background-color: transparent;
}
.section-heading .owl-prev:hover,
.section-heading .owl-next:hover {
    color: var(--tertiary);
}
.section-heading .owl-prev.disabled,
.section-heading .owl-next.disabled {
    color: #12121222;
    cursor: default;
}




/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}
.project-item .project-img > img {
    height: 432px;
}
.categories-carousel .project-item .project-img > img {
    height: 100%;
}

.project-card-data {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 15px 15px;
    color: #fff;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%);
    border-radius: 15px;
    transition: .5s;
}
.pcd-event-name {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}
.pcd-event-like a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 26px;
    color: #bbb;
    background: #fff;
    border-radius: 50px;
    z-index: 0;
}
.pcd-event-like a small {
    height: 30px;
}
.pcd-event-like a.selected {
    color: #DE4590;
}
.pcd-event-code {
    font-size: 18px;
}
.pcd-event-title {
    font-size: 20px;
}
.pcd-event-info {
    font-size: 18px;
}
.pcd-event-time {
    font-size: 14px;
}
img.icon-peoples {
    width: auto !important;
    height: 30px;
}

a.btn.event-buyticket {
    font-size: 14px;
    line-height: 24px;
}
a.btn.event-buyticket span {
    display: inline-block;
    margin-left: 6px;
    width: 27px;
    height: 27px;
    line-height: 37px;
    background: #fff2;
    border-radius: 20px;
    vertical-align: middle;
}
a.btn.event-buyticket span img {
    width: 80%;
    height: auto;
}


.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}



/*** Event Category ***/
.owl-carousel.categories-carousel .owl-stage-outer {
    overflow: visible;
}
.cat-thumb-copy {
    opacity: 0;
}
.cat-thumb-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.event-category-data {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 40px;
    color: #000;
    background: #00000066;
    border-radius: 6px;
    transition: all .5s;
    cursor: pointer;
}
.event-category-data:hover {
    color: #fff;
    background: #00000066;
}
.event-category-data.ecd-blue {
    background: rgb(192, 238, 251);
}
.event-category-data.ecd-blue:hover {
    background: #62acf566;
}
.event-category-data.ecd-orange {
    background: #fbd6c0ff;
}
.event-category-data.ecd-orange:hover {
    background: #f5976266;
}
.event-category-data.ecd-green {
    background: #a9efd5ff;
}
.event-category-data.ecd-green:hover {
    background: #29D69766;
}
.event-category-data.ecd-yellow {
    background: #ffe999ff;
}
.event-category-data.ecd-yellow:hover {
    background: #FFC70066;
}
.owl-carousel .owl-item .ecd-icon img {
    width: auto;
}

.event-category-data .ecd-title {
    font-size: 30px;
}
.event-category-data:hover .ecd-title {
    font-weight: 700 !important;
}

.event-category-data .ecd-count {
    font-size: 20px;
}
.event-category-data:hover .ecd-count {
    font-weight: 500 !important;
}



/*** Coming Soon Events ***/
.coming-soon-events {
    position: relative;
    margin-bottom: 2rem;
}
.coming-soon-events:before,
.coming-soon-events:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.coming-soon-events:before {
    background-size: cover;
    filter: blur(4px);
}
.coming-soon-events:after {
    background: #0006;
}

.coming-soon-events .project-card-data {
    box-shadow: 0 2px 2px #fff3;
}

.coming-soon-events .section-heading .head-sub {
    color: #fff;
}

.coming-soon-events .section-heading h2 {
    color: var(--white) !important;
}

.coming-soon-events .btn-light {
    color: var(--white) !important;
    border-color: var(--white);
}
.coming-soon-events .btn-light:hover {
    color: var(--primary) !important;
    border-color: var(--primary);
}

.coming-soon-events .pcd-event-like a {
    width: 45px;
    height: 45px;
    font-size: 25px;
}
.coming-soon-events .pcd-event-like a small {
    height: 29px;
}
.coming-soon-events .pcd-event-detail {
    padding: 6px 10px;
    color: #000;
    background: #fff;
    border-radius: 6px;
}
.coming-soon-events .pcd-ed-footer {
    color: #9E9FA1;
}






/*** Footer ***/
.footer {
    font-size: 14px;
    background: var(--tertiary);
}

.logo-img-footer {
    height: 57px;
    width: auto;
}

/* @media screen and (min-width: 1200px) { */
    .footer h4, .footer .h4 {
        font-size: 1.2rem;
        text-transform: capitalize;
    }
/* } */

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    font-size: 14px;
    text-align: left;
    color: #fff;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    box-shadow: none;
}

.logo-social-ftr {
    width: 100%;
    height: auto;
    border-radius: 40px;
    transition: all .2s;
}

.footer .btn-square:hover .logo-social-ftr {
    box-shadow: 0 0 6px #fff6;
}

.logo-download-app {
    width: 100%;
    height: auto;
}

.footer .form-control, .footer .btn {
    font-size: 12px;
}

.copyright {
    color: var(--white);
    background: var(--tertiary);
    border-top: 1px solid #ffffff80;
}

.copyright a {
    color: var(--white);
}

.copyright a:hover {
    color: var(--primary);
}




/***  Floating Container Containers  ***/
.gridlove-lock, .gridlove-lock .gridlove-header-sticky {
    padding-right: 17px;
}
.gridlove-lock .fixed-top > .navbar {
    margin-right: 17px;
}
.gridlove-lock {
    overflow: hidden!important;
}

/* ['My Favourites' Sliding Container] */
.gridlove-sidebar-action-overlay {
    cursor: pointer;
    width: 100%;
    height: 100%;
    height: calc(100% + 60px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background: #fff;
    background: rgba(0,0,0,.5);
    content: '';
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
}
.gridlove-sidebar-action-open .gridlove-sidebar-action-overlay {
    opacity: 1;
    visibility: visible;
}

.gridlove-sidebar-action-wrapper {
    width: 98%;
    max-width: 460px;
    height: 100%;
    position: fixed;
    padding: 70px 26px 30px;
    top: 0;
    right: 0;
    background: #f3f3f3;
    display: block;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    -webkit-transform: translate3D(460px, 0, 0);
    transform: translate3D(460px, 0, 0);
    -webkit-transition: visibility 1ms linear .2s, -webkit-transform .2s ease;
    transition: visibility 1ms linear .2s, -webkit-transform .2s ease;
    transition: transform .2s ease, visibility 1ms linear .2s;
    transition: transform .2s ease, visibility 1ms linear .2s, -webkit-transform .2s ease;
}

.gridlove-sidebar-action-open .gridlove-sidebar-action-wrapper {
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0)
}

.gridlove-action-close {
    position: absolute;
    top: 20px;
    right: 26px;
    height: 26px;
    width: 26px;
    display: flex;
    color: var(--black);
    font-size: 10em;
    cursor: pointer;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.gridlove-action-close:hover {
    color: #1f87ba;
    transform: rotate(90deg);
}
.gridlove-action-close > svg {
    width: 100%;
    height: 100%;
}

.glsa-section-favorites,
.glsa-section-menu {
    display: none;
}
.glsa-section-favorites.glsa-section-show,
.glsa-section-menu.glsa-section-show {
    display: block;
}


.gridlove-sidebar-action-inside input[type="search"] {
    border: 1px solid #12121280;
    border-radius: 6px 0 0 6px;
}
.gridlove-sidebar-action-inside .form-control::placeholder {
    font-size: 12px;
    color: #12121266;
}
.gridlove-sidebar-action-inside .search-btn {
    width: 65px;
    border-radius: 0 6px 6px 0;
}

.gridlove-sidebar-action-inside h3 {
    position: relative;
}
.gridlove-sidebar-action-inside h3:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background-color: var(--primary);
}

.popup-event-boxes-list{

}
.popup-event-boxes, 
.popup-event-boxes .event-img {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border-radius: 6px;
}
.popup-event-boxes .event-img > img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.popup-event-boxes .project-card-data {
    padding: 15px;
    border-radius: 6px;
}
.popup-event-boxes .pcd-event-name {
    font-size: 12px;
}
.popup-event-boxes .pcd-event-like a {
    width: 30px;
    height: 30px;
    font-size: 18px;
    border-radius: 30px;
}
.popup-event-boxes .pcd-event-like a small {
    height: 20px;
}
.popup-event-boxes .pcd-event-code {
    font-size: 12px;
}
.popup-event-boxes .pcd-event-title {
    font-size: 14px;
}
.popup-event-boxes .pcd-event-time {
    font-size: 12px;
}
.popup-event-boxes img.icon-peoples {
    height: 26px;
}
.popup-event-boxes a.btn.event-buyticket {
    font-size: 11.31px;
    line-height: 15.3px;
}

.glsa-section-menu h2 {
    font-size: 35px;
}
.glsa-section-menu .btn {
    font-size: 14px;
}
.glsa-section-menu .gridlove-box {
    margin: 0 -26px;
}
.glsa-section-menu .tr-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.glsa-section-menu .tr-menu-list .tr-menu-item a {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 10px 26px;
    color: var(--black);
    align-items: center;
    transition: all .5s;
    cursor: pointer;
}
.glsa-section-menu .tr-menu-list .tr-menu-item a:hover {
    color: var(--white);
    font-weight: 600;
    background: var(--primary);
}
.glsa-section-menu .tr-menu-list .tr-menu-item a .trmi-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}
.glsa-section-menu .tr-menu-list .tr-menu-item a:hover .trmi-icon img {
    transition: all .2s;
}
.glsa-section-menu .tr-menu-list .tr-menu-item a:hover .trmi-icon img {
    filter: brightness(0) invert(1);
}



/***  Event Detail Page  ***/
.banner-narrow .banner-narrow-inner {
    position: relative;
    min-height: 406px;
}
.banner-narrow .banner-narrow-inner .banner-narrow-bgimg {
    height: 100%;
}
.banner-narrow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bed-event-type {
    font-size: 12.8px;
    background: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 1;
}
.bed-event-like a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 24px;
    color: #bbb;
    background: #fff;
    border-radius: 50px;
    z-index: 0;
}
.bed-event-like a small {
    height: 28px;
}
.bed-event-like a.invert {
    font-size: 30px;
    color: #fff;
    background: transparent;
}
.bed-event-like a.invert small {
    height: auto;
}
.bed-event-like a.selected {
    color: #DE4590;
}
.bed-event-title {
    font-size: 35px;
    line-height: 1.2;
}

.banner-info-bar {
    margin-top: -5rem !important;
}
.bib-icon {
    font-size: 40px;
    color: #16163133;
}
.bib-heading {
    font-size: 28px;
    color: var(--tertiary);
}
.bib-content {
    font-size: 18px;
    color: #737373;
}
.bib-links {
    margin: 10px 0;
    font-size: 16px;
}
.bib-links .bib-links-a {
    color: var(--primary);
}
.bib-button .btn {
    font-size: 14px;
}
.btn.btn-arrow > small {
    background-color: #fff3;
    border-radius: 100%;
}


.about-event-section h2 {
    font-size: 32px;
}
.about-event-section p {
    font-size: 17px;
    font-weight: 300 !important;
}
.view-offer-block {
    border: 2px solid var(--gray);
}
.vob-text {
    font-size: 16px;
    color: var(--tertiary);
}
.vob-text small {
    font-size: large;
}

.action-strip.as-gray {
    background-color: var(--gray-light);
}
.asc-content {
    color: var(--tertiary);
}
.asc-like small {
    font-size: 26px;
    font-weight: 300;
}
.asc-text {
    font-size: 16px;
}

.artist-detail-block h2 {
    color: var(--tertiary);
    font-size: 32px;;
}
.adb-bio-image {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 90px;
    overflow: hidden;
}
.adb-bio-data h4 {
    color: var(--gray-dark);
    font-size: 18px;
}
.adb-bio-data p {
    color: var(--gray-dark);
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
}

.adb-review-box {
    flex: 1;
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 32px;
    border: 1px solid var(--gray);
}
.customer-data {
    border-top: 2px solid var(--gray);
}
.customer-data .cd-name {
    font-size: 12px;
    color: var(--tertiary);
}
.customer-data .cd-rate {
    font-size: 16px;
    color: var(--primary);
    border: 1px solid var(--gray);
    border-radius: 100px;
}
.add-rating-review {
    border: 2px dashed var(--gray);
}
.add-rating-review .arr-text {
    font-size: 18px;
    color: var(--tertiary);
}
.add-rating-review .btn {
    padding: 11px 25px;
}

.terms-block .dropdown {
    border: 2px solid var(--gray);
}
.terms-block .btn {
    font-size: 32px;
    color: var(--tertiary);
    line-height: 22.1px;
}
.terms-block .dropdown-toggle::after {
    color: var(--gray-dark);
}
.terms-block .dropdown-menu {
    width: 100%;
    top: -2px !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.loc-sec-heading h2 {
    color: var(--tertiary);
    font-size: 32px;
}
.loc-sec-heading h2 .lsh-add {
    color: #737373;
    font-size: 17px;
}
.loc-sec-heading h2 .lsh-add i {
    font-size: 20px;
}




/***  Features Page  ***/
.page-header {
    padding-top: 7.5rem;
    padding-bottom: 5.5rem;
    background: url(../img/banner-inner-pages.jpg) top left no-repeat;
    background-size: cover;
}
.ph-mask-blue {
    position: relative;
    z-index: 1;
}
.ph-mask-blue:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: .8;
    z-index: -1;
}
.page-header h1 {
    color: #fff;
    font-size: 40px;
    line-height: 38.4px;
    text-align: center;
}
.section-heading-text {
    color: #676767;
    font-size: 22px;
    line-height: 1.4;
}
.text-dark-italic {
    color: #121212;
    font-size: 28px;
    line-height: 43.3px;
    font-weight: 600;
    font-style: italic;
}

.section-listing {
    margin: 0;
    padding: 0;
    list-style: none;
}
.section-listing li {
    padding-left: 30px;
    margin-bottom: 15px;
    color: #676767;
    font-size: 22px;
    background: url('../img/tick-blue.svg') 0 10px no-repeat;
}

.section-table {
    width: 100%;
    color: #676767;
    font-size: 22px;
    line-height: 1.6;
}
.section-table td {
    padding: 5px 0;
}
.section-table td.tbl-label {
    color: #121212;
    font-weight: 500;
}


.section-flip-horizontal {
    flex-direction: row-reverse;
}

.icon-text-listing {
    row-gap: 60px;
    column-gap: 60px;
}
.icon-text-listing.iti-col-three  {
    row-gap: 30px;
    column-gap: 30px;
}
.itl-item {
    width: calc(50% - 30px);
}
.iti-col-three .itl-item {
    width: calc(33.33% - 20px);
}
.itli-image {
    width: 82px;
    height: 72px;
    background: #1F87BA;
    border-radius: 6px;
}
.itli-image img {
    max-width: 90%;
}
.itli-text {
    width: calc(100% - 82px);
}
.itli-text h3 {
    color: #121212;
    font-size: 18.98px;
    line-height: 28.8px;
}
.itli-text p {
    color: #161C2D;
    font-size: 15.32px;
    line-height: 26.1px;
}
.itli-text .displayFlexNew {
    padding-top: 0;
    padding-bottom: 20px;
}
.itli-text .newCheckIcon {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #161C2D !important;
    text-align: left;
}



.logo-thumb-grid {
    gap: 4%;
    row-gap: 1.5em;
}
.ltg-item {
    width: 22%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 8px #0003;
}
.ltg-item img {
    width: 100%;
}



.download-app-section {
    background: #1F87BA url('../img/energetic-dance-floor-with-people.jpg') no-repeat;
    background-position: 100% 0;
    background-size: 50% 100%;
}
.download-app-section .section-heading .head-sub,
.download-app-section .section-heading h2,
.download-app-section .section-heading-text {
    color: #fff !important;
}




/***  Contact Us Page  ***/
.address-block {

}
.address-block h3 {
    color: #121212;
    font-size: 22px;
    line-height: 43.3px;
}
.address-block .ab-location h4 {
    padding-left: 50px;
    color: #121212;
    font-size: 22px;
    line-height: 43.3px;
    background: url(../img/location-icon.svg) no-repeat 6px center;
}
.address-block .ab-location .abl-line {
    padding-left: 50px;
    color: #676767;
    font-size: 18.3px;
    line-height: 43.3px;
    background-repeat: no-repeat;
    background-position: 25px center;
}
.address-block .ab-location .abl-line.icon-address {
    background-image: url(../img/location-address-icon.svg);
}
.address-block .ab-location .abl-line.icon-phone {
    background-image: url(../img/location-phone-icon.svg);
}

.address-block .ab-location .abl-email {
    padding-left: 50px;
    color: #676767;
    font-size: 18.3px;
    line-height: 43.3px;
    background: url(../img/email-icon.svg) no-repeat 6px center;
}
.address-block .ab-location .abl-email a {
    color: #121212;
}


.bg-mask {
    overflow: hidden;
}
.contact-form-block {
    position: relative;
    padding: 1.6em 2.6em 2.6em 2.6em;
    background: #fff;
    border-radius: 10.39px;
    box-shadow: 0 0 4px #1f87ba0a;
}
.contact-form-block:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: 147%;
    height: 248px;
    transform: translateX(-50%);
    background: url('../img/form-shadow.png') center no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}
.contact-form-block h2 {
    color: #121212;
    font-size: 22px;
    line=height: 43.3px;
}
.contact-form-block label {
    margin-bottom: 6px;
    color: #242331;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}
.contact-form-block .form-control {
    padding: 0.5rem .75rem;
    color: #808080;
    font-size: 10.39px;
    line-height: 2.3;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
}
.contact-form-block textarea.form-control {
    height: 155px;
}


.quick-info-listing {
    row-gap: 40px;
    column-gap: 40px;
}
.qil-item {
    width: calc(50% - 20px);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 8px #0003;
}
.qil-item .qili-image {
    width: 82px;
    height: 72px;
    background: #1F87BA;
    border-radius: 6px;
}
.qil-item .qili-image img {
    max-width: 90%;
}
.qil-item h3 {
    color: #121212;
    font-size: 22px;
    line-height: 28.8px;
}
.qil-item p {
    color: #161c2db3;
    font-size: 18.3px;
    line-height: 26.1px;
}









/***  Responsive Classes  ***/
@media screen and (min-width: 992px) {
    #header-carousel .carousel-indicators {
        display: none;
    }
    
    .banner-info-bar {
        /* margin-top: calc(-80vw / 10) !important; */
        margin-top: -6rem !important;
    }
}

@media screen and (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1380px;
    }
    
    .project-item .project-img > img {
        height: 528px;
    }
}


@media screen and (max-width: 1200px) {
    .event-category-data {
        padding: 15px 20px;
    }
    .event-category-data .ecd-title {
        font-size: 20px;
    }
    .event-category-data .ecd-count {
        font-size: 14px;
    }

    .project-card-data {
        padding: 15px 10px 10px;
        border-radius: 12px;
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 65%, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%);
    }
    .pcd-event-name {
        font-size: 15px;
    }
    .pcd-event-like a {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
    .pcd-event-like a small {
        height: 22px;
    }
    .pcd-event-code {
        font-size: 12px;
    }
    .pcd-event-title {
        font-size: 16px;
        line-height: 1.2;
    }
    .pcd-event-time {
        font-size: 12px;
    }
    img.icon-peoples {
        height: 20px;
    }
    a.btn.event-buyticket {
        font-size: 12px;
        line-height: 1.2;
    }

    .coming-soon-events .pcd-event-like a {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .coming-soon-events .pcd-event-like a small {
        height: 20px;
    }
    .coming-soon-events .pcd-event-detail {
        padding: 6px;
    }
    .pcd-event-info {
        font-size: 12px;
    }

    .bed-event-title {
        font-size: 30px;
    }
    .bed-event-like a {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .bed-event-like a small {
        height: 22px;
    }
    .bed-event-like a.invert {
        font-size: 32px;
    }

    .footer .form-control {
        padding: 15px 10px !important;
    }
    .footer button.btn.btn-primary.position-absolute {
        padding: 9px 10px !important;
        margin: 5px !important;
    }

/* }
@media screen and (max-width: 1200px) { */
    .bib-icon {
        font-size: 36px;
    }
    .bib-heading {
        font-size: 24px;
    }
    .bib-content {
        font-size: 16px;
    }
    .bib-links {
        font-size: 14px;
    }

    .banner-narrow .banner-narrow-inner {
        min-height:350px;
    }
}

@media screen and (max-width: 1199px) {
    .project-item .project-img > img {
        height: 352px;
    }
}

@media screen and (max-width: 1099px) {
    .project-item .project-img > img {
        height: 560px;
    }
}

@media screen and (max-width: 991px) {
    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        display: none;
    }
    .carousel-search-bar {
        max-width: 90%;
    }
    .section-heading .head-sub {
        font-size: 12px;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .section-heading-text {
        font-size: 17px;
        line-height: 1.5;
    }
    .section-heading .owl-nav {
        display: none !important;
    }
    .section-heading .btn-light {
        font-size: 12px;
    }
    .section-table {
        font-size: 18px;
        line-height: 1.4;
    }

    .icon-text-listing {
        row-gap: 40px;
    }


    .page-header {
        padding-top: 5.5rem;
        padding-bottom: 4.5rem;
    }
    .page-header h1 {
        font-size: 34px;
        line-height: 32px;
    }


    .bib-heading {
        font-size: 20px;
    }
    .bib-content {
        font-size: 14px;
    }
    .bib-links {
        font-size: 12px;
    }

    .banner-narrow .banner-narrow-inner {
        min-height:300px;
    }

    .bed-event-title {
        font-size: 25px;
    }
    .bed-event-like a {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .bed-event-like a small {
        height: 20px;
    }
    .bed-event-like a.invert {
        font-size: 26px;
    }
    .about-event-section h2 {
        font-size: 26px;
    }
    .about-event-section p {
        font-size: 15px;
    }
    .artist-detail-block h2 {
        font-size: 26px;
    }
    .adb-bio-data p {
        font-size: 15px;
        line-height: 22px;
    }
    .adb-review-box {
        font-size: 16px;
        line-height: 28px;
    }
    .add-rating-review .arr-text {
        font-size: 17px;
    }
    .terms-block .btn {
        font-size: 24px;
        line-height: 22px;
    }
    .loc-sec-heading h2 {
        font-size: 26px;
    }
    .loc-sec-heading h2 .lsh-add {
        font-size: 15px;
    }
    .loc-sec-heading h2 .lsh-add i {
        font-size: 16px;
    }

    .iti-col-three .itl-item {
        width: calc(50% - 15px);
    }


    /* .itli-image {
        align-self: center;
    }
    .itli-text {
        width: 100%;
        text-align: center;
    } */


    .ltg-item {
        width: 47%;
    }

    .section-listing li {
        padding-left: 25px;
        margin-bottom: 10px;
        font-size: 19px;
    }
    .text-dark-italic {
        font-size: 22px;
        line-height: 34.3px;
    }


    .quick-info-listing {
        row-gap: 30px;
        column-gap: 30px;
    }
    .qil-item {
        width: 100%;
    }

    
    .project-item .project-img > img {
        height: 432px;
    }


    .address-block h3 {
        font-size: 20px;
        line-height: 36px;
    }
    .address-block .ab-location h4 {
        padding-left: 44px;
        font-size: 20px;
        line-height: 38px;
    }
    .address-block .ab-location .abl-line {
        padding-left: 45px;
        font-size: 16px;
        line-height: 33.3px;
        background-position: 20px center;
    }
    .address-block .ab-location .abl-email {
        padding-left: 45px;
        font-size: 16px;
        line-height: 33.3px;
    }
    .qil-item {
        padding: 20px;
    }
    .qil-item h3 {
        font-size: 20px;
        line-height: 24.8px;
    }
    .qil-item p {
        font-size: 16.3px;
        line-height: 24px;
    }

}

@media screen and (max-width: 768px) {
    .carousel-search-bar .MuiInputBase-root {
        padding: 6px !important;
        padding-right: 30px !important;
    }
    .carousel-search-bar .MuiOutlinedInput-root {
        padding: 4px 30px 4px 4px !important;
    }
    .carousel-search-bar .css-1qqsdnr-MuiAutocomplete-root .MuiOutlinedInput-root {
        padding-right: 80px !important;
    }
    .carousel-search-bar .searchIcon.searchButton {
        width: 74px;
        padding: 12px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gridlove-sidebar-action-wrapper {
        max-width: 340px;
        padding: 60px 16px 30px;
        -webkit-transform: translate3D(340px, 0, 0);
        transform: translate3D(340px, 0, 0);
    }
    .gridlove-action-close {
        top: 17px;
        right: 20px;
        height: 25px;
        width: 25px;
    }
    .glsa-section-menu h2 {
        font-size: 25px;
    }
    .gridlove-sidebar-action-inside h3 {
        font-size: 1.4rem;
    }
    .glsa-section-menu .tr-menu-list .tr-menu-item a {
        gap: 6px;
        padding: 8px 20px;
    }


    .page-header {
        padding-top: 3.6rem;
        padding-bottom: 3rem;
    }
    .page-header h1 {
        font-size: 30px;
        line-height: 28px;
    }
    .section-heading .head-sub {
        font-size: 10px;
    }
    .section-heading h2 {
        font-size: 23px;
    }
    .section-heading-text {
        font-size: 14px;
    }

    .itli-text h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .itli-text p {
        font-size: 14px;
        line-height: 22px;
    }

    .section-heading .owl-prev,
    .section-heading .owl-next {
        margin: 0 10px;
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
    
    .footer {
        text-align: center;
    }
    .footer .btn.btn-link {
        text-align: center;
    }
    .footer .social-icons {
        justify-content: center;
    }


    .banner-narrow .banner-narrow-inner img.banner-narrow-bgimg {
        min-height: 200px;
    }


    .icon-text-listing {
        row-gap: 30px;
        column-gap: 0;
    }
    .itl-item,
    .iti-col-three .itl-item {
        width: 100%;
    }


    .download-app-section {
        background-position: 0 100%;
        background-size: 100% 50%;
    }
    .banner-info-bar .css-ecspzn-MuiTypography-root,
    .banner-info-bar .css-ahj2mt-MuiTypography-root,
    .banner-info-bar .bib-button {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section-listing li {
        padding-left: 22px;
        margin-bottom: 6px;
        font-size: 16px;
        background-position: 0 6px;
    }
    .text-dark-italic {
        font-size: 18px;
        line-height: 24px;
    }

}

@media screen and (max-width: 767px) {
    .carousel-search-bar .TFormControl {
        margin: 0 !important;
    }
    .project-item, .project-item .project-img {
        /* height: 400px; */
    }
    .project-item .project-img {
        width: 300px;
        margin: auto;
    }
    .project-item .project-img > img {
        height: 400px;
    }
}

@media screen and (max-width: 600px) {
    .page-header {
        padding-top: 2.8rem;
        padding-bottom: 2rem;
    }
    .page-header h1 {
        font-size: 26px;
        line-height: 22px;
    }
    .section-table > tr {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    /* .carousel-search-bar {
        max-width: 98%;
    } */
    .carousel-search-bar .TFormControl {
        flex-wrap: wrap;
        gap: 8px;
    }
    .carousel-search-bar .cityDropDownHeader {
        width: 60.20px;
        flex: auto;
    }
    .carousel-search-bar .dropDownCountry {
        flex: auto;
        width: calc(100% - 96px);
        border-radius: 6px;
    }
    .carousel-search-bar .searchBox {
        border-radius: 6px !important;
    }
    .carousel-search-bar .css-1qqsdnr-MuiAutocomplete-root .MuiOutlinedInput-root {
        padding-right: 100px !important;
    }
    .carousel-search-bar .searchIcon.searchButton {
        width: 90px;
    }
    
    .project-carousel .project-item.pe-3 {
        padding-right: 0 !important;
    }

}

@media screen and (max-width: 350px) {
    .project-item .project-img {
        width: 100%;
    }
    .project-item .project-img > img {
        width: 100%;
        height: auto;
    }
}

.owl-carousel {
    z-index: 0!important;
}

.boxImage{
    box-shadow: 
    0 5px 10px 0px rgba(0,0,0,0.22), 
    0 10px 13px 0px rgba(0,0,0,0.34), 
    inset 0 18px 18px 0 rgba(255,255,255,0.35), 
    inset 0 -18px 18px 0 rgba(0,0,0,0.10);
}

img, svg {
    vertical-align: baseline;
}