@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
}

body {
    background-color: #060001;
    color: #FFFFFF;
}

h3 {
    color: #D0D0D0;
}

a.nav-link {
    color: #FFFFFF;
    transition: all .3s ease-in-out;
    font-weight: 400;
    font-size: 16px;
}

a.nav-link:hover,
a.nav-link.active {
    color: #F9D665;
}

li.nav-item {
    padding: 0px 15px;
}

.call_icon {
    background: #F9D665;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #230C35;
    animation: animate-pulse 3s linear infinite;
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 240, 74, 0.7), 0 0 0 0 rgba(240, 255, 74, 0.7);
    }

    40% {
        box-shadow: 0 0 0 20px rgba(255, 255, 74, 0), 0 0 0 0 rgba(246, 255, 74, 0.881);
    }

    80% {
        box-shadow: 0 0 0 20px rgba(255, 222, 74, 0), 0 0 0 20px rgba(255, 109, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 252, 74, 0), 0 0 0 20px rgba(255, 243, 74, 0);
    }

}

.call_icon i,
.call_icon svg {
    color: #230C35;
}

header {
    padding: 10px 0;
    border-bottom: 1px solid #ffffff29;
    position: fixed;
    width: 100%;
    z-index: 9;
}

section.hero {
    background: linear-gradient(360deg, #000000c2, #000000a6), url(./assets/banner.png) no-repeat top;
    background-size: cover;
    /* padding: 100px 0; */
    padding-top: 83px;
    padding-bottom: 105px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-top: 115px;
}

h1 span {
    color: #F9D665;
    font-size: 48px;
    font-weight: 400;
    margin-top:  20px !important;
    /* display: block; */
}

p.location,
p.date {
    color: grey;
    font-size: 16px;
    font-weight: 500;
}

a.btn.btn-outline-light {
    border-radius: 10px;
    padding: 11px 45px;
    font-weight: 500;
    font-size: 20px;
}

a.btn.btn-outline-light svg {
    transform: rotate(328deg);
    font-size: 22px;
    color: #F9D665;
    transition: all .3s ease-in-out;

}

a.btn.btn-outline-light:hover {
    background: #F9D665;
    border-color: #F9D665;
}

a.btn.btn-outline-light:hover svg {
    transform: rotate(360deg);
    color: #060001;
}

button.navbar-toggler {
    background: #F9D665;
    padding: 10px;
    color: #000002;
    font-size: 20px;
}

button.navbar-toggler:focus {
    box-shadow: none;
}

.search_box {
    background: #f9d665;
    padding: 20px 35px;
    border-radius: 15px;
}

.search_box input.form-control {
    border-radius: 30px;
    border: 0;
    padding: 0px 25px;
}

.search_box button.btn.btn-outline-secondary {
    border-radius: 25px !important;
    background: #222020;
    border: 0;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.search_box .input-group {
    padding: 5px;
    background: #ffffff;
    border-radius: 40px;
}

.search_box input.form-control:focus {
    box-shadow: none;
}

p.mute_text {
    font-size: 14px;
    color: #937631;
    margin-top: -7px;
}

section.search {
    margin-top: -65px;
}

section.event_schedules {
    padding: 110px 0;
}

.event_heading h2 {
    font-size: 32px;
    font-weight: 700;
}

.event_heading span {
    color: #F9D665;
    font-size: 14px;
}

.nav-tabs {
    border: 0;
}

.nav-tabs .nav-link {
    background: transparent;
    margin: 0 10px;
    color: #989898;
    border-radius: 8px;
    position: relative;
    padding: 10px 19px;
    border: 1px solid #989898;
    font-size: 14px;
    font-weight: 500;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #D12B29;
    color: white;
    position: relative;
    border: 1px solid #D12B29;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 15px;
    width: 27px;
    background: #D12B29;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.nav-tabs .nav-link span {
    font-size: 14px;
    font-weight: 300;
}

.card.days_cards {
    background: #191919;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    padding: 15px;
}

.card.days_cards:hover {
    border: 1px solid #f9d665;

}

.details_days>svg {
    transition: all .3s ease-in-out;
}

.card.days_cards:hover .details_days>svg {
    margin-right: 10px !important;
}

.card.days_cards .card-body {
    padding: 0;
}

.card.days_cards img {
    width: 168px !important;
    margin-right: 20px !important;
}

.card.days_cards h4 {
    font-size: 20px;
    color: white;
}

.card.days_cards p {
    font-size: 16px !important;
    font-weight: 100;
}

p.time {
    color: #f9d665;
}

a.details_days {
    color: #f9d665;
}

button.btn.btn-outline-secondary svg,
button.btn.btn-outline-secondary i {
    color: #f9d665;
    transform: rotate(316deg);
}

.card.active_events {
    background: linear-gradient(45deg, #211A05, #230C35, #300C28);
}

.active_event_date_day {
    text-align: center;
    width: fit-content;
}

p.mb-0.a_event_date {
    background: #5D5D5D;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 15px;
    font-size: 16px;
}


p.mb-0.day_time {
    background: #989898;
    padding: 9px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 13px;
    color: black;
}

.event_name h4 {
    font-size: 20px;
}

p.mb-0.a_event_add {
    font-size: 16px;
    color: #f9d665;
    font-weight: 100;
}

.name h4 {
    font-size: 20px;
}

p.mb-0.subtit {
    font-size: 16px;
    font-weight: 100;
}

.card.active_events .card-body {
    padding: 15px;
}

.card.circle_card {
    background: transparent;
    text-align: center;
    border: 0;
}

.card.circle_card img {
    border-radius: 50%;
    border: 5px solid white;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}

.card.circle_card:hover.card.circle_card img {
    border-color: #F9D665;
    transform: scale(0.90);
}

.kings_details h4 {
    font-size: 20px;
    transition: all .3s ease-in-out;
}

.king_icon {
    font-size: 25px;
}

.card.circle_card:hover.circle_card h4 {
    color: #F9D665;
}

.text-warning {
    color: #F9D665 !important;
}

.review_content_person p {
    font-size: 14px;
    color: #989898;
    margin-bottom: 0;
}

section.king {
    padding: 100px 0;
}

.kings_main_din {
    background: #191919;
    padding: 45px;
    border-radius: 10px;
}

.features_content {
    background: #191919;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #5D5D5D;
    transition: all .3s ease-in-out;
}

.features_content:hover {
    border-color: #F9D665;
}

.features_content img {
    width: 50px !important;
    margin: 0 auto;
    margin-bottom: 10px !important;
}

.features_content h4 {
    font-size: 14px;
    color: #D0D0D0;
}

.review_slider .owl-nav {
    position: absolute;
    top: -115px;
    right: 0;
    font-size: 40px;
}

.review_slider .owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #f9d665;
}

section.features {
    padding-bottom: 80px;
}

.ticket_container {
    background: linear-gradient(267deg, #ba2f2d99, #190909), url(./assets/footer.png);
    padding: 30px;
    border-radius: 4px;
}

.ticket_container ul {
    padding-left: 0;
}

.ticket_container ul li {
    list-style: none;
    font-size: 24px;
    margin-bottom: 10px;
}

.ticket_container ul li svg,
.ticket_container ul li i {
    color: #f9d665;
}

.ticket_container .event_heading h2 span {
    font-size: 32px;
}

input.form-control.subscribe_input {
    padding: 13px 20px;
}

section.ticket_guarantee {
    padding-bottom: 80px;
}

h2.subscribe_heading {
    color: #000000;
    font-size: 32px;
    font-weight: 800;
}

p.sub_title {
    font-size: 16px;
    color: #000000;
}

footer {
    background: linear-gradient(45deg, #0000006e, #0000009e), url(./assets/footer.png);
    padding-bottom: 60px;
    padding-top: 115px;
}

section.subscribe {
    margin-bottom: -45px;
}

span.copyright {
    font-size: 14px;
    color: #D0D0D0;
}

.social_icons_container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 35px;
}

a.socail_icons_a {
    background: transparent;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    transition: all .3s ease-in-out;
    font-size: 16px;
}

a.socail_icons_a:hover {
    background: #ffffff;
    color: black;
}

footer h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

footer ul {
    padding-left: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 13px;
    transition: all .3s ease-in-out;

}

footer ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 200;
}

footer ul li:hover a {
    color: #F9D665;
}

.nav-tabs .nav-link:nth-child(1) {
    margin-left: 0;
}

.features_content:hover {
    background: #F9D665;
}

.features_content:hover.features_content img {
    filter: invert(1);
}

.features_content:hover.features_content h4 {
    color: black;
}

.facebook:hover {
    background-color: #1877F2 !important;
    color: white !important;
}

.twitter:hover {
    background-color: white !important;
}

.linkedin:hover {
    background-color: #0077B5 !important;
    color: white !important;
}

.youtube:hover {
    background: #b2071b !important;
    color: white !important;
}

.responsive_call {
    display: none;
}

.read_more {
    background-color: #F9D665;
    height: 41px;
    width: 41px;
    border-radius: 50%;
    color: #060001;
    margin: 0 auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    font-size: 20px;
    align-items: center;
    font-size: 16px;
    border: 0;
}

.read_more_btn span {
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    display: block;
}

.read_more_btn {
    margin: 10px 30px 0;
}

section.performer_intro {
    padding: 110px 0;
    position: relative;
}

.card.performer_intro_card {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 8px;
}

.performer_intro .event_heading h2 {
    margin-bottom: 20px;
}

.performer_img {
    width: 344px;
}

.gradient_bg {
    background: linear-gradient(267deg, #BA2F2D, #190909);
    padding: 15px;
    border-radius: 2px;
}

.location_active_event {
    font-size: 16px;
}

.event_schedule {
    display: flex;
    gap: 18px;
    align-items: top;
    margin-bottom: 20px;
}

.icon_event_schedule {
    background: #5D5D5D;
    line-height: -6;
    height: 50px;
    width: 50px;
    display: flex;
    border-radius: 4px;
}

.icon_event_schedule img {
    width: 40px;
    margin: 0 auto;
}

.event_schedule_content h6 {
    font-size: 20px;
    margin-bottom: 3px;
}

.event_schedule_content span {
    font-size: 16px;
    font-weight: 100;
}

.features {
    padding: 110px 0;
}
img.review_img {
    width: 140px !important;
    margin: 0 auto;
}

span.review_counts {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-right: 15px;
}

.review_stars_container {
    gap: 5px;
    /* background: red; */
    line-height: 0;
    height: 100%;
    align-items: center;
  
}

.review_stars {
    color: #F88D2C;
    font-size: 18px;
}

.review_content {
    color: #5D5D5D;
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 0;
}

.card.review_div .card-body {
    padding: 0;
}

.card.review_div {
    border: 0;
    padding: 15px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    height: 100% !important;
}
.card.review_div:hover{
    transform: scale(0.90);
}
.review_people_slider .owl-nav {
    top: 33%;
    position: absolute;
    width: 100%;
}

.review_people_slider .owl-prev {
    position: absolute;
    left: -90px;
}

.review_people_slider .owl-next {
    position: absolute;
    right: -90px;
}
.review_people_slider .owl-nav {
    /* background: red; */
    top: 23%;
    position: absolute;
    width: 100%;
}

.review_people_slider .owl-prev {
    position: absolute;
    left: -95px;
    /* font-size: 30px; */
}

.review_people_slider .owl-next {
    position: absolute;
    right: -95px;
}

.review_people_slider .owl-prev span, .review_people_slider .owl-next span {
    font-size: 50px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #f9d665;
}
.accordion-item {
    background: transparent;
}

.accordion-button {
    background: transparent;
    color: white;
    border-bottom: 0;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: white;
    padding-bottom: 0;
}

.accordion-button:not(.collapsed)::after {
 background-image: url(./assets/arrow-up.png) !important;
 width: 18px;
 height: 11px;
 transform: rotate(0deg);
}
.accordion-button::after{
 background-image: url(./assets/arow-down.png) !important;
 width: 18px;
 height: 11px;
 background-size: 100% 100%;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button {
    font-weight: 700;
    font-size: 16px;
    padding: 20px;
}

.accordion-body {
    font-size: 16px;
    font-weight: 200;
}
.accordion-button , .accordion-body{
    padding-left: 0;
}
.accordion-item {
    border-bottom: 1px solid #383838;
}
section.faq_form {
    padding-bottom: 110px;
}
.faq_overflow{
    overflow: auto;
}
.form-control {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ADADAD;
    padding: 20px 0;
}
.contact_form{
    padding: 15px;
    background: #F7F7F7;
}
.form-control::placeholder {
  color: #1b1b1b;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
}
.form-control:focus{
    box-shadow: none;
    border-color: #F9D665;
}
.contact_form .card-body{
    position: relative;

}
.contact_form .card-body::after{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 130px;
    width: 82px;
    background-image: url(./assets/question-big.svg) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.faq_overflow {
    overflow: auto;
    height: 400px;
    margin-top: 25px;
}
/* For WebKit browsers (Chrome, Edge, Safari) */
.faq_overflow::-webkit-scrollbar {
  width: 8px;
}

.faq_overflow::-webkit-scrollbar-track {
  background: #2e2e2e; /* dark gray/black track */
  border-radius: 10px;
}

.faq_overflow::-webkit-scrollbar-thumb {
  background: #ffd54f; /* yellow thumb */
  border-radius: 10px;
}

.faq_overflow::-webkit-scrollbar-thumb:hover {
  background: #ffca28; /* slightly darker yellow on hover */
}

/* For Firefox */
.faq_overflow {
  scrollbar-width: thin;
  scrollbar-color: #ffd54f #2e2e2e;
}
.read_more_before_content{
    position: relative;
}
.read_more_before_content::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    left: 0;
    background: linear-gradient(360deg, black, transparent);
}
.read_more_before_content.expanded::after {
  display: none; /* Hide the overlay when expanded */
}
.read_more_before_content.expanded::after {
  display: none !important;
}

span.light_h1 {
    font-size: 43px;
    color: white;
}

p.span_h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 48px;
    color: #f9d665;
    font-weight: 300;
}
.span_h1 svg , .span_h1 i {
    font-size: 26px;
    position: relative;
    top: -6px;
}
p.timer_text {
    text-align: center;
    margin-top: 60px;
    font-size: 20px;
}
.timer_hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.time_box {
    background: #ffffff26;
    color: #ffffff;
    margin: 10px;
    height: 170px;
    display: flex;
    width: 163px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF2B;
    border-radius: 5px;
    text-align: center;
}
.time h2 {
    font-size: 80px;
    font-weight: 700;
}

.time span {
    font-size: 24px;
    font-weight: 300;
}
.btn_group {
    margin-top: 50px;
}

.yellow_btn {
    border-radius: 10px;
    padding: 11px 45px;
    font-weight: 500;
    font-size: 20px;
    background: #f9d665;
    border-color: #f9d665;
}

.btn-warning:hover {
    background: #f2d474;
    border-color: #f2d474;
}
.btn-dark {
    background: #000000;
    border-color: #000000;
}
.singer_img img{
    border-radius: 10px;
}
.people_review_card{

padding: 25px;

border-radius: 10px;

border: 1px solid #FFFFFF;
}
.person_detail_box {
    display: flex;
    align-items: center;
}

.review_person {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.person_detail {
    margin-left: 20px;
}

p.person_name {
    color: black;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.people_review_card .card-body {
    padding: 0;
}
