/* font-family-here */
@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-ExtraLightIt.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-ExtraLightIt.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-It.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-It.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-ExtraLight.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-SemiboldIt.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-SemiboldIt.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-LightIt.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-LightIt.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-Light.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-Regular.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-Semibold.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-BoldIt.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-BoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-Black.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-Bold.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/sourcesanspro/woff/SourceSansPro-BlackIt.woff2') format('woff2'),
    url('../fonts/sourcesanspro/woff/SourceSansPro-BlackIt.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* font-family-here-end */

/* root */
:root {
    --source-sans-pro: "Source Sans Pro", sans-serif;

    --white-color: #fff;
    --black-color: #000;

    --primary: #000;
    --secondary: #111;
    --dark: #222;
    --blue: #066FD1;

    --hover-colo: #000;

    --body-color: #000;
    --heading-color: #000;
}

/* root */

/* defaults-css-start */
html {
    font-size: 100%;
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a,
button {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
    outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--heading-color);
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

li {
    list-style: none;
}

p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: var(--body-color);
    margin-bottom: 15px;
}

label {
    color: var(--body-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

.black-icon {
    filter: brightness(0);
}

.btn-custom {
    padding: 9px 24px;
    border-radius: 4px;
    background-color: var(--blue);
    color: var(--white-color);
    font-family: var(--roboto);
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: unset;
    letter-spacing: .1px;
}

.btn-bordered {
    padding: 10px 17px;
    border-radius: 4px;
    background-color: transparent;
    color: #28284A;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: unset;
    border: 1px solid #DCE1E7;
    box-shadow: 0 1px 1px 0 rgba(24, 36, 51, 0.06);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}

.btn-custom:hover,
.btn-bordered:hover {
    background: var(--dark);
    color: var(--white-color);
}

.btn-bordered:hover {
    border-color: var(--dark);
}

.btn-xs {
    padding: 1px 5px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    border-radius: 3px !important;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

/* defaults-css--end */

/* theme-css */
.fs-1 {
    font-size: 48px !important;
}

.fs-2 {
    font-size: 32px !important;
}

.text-dark {
    color: var(--dark) !important;
}

/* theme-css-end */

/* ======== header style start ============ */
.header {
    padding: 20px 0px;
}

.header-logo a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
}

/* ======== header style end ============ */

/* ======== hero style start ============ */
/* ======== hero style end ============ */

/* ======== step-page style start ============ */

/* Basic styles for the container */
.step-container {
    width: 400px;
    margin: auto;
    text-align: center;
}

/* Styles for the steps indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.step {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.step::after {
    position: absolute;
    left: calc(100% + 50px);
    top: 42px;
    width: 86px;
    height: 1px;
    content: "";
    background: #BFC2C7;
}

.step:last-child::after {
    display: none;
}

.step-number {
    background-color: #fff;
    color: #182433;
    border-radius: 50%;
    padding: 0px;
    width: 48px;
    height: 48px;
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    border: 1px solid #E9EAEC;
}

.step-label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #182433;
}

.steps-indicator,
.step-nav {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

/* Active and checked step styling */
.active .step-number {
    background-color: #066FD1;
    color: #fff;
    border-color: #066FD1;
}

.active .step-label {
    color: #066FD1;
}

.checked .step-number {
    background-color: #22A136;
    color: #fff;
    border-color: #22A136;
}

.checked .step-label {
    color: #22A136;
}


/* Content area styling */
.step-content {
    margin-bottom: 20px;
}

/* Button styling */

.step-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 40px;
}

.step-nav button {
    background: #066FD1;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    color: white;
    cursor: pointer;
    line-height: 20px;
}

.step-nav button:not([disabled]):hover {
    background: var(--primary);
}

.step-nav button:disabled {
    background-color: #ccc;
}


/* step-page-content */


.step-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.step-area {
    padding: 40px 0px 120px;
}

.step-content {
    max-width: 860px;
    margin: 0 auto;
}

.infoCard {
    background: #F6F8FB;
}

.infoCard-content {
    padding: 15px 24px 24px;
}

.infoCard-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.infoCard-img img {
    width: 100%;
}

.infoCard-content ul li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 350;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0px;
    font-family: 'Source Sans Pro', sans-serif;
}

.infoCard-content ul li span {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.box {
    padding: 40px 40px;
}

.box-colored {
    background: #F0F7FD;
}

.box > h3.fs-4 {
    margin-bottom: 28px;
    color: #222222;
}

.tickets-items {
    margin-bottom: 28px;
    gap: 28px 0;
}

.ticket-item {
    background: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 10px #00000012;
}

.ticket-item.sold-out {
    background: #fafafa;
}

.ticket-item-text h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    line-height: 25px;
}

.ticket-item.sold-out h5 {
    text-decoration: line-through;
}

.ticket-item-text p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 350;
    font-family: 'Source Sans Pro', sans-serif;
}

.ticket-item-text {
    flex: 0 0 auto;
    width: 65%;
    min-width: 230px;
}

.ticket-qty {
    display: flex;
    align-items: stretch;
    gap: 8px;
    touch-action: manipulation !important; /* disable double tap zoom */
}

.ticket-item .ticket-qty {
    flex: 0 0 auto;
    width: 148px;
}

.ticket-qty input {
    width: 44px;
    height: 44px;
    border: 1px solid #0420451A;
    border-radius: 4px;
    text-align: center;
    color: #222222;
    font-size: 20px;
    line-height: 26px;
    appearance: none;
    -moz-appearance: textfield;
    /* For Firefox */
}

.ticket-qty button {
    width: 44px;
    height: 44px;
    padding: 0;
    background: #F0F7FD;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.ticket-qty button:disabled {
    background: #fafafa;
}

.ticket-qty button:not([disabled]):hover {
    background: var(--blue) !important;
}

.ticket-qty button:not([disabled]):hover svg path {
    stroke: var(--bs-light);
}

.ticket-qty button {
    stroke: var(--bs-light);
}

.ticket-item-ron {
    flex: 0 0 auto;
    width: 28%;
    font-family: 'Source Sans Pro', sans-serif;
}

.ticket-item-title {
    flex-grow: 1;
    justify-content: space-between;
}

.total-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.total-info .item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5rem; /* optional */
}

.total-info h5 {
    margin-bottom: 0;
}

.total-info p {
    margin-bottom: 0;
}

.timer-text p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 350;
    color: #707987;
    font-family: 'Source Sans Pro', sans-serif;
}

.timer-text p span {
    color: #1E2734;
}

.timer-text {
    padding: 4px 0px;
}

.box-borderd {
    border: 1px solid #0420451A;
}

.ticket-info {
    background: #F0F7FD;
    margin-bottom: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticket-info h5 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    min-width: 140px;
}

.ticket-seat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 5;
    justify-content: start;
    text-align: center;
}

.ticket-seat span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.ticket-price {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.ticket-prices li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0px;
    font-size: 16px;
    line-height: 20px;
    color: #222222;
}

.ticket-prices li.sep {
    margin: 14px 0px;
    border-bottom: 1px solid #0420451A;
    padding: 0px;
}

.ticket-prices li.total {
    padding: 0px;
}

.ticket-prices li.total span {
    font-weight: bold;
}

.ticket-actions {
    margin-top: 1rem;
    text-align: end;
}

.ticket-actions a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    font-size: 15px;
}

.ticket-actions a i {
    margin-left: 8px;
    font-size: 20px;
}

.ticket-actions a:hover {
    text-decoration: none;
    color: var(--black-color);
}

.timer-text p {
    margin-bottom: 0px;
}

.single-input label {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
}

.single-input input {
    height: 38px;
    border-radius: 2px;
    border: 1px solid #0420451A;
}

.single-input {
    margin-bottom: 16px;
}

.checkBox input {
    display: none;
}

.checkBox label {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #222222;
    gap: 8px;
}

.checkBox label span.ind {
    width: 15px;
    height: 15px;
    border: 1px solid #222;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
}

.checkBox label span.ind img {
    opacity: 0;
}

.checkBox input:checked ~ label span.ind img {
    opacity: 1;
}

.checkBox {
    padding: 2px 0px;
}

.checkBox input:checked ~ label span.ind {
    border-color: #066FD1;
    background: #066FD1;
}

.y-ticket {
    background: #F0F7FD;
    padding: 24px 24px;
    margin-bottom: 12px;
}

.y-ticket-header h5 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0px;
}

.sit-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.y-ticket-header p.price {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    margin-bottom: 0;
}

.y-ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.y-ticket-body h6 {
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    margin-bottom: 8px;
}

.y-ticket-body p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
    margin-bottom: 0px;
}

.y-ticket-footer {
    padding-top: 24px;
}

.y-ticket-footer ul li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    color: #066FD1;
}

.y-ticket-footer ul li a span.icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.y-ticket-footer ul {
    gap: 16px;
}

.y-ticket-footer ul li a:hover {
    text-decoration: underline;
}

.y-ticket:last-child {
    margin-bottom: 0px;
}


.thanks-card span.icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.thanks-card h2 {
    line-height: 42px;
    color: #222222;
}

.thanks-card p {
    font-size: 16px;
    line-height: 21px;
    color: #222222;
}

.thanks-card {
    margin-bottom: 40px;
}

/* ======== step-page style end ============ */


/* ============Footer =========================== */
.footer {
    border-top: 1px solid #0028641F;
    padding: 37px 0px;
}


.footer-content ul {
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content ul li a {
    display: block;
    color: #222222;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}

.footer-content ul li a:hover {
    color: #066FD1;
}

/* ============Footer ===========================ennd */


/* ========== ---------- event-page-1.html Page Start ---------- ========== */

.event-page-1 {
    font-family: 'Source Sans Pro', sans-serif;
}

/* ----- Header Section Start ----- */
.menu-btn {
    background: transparent;
    border: unset;
    padding: 0;
}

.menu-btn img {
    max-width: 24px;
}

/* ----- Header Section Start ----- */


/* ----- Banner Section Start ----- */
.event-page-1-banner {
    background: url("../imgs/bg-imgs/event-page-1-banner.jpg") no-repeat center / cover;
    min-height: 565px;
    padding: 100px 0px;
}

.event-page-1-banner .banner-para {
    max-width: 840px;
    font-size: 24px;
    line-height: 1.4;
}

/* ----- Banner Section End ----- */


/* ----- Events Section Start ----- */
.events-wrapper {
    margin: 40px 0 65px;
    padding: 40px;
}

.single-event-filter .nice-select {
    border-radius: 4px;
    border: unset;
    background-color: rgba(6, 111, 209, 0.08);
    color: #28284A;
    font-size: 16px;
    padding: 5px 16px;
    padding-right: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.single-event-filter .nice-select::after {
    content: '';
    border: unset;
    margin-top: -3px;
    right: 14px;
    -webkit-transform-origin: 50% 35%;
    -ms-transform-origin: 50% 35%;
    transform-origin: 50% 35%;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    width: 12px;
    background-image: url("../imgs/icons/triangle-down.svg");
    background-repeat: no-repeat;
    height: 12px;
    background-size: 12px;
}

.single-event-filter .nice-select.open::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.single-event-filter .nice-select .list {
    padding: 5px 0;
}

.single-event-filter .nice-select .option {
    padding: 0 20px;
}

.single-event-card {
    min-height: 475px;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.07);
}

.event-card-thumb {
    height: 250px;
    position: relative;
}

.event-card-thumb img.event-img {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    object-fit: cover;
}

.event-card-thumb img.event-img.sold-out {
    filter: grayscale(100%) blur(3px);
}

.event-card-thumb .sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 1;
    pointer-events: none;
}

.single-event-card:not(.sold-out):hover .event-card-thumb img {
    transform: scale(1.03);
}

.event-card-wrapper {
    padding: 20px;
    height: 100%;
}

.event-title {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.event-title:hover {
    color: var(--blue);
}

.event-info {
    font-weight: 350;
    margin-bottom: 0;
}

.event-info img {
    max-width: 24px;
}

.event-cards-row.g-5 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 56px;
}

.ec-load-more {
    padding-top: 56px;
}

/* ----- Events Section End ----- */

/* ========== ---------- event-page-1.html Page End ---------- ========== */


/* ========== ---------- event-page-2.html Page End ---------- ========== */

.event-page-2 h1,
.event-page-2 h2,
.event-page-2 h3,
.event-page-2 h4,
.event-page-2 h5,
.event-page-2 h6 {
    font-family: var(--source-sans-pro);
}

/* ----- Event Ribbon ----- */

.event-ribbon {
    position: absolute;
    clip-path: inset(0 -100%);
    inset: 0 auto auto 0;
    transform-origin: 100% 0;
    transform: translate(-29.3%) rotate(-45deg);
    padding: .2em;
    z-index: 10;
    font-size: 1.4em;
    font-weight: 600;
    text-transform: uppercase;
}

/* ----- Banner Section Start ----- */

.event-page-2-banner {
    background: url("../imgs/bg-imgs/event-page-2-banner.jpg") no-repeat center / cover;
    min-height: 435px;
    padding: 50px 0px;
}

.event-page-2-banner.sold-out {
    filter: grayscale(100%);
}

.grayscale {
    filter: grayscale(100%);
}

.bg-light-blue {
    background-color: rgba(66, 153, 225, 0.08);
}

.event-page-sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: none;
}

.banner-event-detail {
    gap: 20px;
}

.banner-event-detail p {
    font-size: 18px;
}

.banner-event-detail p img {
    max-width: 24px;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    border-radius: 12px;
}

.event-description-wrapper {
    position: relative;
}

.event-description-container {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

/* Fade-out effect */
.event-description-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Height of the fade effect */
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

/* Remove fade-out effect when expanded */
.event-description-container.expanded::after {
    opacity: 0;
}

/* Show More Button */
.show-more-btn {
    display: block;
    margin: 15px auto 0;
    padding: 8px 16px;
    text-align: center;
}

/* ----- Banner Section End ----- */


/* ----- AboutTheEvent Section Start ----- */
.about-event-wrapper {
    max-width: 1225px;
    padding: 40px;
    padding-top: 80px;
}

.section-heading {
    color: var(--dark);
}

.about-event-wrapper p {
    color: #182433;
    font-size: 18px;
}

/* ----- AboutTheEvent Section End ----- */

/* ----- Testimonial Section Start ----- */
.testimonial-wrapper {
    max-width: 1225px;
    padding: 40px;
    padding-bottom: 55px;
}

.single-testimonial-slide {
    min-height: 225px;
    height: auto;
    background-color: rgba(66, 153, 225, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.testimonial-para {
    font-size: 18px;
    margin-bottom: 12px;
    color: #182433;
}

.ratings i {
    font-size: 20px;
    color: #F59F00;
}

.client-name {
    font-size: 14px;
    color: #1E2734;
}

.testimonial-slide-btns .swiper-button-next::after,
.testimonial-slide-btns .swiper-button-prev::after {
    display: none;
}

.testimonial-slide-btns .swiper-button-next,
.testimonial-slide-btns .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(34, 34, 34, 0.1);
    transition: all .3s ease-in-out;
}

.testimonial-slide-btns .swiper-button-next:hover,
.testimonial-slide-btns .swiper-button-prev:hover {
    background-color: rgba(34, 34, 34, 1);
}

.testimonial-slide-btns .swiper-button-next {
    right: -95px;
}

.testimonial-slide-btns .swiper-button-prev {
    left: -95px;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -45px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border: 1px solid #F0F0F0;
    background-color: transparent;
    opacity: 1;
    margin: 0 6px !important;
    transition: all .1s ease-in-out;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #182433;
    border-color: #182433;
}

/* ----- Testimonial Section End ----- */


/* ----- GetTicket Section Start ----- */
.get-ticket-section {
    margin-bottom: 70px;
}

.get-ticket-wrapper {
    max-width: 1225px;
    padding: 40px;
    background-color: rgba(66, 153, 225, 0.08);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07);
}

.single-gti {
    /*min-height: 100px;*/
    background: var(--white-color);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.07);
}

.gti-date {
    font-size: 20px;
}

.get-ticket-btn.btn {
    font-family: var(--source-sans-pro);
    font-weight: 600;
}

.single-gti.disabled {
    background-color: #F6F8FB;
    pointer-events: none;
}

.single-gti.disabled .gti-date {
    opacity: .5;
}

.single-gti.disabled .get-ticket-btn.btn {
    background-color: #C4CAD4;
    color: #F6F8FB;
    box-shadow: 0 1px 1px 0 rgba(24, 36, 51, 0.06);
}

/* ----- GetTicket Section End ----- */

/* ----- Document Section Start ----- */
.document-section {
    margin-top: -60px;
    margin-bottom: 60px;
}

.document-section h1,
.document-section h2,
.document-section h3,
.document-section h4,
.document-section h5,
.document-section p,
.document-section ul,
.document-section ol,
.document-section li {
    /* Reset any unintended styles */
    margin: 0 0 1em;
    padding: 0;
    font-weight: normal;
    font-size: inherit;
    line-height: 1.5;
    color: inherit;
}

/* Specific adjustments */
.document-section h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.document-section h2 {
    font-size: 1.75em;
    margin-bottom: 0.75em;
}

.document-section h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.document-section p {
    font-size: 1em;
    margin-bottom: 1em;
}

.document-section ul,
.document-section ol {
    margin-left: 1em;
    margin-bottom: 1em;
}

.document-section li {
    list-style-type: disc;
    margin-left: 1em;
    line-height: 1.5;
}

/* ----- Document Section End ----- */

/* ========== ---------- event-page-2.html Page End ---------- ========== */
