/* Reset ================================================================================= */

* {
    margin: 0;
    padding: 0
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    overflow-x: hidden;
    background-color: #ffffff
}

a {
    text-decoration: none;
    background-color: transparent;
    color: inherit;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border: none;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

:focus {
    outline: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


.none {
    display: none !important;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: normal;
}

h1 {
    font-size: 38px;
    font-weight: normal;
}

h2 {
    font-size: 30px;
    font-weight: normal;
}

h3 {
    font-size: 22px;
    font-weight: normal;
}

h4 {
    font-size: 24px;
    font-weight: normal;
}

h5 {
    font-size: 22px;
    font-weight: normal;
}

h6 {
    font-size: 20px;
    font-weight: normal;
}

/* Forms */
form {
    display: inline;
}

fieldset {
    border: 0;
}

legend {
    display: none;
}

/* Table */
table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 100%;
}

caption, th, td {
    vertical-align: top;
    text-align: left;
    font-weight: normal;
}

/* Lists */
ul, ol {
    list-style: none;
    margin: 0;
}

/* Common Title */
.page-title h1 {
    font-weight: 400;
    font-size: 38px;
    line-height: 38px;
}

.page-subtitle h3 {
    font-size: 22px;
    font-weight: 500;
}

.page-content {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.text-white {
    color: #ffffff;
}


/* Global Styles ========================================================================= */

/* header */
.header {
    padding: 53px 0;
}

    .header .navbar-brand > img {
        max-width: 220px;
    }

    .header .navbar-brand {
        height: auto;
        display: inline-block;
        padding: 0 15px 0;
    }

.navbar-collapse {
    float: right;
}

.header .navbar {
    border: 0;
    min-height: auto;
    margin-bottom: 0;
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: -5px 3px 8px rgba(0, 0, 0,0.6);
    -webkit-box-shadow: -5px 3px 8px rgba(0, 0, 0,0.6);
}

.header .nav-item .user-drop-down {
    width: 130px;
}

.header .navbar-nav {
    padding: 11px 0;
}

    .header .navbar-nav li {
        position: relative;
    }

        .header .navbar-nav li:last-child {
            margin-right: 0;
        }

        .header .navbar-nav li a {
            font-size: 17px;
            font-weight: 400;
            color: #000000;
            line-height: 22px;
            position: relative;
        }

    .header .navbar-nav > li.button > a {
        background-color: #C71A2E;
        color: #ffffff;
        border-radius: 6px;
        -webkit-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
        -moz-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
        box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    }

    .header .navbar-nav > li > a:hover, .header .navbar-nav > li > a:focus, .header .navbar-nav > li.active > a {
        color: #C71A2E;
        background-color: transparent;
    }

    .header .navbar-nav > li.button > a:hover, .header .navbar-nav > li.button > a:focus, .header .navbar-nav > li.button > a:active {
        background-color: #000000;
        color: #C71A2E;
    }

.body-content {
    background-color: #ffffff;
}

.lang {
    float: right;
    position: relative;
    margin: 24px 0 24px 24px;
}
    .lang > .lang-dropdown,
    .lang > #lang-dropdown {
        font-size: 18px;
        color: #c71a2e
    }
    .lang > .lang-dropdown span,
        .lang > #lang-dropdown span {
            font-size: 24px;
            vertical-align: top;
            margin-right: 3px;
        }

    .lang .drop-down {
        background-color: #ffffff;
        border-radius: 4px;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
        cursor: default;
        /* left: 50%; */
        position: absolute;
        top: 40px;
        display: none;
        /* transform: translateX(-50%); */
        /* -webkit-transform: translateX(-50%); */
        right: 0;
        z-index: 2;
    }

        .lang .drop-down ul li a {
            padding: 0 16px;
            border-bottom: 1px solid #e7e7e7;
            display: block;
            font-size: 16px;
            line-height: 40px;
        }

        .lang .drop-down ul li:first-child a, .nav-item .user-drop-down ul li:first-child a {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .lang .drop-down ul li:last-child a, .nav-item .user-drop-down ul li:last-child a {
            border-bottom: 0;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .lang .drop-down ul li a:hover {
            background-color: #ededed;
            color: #c71a2e
        }

        .lang .drop-down ul li.active a {
            background-color: #c71a2e;
            color: #ffffff;
        }

.nav-item .user-drop-down {
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
    cursor: default;
    left: 50%;
    position: absolute;
    top: 53px;
    display: none;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 100%;
}

    .nav-item .user-drop-down ul li a {
        padding: 0 16px;
        border-bottom: 1px solid #e7e7e7;
        display: block;
        font-size: 16px;
        line-height: 40px;
    }

        .nav-item .user-drop-down ul li a:hover {
            background-color: #ededed;
            color: #c71a2e
        }

    .nav-item .user-drop-down ul li.active a {
        background-color: #c71a2e;
        color: #ffffff;
    }

/* Home Slider */

.bs-slider {
    overflow: hidden;
    max-height: 100%;
    position: relative;
    z-index: 1;
}

    .bs-slider:hover {
        cursor: -moz-grab;
        cursor: -webkit-grab;
    }

    .bs-slider:active {
        cursor: -moz-grabbing;
        cursor: -webkit-grabbing;
    }

    .bs-slider .bs-slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background-color: rgba(0, 0, 0, 0.3);*/
    }

    .bs-slider > .carousel-inner > .item > img,
    .bs-slider > .carousel-inner > .item > a > img {
        margin: auto;
        width: 100% !important;
    }

/********************
*****Slide effect
**********************/

.fade {
    opacity: 1;
}

    .fade .item {
        top: 0;
        z-index: 1;
        opacity: 0;
        width: 100%;
        position: absolute;
        left: 0 !important;
        display: block !important;
        -webkit-transition: opacity ease-in-out 1s;
        -moz-transition: opacity ease-in-out 1s;
        -ms-transition: opacity ease-in-out 1s;
        -o-transition: opacity ease-in-out 1s;
        transition: opacity ease-in-out 1s;
        height: 100%;
    }

        .fade .item:first-child {
            top: auto;
            position: relative;
        }

        .fade .item.active {
            opacity: 1;
            z-index: 2;
            -webkit-transition: opacity ease-in-out 1s;
            -moz-transition: opacity ease-in-out 1s;
            -ms-transition: opacity ease-in-out 1s;
            -o-transition: opacity ease-in-out 1s;
            transition: opacity ease-in-out 1s;
        }






/*---------- LEFT/RIGHT ROUND CONTROL ----------*/
.control-round .carousel-control {
    top: 50%;
    opacity: 1;
    width: 32px;
    height: 32px;
    z-index: 100;
    color: #ffffff;
    display: block;
    font-size: 20px;
    overflow: hidden;
    line-height: 32px;
    border-radius: 30px;
    text-shadow: none;
    position: absolute;
    font-weight: normal;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-color: #c71a2e;
    font-family: fontawesome;
    background-image: none;
}

    .control-round .carousel-control.left::after {
        content: "\f104";
        left: 0;
    }

    .control-round .carousel-control.right::after {
        content: "\f105";
        right: 0;
    }

    .control-round .carousel-control.left {
        left: 1%;
    }

    .control-round .carousel-control.right {
        right: 1%;
    }

        .control-round .carousel-control.left:hover,
        .control-round .carousel-control.right:hover {
            background-color: #ffffff;
            color: #c71a2e;
        }






/*---------- INDICATORS CONTROL ----------*/
.indicators-line > .carousel-indicators {
    right: 0%;
    bottom: 3%;
    left: 50%;
    width: 100%;
    height: 20px;
    font-size: 0;
    text-align: center;
    padding-top: 1px;
    white-space: nowrap;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0;
}

    .indicators-line > .carousel-indicators li {
        padding: 0;
        width: 15px;
        height: 15px;
        border: 1px solid transparent;
        text-indent: 0;
        overflow: hidden;
        text-align: left;
        position: relative;
        letter-spacing: 1px;
        background: rgb(158, 158, 158);
        -webkit-font-smoothing: antialiased;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin-right: 5px;
        -webkit-transition: all 0.5s cubic-bezier(0.22,0.81,0.01,0.99);
        transition: all 0.5s cubic-bezier(0.22,0.81,0.01,0.99);
        z-index: 10;
        cursor: pointer;
    }

        .indicators-line > .carousel-indicators li:last-child {
            margin-right: 0;
        }

    .indicators-line > .carousel-indicators .active {
        margin: 1px 5px 1px 1px;
        box-shadow: 0 0 0 2px #fff;
        background-color: transparent;
        position: relative;
        -webkit-transition: box-shadow 0.3s ease;
        -moz-transition: box-shadow 0.3s ease;
        -o-transition: box-shadow 0.3s ease;
        transition: box-shadow 0.3s ease;
        -webkit-transition: background-color 0.3s ease;
        -moz-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
    }

        .indicators-line > .carousel-indicators .active:before {
            transform: scale(0.5);
            background-color: #fff;
            content: "";
            position: absolute;
            left: -1px;
            top: -1px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            -webkit-transition: background-color 0.3s ease;
            -moz-transition: background-color 0.3s ease;
            -o-transition: background-color 0.3s ease;
            transition: background-color 0.3s ease;
        }



/*---------- SLIDE CAPTION ----------*/
.slide_style_left {
    text-align: left !important;
}

.slide_style_right {
    text-align: right !important;
}

.slide_style_center {
    text-align: center !important;
}

.slide-text {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
    margin: auto;
    padding: 10px;
    position: absolute;
    text-align: left;
    padding: 10px 85px;
}

    .slide-text > h1 {
        padding: 0;
        color: #ffffff;
        font-size: 58px;
        font-style: normal;
        line-height: 58px;
        margin-bottom: 20px;
        letter-spacing: 1px;
        display: inline-block;
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        font-weight: 500;
        text-transform: uppercase;
        font-weight: 400;
    }

.home-slider .slide-text > h2 {
    font-size: 50px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.slide-text > h3 {
    padding: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 24px;
    font-weight: 300;
    margin: 20px 0;
    letter-spacing: 1px;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.slide-text > p {
    padding: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.slide-text > a.btn-default {
    background-color: #C71A2E;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    padding: 14px 25px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    -webkit-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
}

.slide-text > a:hover,
.slide-text > a:active {
    color: #333333;
    background: #ffffff;
    -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.home-slider .slide-text > a.btn-default:hover {
    color: #c71a2e;
    background-color: #ffffff;
}

.home-slider .slide-text > h3 img {
    width: 27px;
    margin-left: 12px;
}

.carousel-content-inner {
    background-color: #ffffff;
    padding: 15px 30px;
    border-radius: 80px;
}

.carousel-content {
    bottom: 30px;
    position: absolute;
    width: 100%;
    z-index: 5;
}

.carousel-content-inner .date-content span {
    font-size: 16px;
    margin-right: 3px;
    vertical-align: middle;
}

.carousel-content-inner li h6 {
    color: #212224;
}

    .carousel-content-inner li h6 b {
        font-weight: 700;
    }

.carousel-content-inner li.btn-list .video-btn {
    background-color: #c71a2e;
    border-radius: 30px;
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    width: 44px;
    vertical-align: middle;
    margin-right: 5px;
}

.carousel-content-inner li.btn-list {
    text-align: right;
}

    .carousel-content-inner li.btn-list .video-btn:hover,
    .carousel-content-inner li.btn-list .book-btn:hover {
        background-color: #000000;
        color: #c71a2e;
    }

    .carousel-content-inner li.btn-list .book-btn {
        background-color: #c71a2e;
        border-radius: 4px;
        color: #ffffff;
        display: inline-block;
        font-size: 16px;
        height: 44px;
        line-height: 44px;
        padding: 0 20px;
        text-align: center;
        vertical-align: middle;
    }



/* footer  */
.footer {
    background-color: #212224;
    padding: 50px 0 0 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0px;
    right: 0px;
    margin-top: auto;
}

    .footer .ftr-logo {
        text-align: center;
        margin-bottom: 34px;
        width: 100%;
        display: inline-block;
    }

        .footer .ftr-logo img {
            max-width: 220px;
            text-align: center;
            display: inline-block;
        }

.social-widgets {
    text-align: center;
    margin-bottom: 34px;
    width: 100%;
    display: inline-block;
}

    .social-widgets .social-list li {
        display: inline-block;
    }

        .social-widgets .social-list li a {
            background-color: #c71a2e;
            border-radius: 30px;
            color: #ffffff;
            display: inline-block;
            font-size: 20px;
            font-weight: 500;
            height: 48px;
            line-height: 48px;
            margin: 0 5px;
            width: 48px;
        }

            .social-widgets .social-list li a:hover {
                color: #c71a2e;
                background-color: #ffffff;
            }

.footer-menu {
    text-align: center;
    width: 100%;
    display: inline-block;
}

    .footer-menu .list-item li {
        display: inline-block;
        padding: 0 12px;
    }

        .footer-menu .list-item li a {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
        }

        .footer-menu .list-item li.active a {
            color: #c71a2e;
        }

        .footer-menu .list-item li a:hover {
            color: #c71a2e;
        }

.bottom_foot {
    background-color: #010101;
    text-align: center;
    margin-top: 40px;
    padding: 15px;
}

    .bottom_foot p {
        margin: 0;
        color: #ffffff;
    }

        .bottom_foot p a {
            color: #c71a2e;
        }

            .bottom_foot p a:hover {
                text-decoration: underline;
            }

/* Show Block */

.main-content {
    width: 100%;
    display: inline-block;
}

    .main-content .head-title h1 {
        font-size: 30px;
        line-height: 30px;
        font-weight: 500;
        color: #323232;
        margin-top: 30px;
        margin-bottom: 30px;
    }

.show-block {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

    .show-block .img-box {
        width: 100%;
        display: inline-block;
    }

.content-img {
    position: relative
}

.content-img-overlay {
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    transition: all 0.1s ease-in-out 0s;
}

.img-box:hover .content-img .content-img-overlay {
    opacity: 1;
}

.img-box:hover .content-details {
    opacity: 1;
    top: 50%;
}

.content-details {
    left: 50%;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    padding: 0 1em;
}

    .content-details h2 {
        font-size: 26px;
        line-height: 28px;
        text-transform: uppercase;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 10px;
        width: 100%;
        display: inline-block;
    }

    .content-details .ticket-btn {
        font-size: 20px;
        line-height: 20px;
        font-weight: 500;
        text-transform: uppercase;
        width: 100%;
        display: inline-block;
    }

        .content-details .ticket-btn a {
            padding: 10px 22px;
            display: inline-block;
            background-color: #C71A2E;
            color: #ffffff;
            border-radius: 6px;
            -webkit-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
            -moz-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
            box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
        }

            .content-details .ticket-btn a:hover {
                background-color: #ffffff;
                color: #C71A2E;
            }

.show-block .sub-info {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

    .show-block .sub-info img {
        width: 44px;
        float: left;
        margin-right: 24px;
    }

    .show-block .sub-info span {
        float: left;
        font-size: 24px;
        line-height: 34px;
        color: #323232;
        font-weight: 500;
    }

/* about */
/* .banner-breadcrumb::before{background-color:rgba(0, 0, 0, 0.7); content:""; height:100%; left:0; position:absolute; top:0; width:100%;} */
.banner-breadcrumb {
    padding: 180px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.about-bg {
    background-image: url("../images/about_bg.jpg");
}

.inner-content {
    position: relative;
    z-index: 2;
}

.banner-breadcrumb .page-title h1 {
    color: #ffffff;
    margin-bottom: 20px;
}

.banner-breadcrumb .page-content {
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
}

.about-content {
    padding-top: 30px;
}

    .about-content .page-content {
        padding: 20px 0;
    }

.light_bg {
    background-color: #F7F7F7;
}

.events-content .left-content {
    padding: 73px 90px;
}

.page-subtitle span {
    color: #C71A2E;
}

.events-content .left-content .group-content {
    margin-bottom: 30px;
}

    .events-content .left-content .group-content .page-subtitle {
        margin-bottom: 10px;
    }

.features-block {
    margin: 80px 0;
}

.features-box ul li {
    height: 200px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    width: 33.33%;
    float: left;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}

    .features-box ul li:hover {
        box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
        border-color: transparent;
        background-color: #C71A2E;
    }

    .features-box ul li .icon-group {
        font-size: 40px;
        height: 80px;
        width: 80px;
        margin: 0 auto;
        border: 2px solid #C71A2E;
        border-radius: 50%;
        color: #C71A2E;
        padding: 9px 0;
        margin-bottom: 10px;
    }

    .features-box ul li h4 {
        font-size: 18px;
    }

    .features-box ul li .box-content {
        display: block;
        width: 100%;
    }

    .features-box ul li:hover .icon-group {
        border-color: #ffffff;
        color: #ffffff;
    }

    .features-box ul li:hover h4 {
        color: #ffffff;
    }

/* termsandconditions */
.company-content-inner p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666666
}

.company-content-inner h3 {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333333
}

.company-content-inner p u {
    font-size: 22px;
    font-weight: 500;
    color: #333333
}

.company-content-inner p a {
    color: #C71A2E;
    text-decoration: underline;
}

.company-content-inner ul {
    list-style: outside;
    margin-top: 10px;
    padding-left: 40px;
}

/* contact us */
.contact-content {
    background-color: #F7F7F7;
}

    .contact-content h3 {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #dddddd;
        margin-top: 30px;
    }

.contact-form .form-group {
    margin-bottom: 20px;
}

    .contact-form .form-group label {
        font-weight: 500;
        font-size: 16px;
    }

    .contact-form .form-group .form-control {
        border: 2px solid #dddddd;
        box-shadow: none;
        font-size: 18px;
        height: 46px;
        color: #222222;
    }

    .contact-form .form-group textarea.form-control {
        height: 150px;
        resize: none;
    }

.contact-form .btn_group .submit {
    padding: 10px 22px;
    display: inline-block;
    background-color: #C71A2E;
    color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

    .contact-form .btn_group .submit:hover {
        background-color: #000000;
        color: #C71A2E;
    }

.contact-info ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
}

    .contact-info ul li label {
        font-weight: 500;
        font-size: 16px;
        margin: 0;
    }

    .contact-info ul li a {
        float: right;
        color: #c71a2e;
        font-size: 16px;
    }

    .contact-info ul li p {
        font-size: 16px;
        margin: 0;
    }

#googleMap {
    width: 100%;
    height: 280px;
}

.contact-form {
    margin-bottom: 30px;
}

/* Faq */
.faq-list .panel-heading {
    padding: 0;
    background-color: #ffffff;
}

    .faq-list .panel-heading h4 a {
        padding: 10px 15px;
        display: block;
        width: 100%;
        color: #323232;
        font-size: 20px;
        font-weight: 500;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        position: relative;
        background-color: rgba(254, 150, 162, 0.1);
        line-height: 20px;
    }

        .faq-list .panel-heading h4 a::before {
            position: absolute;
            right: 15px;
            font-family: fontawesome;
            content: "\f107";
            font-size: 26px;
        }

        .faq-list .panel-heading h4 a[aria-expanded="true"] {
            background-color: #c71a2e;
            color: #ffffff;
        }

            .faq-list .panel-heading h4 a[aria-expanded="true"]::before {
                content: "\f106"
            }

        .faq-list .panel-heading h4 a:hover {
            background-color: #c71a2e;
            color: #ffffff;
        }

.faq-list .paragraph_blog {
    font-size: 16px;
}

.faq-list .panel-group .panel {
    margin-bottom: 15px;
}

    .faq-list .panel-group .panel + .panel {
        margin-top: 0;
    }

.faq-list .paragraph_blog ol {
    list-style: outside none decimal;
    margin-left: 20px;
}

    .faq-list .paragraph_blog ol li {
        margin-bottom: 8px;
    }


/* mybooking */
.mybooking-section {
    background-color: #F1F1F1;
    padding-bottom: 50px;
}

.booking-list .booking-list-item {
    background-color: #ffffff;
    padding: 20px;
}

    .booking-list .booking-list-item + .booking-list-item {
        margin-top: 10px;
    }

.booking-list-item .booking-img img {
    width: 100%;
}

.booking-list .booking-list-item .booking-btn a {
    background-color: #c71a2e;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 4px;
    padding: 6px 15px;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
    -webkit-box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
}

    .booking-list .booking-list-item .booking-btn a:hover {
        background-color: #000000;
        color: #c71a2e;
        box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
    }

.booking-content ul li {
    padding-top: 10px;
}

    .booking-content ul li .label-content > span {
        color: #535353;
        font-size: 16px;
        padding-left: 3px;
        vertical-align: middle;
    }

.booking-content h2 {
    font-weight: 700;
    color: #000000;
    font-size: 22px;
    padding-bottom: 5px;
}

.booking-content h6 {
    font-size: 16px;
    padding-top: 15px;
}

    .booking-content h6 span {
        font-weight: 500;
        text-transform: uppercase;
    }

    .booking-content h6 .text-red {
        color: #BE1E2D;
    }

    .booking-content h6 .text-green {
        color: #04C431;
    }

/* event show */
.event-show-section {
    background-color: #F1F1F1;
    padding-bottom: 50px;
}

.event-list {
    background-color: #ffffff;
    padding: 20px;
}

.event-banner {
    position: relative;
}

    .event-banner .video-icon {
        position: absolute;
        bottom: -20px;
        left: 20px;
        z-index: 5;
    }

        .event-banner .video-icon a {
            height: 38px;
            width: 38px;
            background-color: #c71a2e;
            color: #ffffff;
            display: block;
            font-size: 18px;
            line-height: 34px;
            text-align: center;
            border-radius: 30px;
            border: 2px solid #c71a2e;
        }

            .event-banner .video-icon a:hover {
                background-color: #ffffff;
                color: #c71a2e;
            }

.event-list .event-content {
    padding: 30px 0;
}

    .event-list .event-content .label-content span {
        padding-left: 8px;
        color: #a4a4a4;
        vertical-align: middle;
    }

        .event-list .event-content .label-content span b {
            color: #000000;
            font-weight: 500;
        }

.event-box-list {
    border: 1px solid #F1F1F1;
    padding: 30px 20px;
    position: relative;
}

.event-details h2 {
    font-weight: 700;
    color: #000000;
    font-size: 22px;
}

.event-details .label-content span {
    padding-left: 8px;
    vertical-align: middle;
    font-size: 16px;
}

.event-details ul li {
    padding-top: 10px;
}

.events-img {
    bottom: -12px;
    left: -6px;
    position: absolute;
    z-index: 5;
}

.event-box-list .event-btn a {
    background-color: #c71a2e;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 4px;
    padding: 6px 15px;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
    -webkit-box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
}

    .event-box-list .event-btn a:hover {
        background-color: #000000;
        color: #c71a2e;
        box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
    }

.event-box-list .event-btn {
    text-align: center;
}

.event-box .event-box-list + .event-box-list {
    margin-top: 30px;
}

.voucher-box {
    border: 1px solid #F1F1F1;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

    .voucher-box label {
        display: block;
        text-align: right;
        color: #212224;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 17px;
    }

    .voucher-box .form-control {
        box-shadow: none;
        background-color: #F1F1F1;
        border: 1px solid #F1F1F1;
        height: 48px;
        color: #333333;
        text-align: right;
        font-size: 16px;
    }

        .voucher-box .form-control:focus {
            background-color: #ffffff;
            border-color: #666666;
        }

.cart-content .event-details-content {
    margin-top: 30px;
    padding-bottom: 10px;
}

    .cart-content .event-details-content h3 {
        color: #000000;
        font-size: 20px;
        font-weight: 700;
    }

.event-location {
    margin-top: 30px;
    text-align: right;
}

    .event-location h6 {
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .event-location ul li {
        display: inline-block;
        margin-left: 10px;
    }

.cart-content-table {
    margin-top: 30px;
}

    .cart-content-table h6 {
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .cart-content-table .seats-list li:first-child {
        border-top: 1px solid #ECECEC;
    }

    .cart-content-table .seats-list li {
        border-right: 1px solid #ECECEC;
        border-bottom: 1px solid #ECECEC;
        border-left: 1px solid #ECECEC;
        padding: 15px;
    }

        .cart-content-table .seats-list li label {
            float: left;
            color: #c71a2e;
            font-weight: 400;
            margin: 0;
            font-size: 17px;
            text-transform: uppercase;
        }

        .cart-content-table .seats-list li span {
            font-size: 17px;
            color: #212224;
            font-weight: 500;
            text-transform: uppercase;
            float: right;
        }

    .cart-content-table .total-price {
        font-size: 18px;
        color: #000000;
        text-align: right;
        padding: 20px 0;
    }

        .cart-content-table .total-price span {
            font-weight: 500;
        }

.payment-methods h4 {
    font-size: 17px;
    color: #000000;
    text-align: right;
    padding-bottom: 5px;
}

.payment-methods .payment-cards {
    text-align: right;
    margin-top: 5px;
}

    .payment-methods .payment-cards li {
        display: inline-block;
        margin-left: 15px;
    }

        .payment-methods .payment-cards li label {
            position: relative;
            cursor: pointer;
            padding-left: 30px;
        }

            .payment-methods .payment-cards li label span {
                position: absolute;
                border: 1px solid #000000;
                height: 24px;
                width: 24px;
                left: 0;
                top: 7px;
                border-radius: 30px;
                transition: all .3s ease-in;
                -webkit-transition: all .3s ease-in;
            }

                .payment-methods .payment-cards li label span::before {
                    content: "";
                    background-color: #000000;
                    height: 12px;
                    width: 12px;
                    display: block;
                    border-radius: 30px;
                    top: 5px;
                    left: 5px;
                    position: absolute;
                    transform: scale(3) rotateZ(-20deg);
                    -webkit-transform: scale(3) rotateZ(-20deg);
                    opacity: 0;
                    transition: all .3s ease-in;
                    -webkit-transition: all .3s ease-in;
                }

            .payment-methods .payment-cards li label input[type="radio"]:checked + span::before {
                transform: scale(1) rotateZ(0deg);
                -webkit-transform: scale(1) rotateZ(0deg);
                opacity: 1;
            }

            .payment-methods .payment-cards li label input[type="radio"] {
                left: 0;
                opacity: 0;
                position: absolute;
            }

.paynow-btn {
    text-align: right;
    padding-top: 20px;
}

    .paynow-btn button {
        background-color: #c71a2e;
        text-transform: uppercase;
        color: #ffffff;
        border-radius: 4px;
        padding: 15px 30px;
        font-weight: 500;
        display: inline-block;
        box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
        -webkit-box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
    }

        .paynow-btn button:hover {
            background-color: #000000;
            box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
            -webkit-box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
        }

/* Transction Details */
.transction-details-section {
    background-color: #F1F1F1;
    padding-bottom: 50px;
}

.transction-list {
    background-color: #ffffff;
    padding: 20px;
}

.transction-title {
    text-align: center;
    padding-bottom: 30px;
}

    .transction-title img {
        margin: 0 auto;
    }

    .transction-title h4 {
        color: #000000;
        font-weight: 700;
        padding: 8px 0;
        text-transform: uppercase;
        font-size: 20px;
    }

    .transction-title p {
        margin: 0;
        font-size: 18px;
        color: #7D7D7D;
    }

.transction-list .transction-item li {
    padding-bottom: 15px;
}

    .transction-list .transction-item li label {
        margin: 0;
        float: left;
        color: #212224;
        font-size: 16px;
        font-weight: 400;
    }

    .transction-list .transction-item li span {
        float: right;
        color: #212224;
        font-size: 13px;
        font-weight: 700;
    }

    .transction-list .transction-item li.code-label label {
        padding: 10px 0;
    }

    .transction-list .transction-item li.code-label span {
        background-color: rgba(4, 196, 49, 0.2);
        border-radius: 4px;
        color: #04C431;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        padding: 10px 15px;
    }

    .transction-list .transction-item li.code-label-red span {
        background-color: rgba(244, 67, 54, 0.3);
        border-radius: 4px;
        color: #F44336;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        padding: 10px 15px;
    }

.transction-btn {
    padding-top: 10px;
}

    .transction-btn a {
        background-color: #04C431;
        text-transform: uppercase;
        color: #ffffff;
        border-radius: 4px;
        font-weight: 500;
        padding: 15px 30px;
        display: block;
        text-align: center;
        box-shadow: 0 6px 14px 0 rgba(4, 196, 49, 0.3);
    }

        .transction-btn a:hover {
            background-color: #000000;
            box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
            -webkit-box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
        }

/* vouchers */
.vouchers-list .vouchers-box {
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.vouchers-box .vouchers-img {
    position: relative;
}

    .vouchers-box .vouchers-img img {
        margin: 0 auto;
    }

    .vouchers-box .vouchers-img .vouchers-code {
        position: absolute;
        font-size: 24px;
        color: #ffffff;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        z-index: 5;
        top: 40%;
        width: 100%;
    }

.vouchers-box .vouchers-title {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
}

.vouchers-list-label li {
    padding-bottom: 10px;
}

    .vouchers-list-label li label {
        margin: 0;
        float: left;
        color: #767677;
        font-size: 12px;
        font-weight: 400;
    }

    .vouchers-list-label li span {
        float: right;
        color: #212224;
        font-size: 12px;
        font-weight: 700;
    }

        .vouchers-list-label li span.text-green {
            color: #04C431;
        }

.vouchers-box .vouchers-date {
    color: #767677;
    font-size: 16px;
    font-weight: 400;
}

    .vouchers-box .vouchers-date span {
        display: block;
        color: #212224;
        font-weight: 500;
    }

/* current-list */
.current-list .current-list-item {
    background-color: #ffffff;
    padding: 20px;
}

    .current-list .current-list-item + .current-list-item {
        margin-top: 20px;
    }

.current-event-content h2 {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 5px;
}

.current-event-content {
    position: relative;
}

    .current-event-content ul li.label-content {
        padding-top: 15px;
    }

        .current-event-content ul li.label-content > span {
            color: #535353;
            font-size: 16px;
            padding-left: 3px;
            vertical-align: middle;
        }

    .current-event-content .book-now a {
        background-color: #c71a2e;
        text-transform: uppercase;
        color: #ffffff;
        border-radius: 4px;
        padding: 6px 15px;
        font-weight: 500;
        display: inline-block;
        box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
        -webkit-box-shadow: 0 6px 14px 0 rgba(199, 26, 46, 0.3);
    }

        .current-event-content .book-now a:hover {
            background-color: #000000;
            color: #c71a2e;
            box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
            -webkit-box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.3);
        }

.current-event-btn {
    margin-top: 20px;
}

.current-event-btn {
    display: inline-block;
    width: 100%;
}

.current-event-content .more-info a {
    background-color: #ffffff;
    text-transform: uppercase;
    color: #002BFF;
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

    .current-event-content .more-info a::after {
        content: "\f107";
        font-family: "fontawesome";
        font-size: 24px;
        line-height: 16px;
        margin-left: 5px;
        position: absolute;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .current-event-content .more-info a[aria-expanded="true"]::after {
        content: "\f106";
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

.current-list-item .more-info-content {
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
}

.more-info-content .info-content-list li + li {
    padding-top: 20px;
}

.info-content-list li .info-label h6 {
    font-size: 16px;
    color: #212224;
    font-weight: 700;
}

.info-content-list li .info-img-content span {
    font-size: 16px;
    color: #535353;
    vertical-align: middle;
    padding-left: 5px;
}

.info-content-list li .info-img-content + .info-img-content {
    padding-top: 8px;
}

.info-content-list li .info-img-content > a span {
    color: #212224;
    text-decoration: underline;
}

.info-content-list li .info-content p {
    font-size: 16px;
    color: #212224;
    margin: 0;
    line-height: 24px;
}

    .info-content-list li .info-content p strong, .info-content-list li .info-content p b {
        font-weight: 500;
    }

.info-content-list li .info-content .table {
    margin: 0;
}

    .info-content-list li .info-content .table td {
        padding: 10px;
        vertical-align: middle;
    }





/* add css on 5/5/2022 date ================= */
/* mobile for navbar menu css  */
.btn-close .close-icon {
    width: 100%;
    padding: 10px;
}

.mobile-logo .navbar-brand {
    padding: 0;
}
/* slick defult css overwrite  */
.off-canvas-content-wrap .logo-section {
    padding: 15px 0;
}

.off-canvas-area-wrapper .off-canvas-content-wrap, .off-canvas-responsive-menu .off-canvas-content-wrap {
    max-width: 260px !important;
}

    .off-canvas-area-wrapper .off-canvas-content-wrap .btn-close, .off-canvas-responsive-menu .off-canvas-content-wrap .btn-close {
        width: 40px;
        height: 40px;
        line-height: 30px;
        background-color: #c71a2e;
    }

        .off-canvas-area-wrapper .off-canvas-content-wrap .btn-close:hover, .off-canvas-responsive-menu .off-canvas-content-wrap .btn-close:hover {
            background-color: #323232;
        }

.slicknav_menu .slicknav_nav li a {
    font-weight: 400;
}

    .slicknav_menu .slicknav_nav li a:hover {
        background-color: #c71a2e;
    }

.slicknav_menu .slicknav_nav li:hover a {
    color: #fff;
}

.slicknav_menu .slicknav_nav li:hover {
    background-color: #323232;
}

.slicknav_menu .slicknav_nav li ul li a::before {
    border-color: #c71a2e;
}
/* long user name with login time is break ...  */
#user-dropdown {
    max-width: 180px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/* footer fix at bottom when content is less... */
footer.footer {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.wrapper {
    padding-bottom: 356px;
    position: relative;
    min-height: 100vh;
    background-color:#f1f1f1;
}



/* verfication page for css ...  */
.login .panel-default {
    border: none;
}

.login .panel {
    border-radius: 7px;
}

.login .panel-default > .panel-heading {
    background-color: transparent;
    text-align: center;
}

.login .panel .panel-heading h3 {
    font-size: 28px;
    line-height: 38px;
    color: #212224;
    font-weight: 600;
}

.login .panel .panel-body {
    padding: 30px;
}

    .login .panel .panel-body p {
        font-size: 16px;
        line-height: 20px;
        color: #8a8a8a;
    }

.verification-box {
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 16px;
    width: 100%;
    padding-right: 15px;
    margin: 10px 0;
    justify-content:left;
}

    .verification-box:hover {
        background-color: #404040;
    }

   /* .verification-box img {
        max-width: 60px;
    }*/

    .verification-box img {
        max-width: 60px;
        text-align: left;
        flex-basis: fit-content;        
    }

    .verification-box span {
        font-size: 15px;
        color: #ffffff;
        width: 100%;
        padding-left: 8px;
    }

.contact-form .btn_group .submit1 {
    padding: 10px 22px;
    display: inline-block;
    background-color: #178643;
    color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0px 6px 9px 0px rgb(0 0 0 / 55%);
    -moz-box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.55);
    box-shadow: 0px 6px 9px 0px rgb(0 0 0 / 55%);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

    .contact-form .btn_group .submit1:hover {
        background-color: #3c3c3e;
    }
