*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 0;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

div,
p {
    word-break: break-word;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
nav,
picture {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

ul,
ol,
li {
    list-style: none;
}

b,
strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
    color: var(--white);
}


:root {
    --white: #F6F6F6;
    --black: #121212;
    --primary-color: #F8BC1C;
    --default-color: #CECECE;
    --orange-color: #F05433;
    --gold-color: #EBCD86;
    --blue-color: #4080BF;
}

body {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--white);
    font-style: normal;
    font-family: "Syne", sans-serif;
    background-color: var(--black);
    font-feature-settings: 'pnum' on, 'lnum' on;
}

h1,
.h1 {
    font-size: 130px;
    line-height: 0.8;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
}

h2 {
    font-size: 50px;
    font-weight: 700;
}

h3 {
    font-weight: 700;
    font-size: 31px;
    line-height: 1;
}

h4 {
    font-size: 23px;
}

h5 {
    font-size: 16px;
    line-height: 1.25;
    font-family: "Syne", sans-serif;
}

h6 {
    font-size: 15px;
}

.container {
    width: 1600px;
    max-width: 100%;
    padding: 0 25px;
}

p:not(:last-of-type) {
    padding-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

#main {
    padding: 0;
    margin-top: 0;
    position: relative;
}




/* Button defalut */
.button {
    position: relative;
    overflow: hidden;
    min-height: 50px;
    font-weight: 700;
    font-size: 16px;
    width: max-content;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0 30px;
    border-radius: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: color 0.4s, border-color 0.4s;
    z-index: 1;
}

.button svg path {
    transition: all 0.4s;
}

.button::before,
.button::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--white);
    z-index: 0;
    transition: transform 0.4s ease;
}

.button::before {
    top: 0;
    transform: translateY(-100%);
}

.button::after {
    bottom: 0;
    transform: translateY(100%);
}

.button:hover::before,
.button:hover::after {
    transform: translateY(0);
    z-index: -1;
}

.button:hover {
    color: var(--black);
    border-color: var(--white);
}

.button:hover svg path {
    fill: var(--black);
}

/* Button white */
.button.button-white {
    color: var(--black);
    border-color: var(--black);
}

.button.button-white::before,
.button.button-white::after {
    background-color: var(--black);
}

.button.button-white:hover {
    color: var(--white);
    border-color: var(--black);
}

.button.button-white:hover svg path {
    fill: var(--white);
}



/* Header */
.header {
    padding: 25px 0;
    position: relative;
    width: 100%;
    z-index: 1046;
}

.HomePage .header {
    position: absolute;
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-content .button-menu {
    width: 125px;
}

body.open-menu {
    height: 100vh;
}

/* End Header */

/* Home */
.home-banner img,
.home-banner video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.home-heading {
    height: 300px;
    margin-bottom: 50px;
}

.home-heading .heading {
    text-transform: uppercase;
}

.home-heading-content {
    max-width: 1025px;
    height: 350px;
}

.home-heading-content .heading {
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .home-heading-content .heading {
        font-size: 120px;
    }
}

.home-intro-content .right {
    justify-content: space-between;
}

.ss-border-top {
    display: flex;
    gap: 25px;
}

.ss-border-top .item {
    padding-top: 25px;
    border-top: 1px solid var(--white);
}

.ss-border-top>.left {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.ss-border-top>.left h4,
.ss-border-top>.left h5 {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.ss-border-top>.right {
    width: 66%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ss-border-top .right .btn-readmore {
    margin: 0;
}

.ss-border-top .right .content {
    max-width: 761px;
}

.ss-border-top .right .btn-readmore {
    text-transform: uppercase;
    width: max-content;
    margin-left: auto;
}

.list-tours-wrap {
    padding-top: 75px;
}

.list-tours-content {
    padding-top: 25px;
    border-top: 1px solid var(--white);
}

.list-tours-content .heading {
    margin-bottom: 50px;
}

.list-tours {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px 25px;
}

.list-tours .tour-item {
    height: auto;
    display: flex;
    flex-direction: column;
}

.list-tours .tour-item .tour-content {
    padding-top: 25px;

    padding-top: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.list-tours .tour-item .btn-wrap {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.list-tours .tour-item .btn-wrap .button {
    width: 100%;
    font-size: 15px;
    padding: 0 5px;
    white-space: nowrap;
}

.list-tours .tour-item .tour-image {
    display: flex;
}

.list-tours .tour-item .tour-image img {
    width: 100%;
    height: 100%;
}

.list-tours .tour-item .tour-title {
    line-height: 1;
    min-height: 46px;
    height: 100%;
    font-weight: 700;
    padding-bottom: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.list-tours .tour-item .tour-title a {
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical;
}

.list-tours .tour-item .tour-date {
    text-transform: uppercase;
    color: #A5A5A5;
    padding-bottom: 25px;
}

.list-tours .tour-item:hover .tour-title {
    text-decoration: underline;
}

.HomePage .cta {
    padding-top: 50px;
}

.cta .cta-content {
    background-color: var(--white);
    position: relative;
    color: var(--black);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    position: relative;
}

.cta .cta-content::before,
.cta .cta-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--black);
    top: 50%;
    transform: translateY(-50%);
}

.cta .cta-content::before {
    left: -10px;
}

.cta .cta-content::after {
    right: -10px;
}

.cta .cta-content .heading {
    font-weight: 700;
}

.HomePage .event-ss {
    margin-top: 75px;
}

.HomePage .event-ss-content {
    padding-top: 25px;
    border-top: 1px solid var(--white);
    display: flex;
    gap: 25px;
}

.HomePage .event-ss-content .left {
    /* width: 66%; */
    width: 100%;
}

.HomePage .event-ss-content .left img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1024/623;
    object-fit: cover;
}

.HomePage .event-ss-content .right {
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.HomePage .event-ss-content .right>img {
    width: 100%;
    height: auto;
    aspect-ratio: 501/314;
    object-fit: cover;
}

.get-on-list {
    padding: 75px 0;
    position: relative;
}

.get-on-list::before {
    content: '';
    bottom: 0;
    left: 0;
    background-image: url('../images/bg-mailing-list.png');
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.get-on-list-content {
    padding-top: 25px;
    border-top: 1px solid var(--white);
}

.get-on-list-content>.heading {
    margin-bottom: 50px;
}

.get-on-list-content .left .content {
    max-width: 370px;
}

.our-brands {
    background-color: var(--white);
    color: var(--black);
    padding: 25px 0;
    overflow: hidden;
}

.our-brands-content {
    padding-top: 25px;
    border-top: 1px solid var(--black);
}

.our-brands-content>.heading {
    margin-bottom: 50px;
}

.brands-swiper .swiper-wrapper {
    display: flex;
    align-items: center;

    animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brands-swiper .brand-item {
    justify-content: center;
    display: flex;
}

.brands-swiper .brand-item img {
    object-fit: contain;
    max-height: 210px;
    max-width: 250px;
    filter: grayscale();
    transition: all 0.3s;
    width: 100%;
}

.brands-swiper .brand-item img:hover {
    filter: none;
}


/* End Home */



/* Offcanvas */
.offcanvas-menu {
    background-color: var(--black);
    background-color: transparent;
    height: 100vh !important;
    border: none !important;
}

.offcanvas-menu .offcanvas-body {
    padding: 0;
    border: none;
    background-color: var(--black);
    padding-top: 100px;
}

.HomePage .offcanvas-menu .offcanvas-body {
    background-color: transparent;
    border: solid var(--black);
    border-width: 100px 25px 32px;
    padding-top: 0;
}

.offcanvas-menu .nav-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =========================================== */

.offcanvas-menu .nav-main li {
    position: relative;
    width: 100%;
    text-align: center;
    border: 1px solid #fff;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.offcanvas-menu .nav-main li::before,
.offcanvas-menu .nav-main li::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--black);
    z-index: -1;
    transition: transform 0.5s ease;
}

.offcanvas-menu .nav-main li::before {
    top: 0;
    transform: translateY(0%);
}

.offcanvas-menu .nav-main li::after {
    bottom: 0;
    transform: translateY(0%);
}

.offcanvas-menu .nav-main li:hover::before {
    transform: translateY(-100%);
}

.offcanvas-menu .nav-main li:hover::after {
    transform: translateY(100%);
}

body.open-menu .home-heading-content {
    opacity: 0;
}

.offcanvas-menu .nav-main li:last-child {
    border-bottom: 1px solid #fff;
}

.offcanvas-menu .nav-main li a {
    color: var(--white);
    font-size: 105px;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    line-height: 0.9;
    padding: 30px 20px;
    font-weight: 700;
    width: 100%;
}

.fade.show {
    background: transparent;
}


/* End Offcanvas */

/* Footer */
.footer {
    padding: 25px 0;
}

.footer-top {
    display: flex;
    gap: 25px;
}

.footer-top .left {
    width: 57.5%;
    border-top: 1px solid var(--white);
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.footer-top .left .heading {
    font-size: 70px;
    line-height: 1.07;
    font-family: 'Cormorant Garamond';
    letter-spacing: -1px;
    font-weight: 600;
}

.footer-top .left .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-top .left .socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-top .left .socials a {
    width: 50px;
    height: 50px;
    border: 1px solid #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top .left .socials a:hover {
    background-color: var(--white);
}

.footer-top .left .socials svg {
    transition: all 0.3s;
}

.footer-top .left .socials a:hover svg {
    filter: brightness(0%);
}

.footer-top .right {
    width: 40.7%;
    border-top: 1px solid var(--white);
    padding-top: 50px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top .right ul.menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-top .right .menu li a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 23px;
}

.footer-top .right .menu li a:hover {
    text-decoration: underline;
}

.footer-top .right .content {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -10px;
}

.footer-top .right .content .links ul {
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
}

.footer-top .right .content .links ul a {
    font-size: 15px;
    text-transform: uppercase;
}

.footer-top .right .content .links ul a:hover {
    text-decoration: underline;
}

.footer-top .right .content .copyright {
    font-size: 14px;
}

.footer-top .right .content .copyright a:hover {
    text-decoration: underline;
}

/* End Footer */

.icon-bar-menu {
    display: none;
}


/* Single Tour */
.hero-banner .banner-content .img-desktop {
    width: 100%;
}

.hero-banner .banner-content .img-mobile {
    object-fit: cover;
    width: 100%;
    display: none;
}

.tour-content-wrap {
    padding: 75px 0;
}

.tour-content-wrap .left {
    width: 40.7%;
}

.tour-content-wrap .left .title {
    line-height: 1.09;
    font-size: 55px;
    font-size: 40px;
}

.tour-content-wrap .right {
    width: 57.6%;
}

.tour-content-wrap .left h2 {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-size: 70px;
    line-height: 75px;

}

.tour-content-wrap .right .tour-table {
    margin-top: 50px;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
}

.tour-content-wrap .right .tour-table thead tr th {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white);
}

.tour-content-wrap .right .tour-table thead tr th .tour-header {
    display: flex;
    justify-content: space-between;
}

.tour-content-wrap .right .tour-table thead tr th .tour-header .note {
    font-family: 'Syne';
    font-weight: 400;
    color: #F6F6F6;
}

.tour-content-wrap .right .tour-table tbody tr td:nth-child(2) {
    text-align: right;
}

.tour-content-wrap .right .tour-table tbody tr td {
    padding: 20px 0;
    border-bottom: 1px solid var(--white);
}

.tour-content-wrap .right .tour-table tbody tr td a:hover {
    color: var(--default-color);
}

.tour-content-wrap .right .tour-table tbody tr td .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-content-wrap .right .tour-table tbody tr td .date {
    min-width: 200px;
}

.tour-info {
    display: flex;
    align-items: stretch;
}

.tour-info .tour-item {
    width: 50%;
    background-color: var(--default-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
}

.tour-info .tour-item:nth-child(1) {
    border-right: 1px solid var(--black);
}

.select-show-wrap {
    background-color: var(--default-color);
    text-align: center;
    color: var(--black);
    padding: 50px 0;
}

.select-show .heading {
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.select-show form {
    max-width: 1350px;
    margin: 0 auto;
}

.select-show form select {
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;

    appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 30px;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
}

.select-show form select option {
    background-color: var(--white);
    color: var(--black);
}

.event-tabs-wrap {
    background-color: var(--white);
    color: var(--black);
    position: relative;
}

.event-tabs {
    border: none;
}

.event-tabs .nav-item {
    width: 33.33%;
    background-color: var(--default-color);
    color: var(--black);

}

.event-tabs .nav-item .nav-link {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
    border: none !important;
    text-transform: uppercase;
    border-radius: 0;
    padding: 13px 10px;
    width: 100%;
}

.event-tabs .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.event-tabs .nav-item .nav-link:hover::before {
    transform: translateY(0);
}


.event-tabs .nav-item .nav-link.active {
    background-color: var(--white);
}

.event-tabs .nav-item .nav-link:hover,
.event-tabs .nav-item .nav-link:focus {
    border: none !important;
    border-color: transparent !important;
    outline: none;
    box-shadow: none;
}

.event-tabs-wrap .tab-content {
    padding: 0px 50px;
}

.event-tabs-wrap .tab-content .tab-item.tab-tickets {
    padding-top: 75px;
}

.event-tabs-wrap .tab-content .tab-item.tab-artists,
.event-tabs-wrap .tab-content .tab-item.tab-event-info {
    padding-top: 50px;
    margin-top: 80px;
}

.tab-event-info ul {
    padding: 0rem 0 1rem 20px;
}

.tab-event-info ul li {
    list-style-type: disc;
}   

.tab-pane.fade:not(.show) {
    opacity: 0;
    display: none;
}

.tab-artists .artists-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 75px 25px;
}

.tab-artists .artists-item .artists-featured-image img {
    /* aspect-ratio: 1/1; */
    /* object-fit: cover; */
    width: 100%;
    height: 100%;
}

.tab-artists .artists-item .artists-info {
    padding-top: 20px;
}

.tab-artists .artists-item .artists-info .content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.tab-artists .artists-item.expanded .artists-info .content {
    /* max-height: 700px; */
    max-height: 100%;
}

.tab-artists .artists-item .artists-info .content ul {
    margin-left: 0;
    padding: 0rem 0 1rem 20px;
}

.tab-artists .artists-item .artists-info .content ul li {
    list-style-type: disc;
}

.tab-artists .artists-item .title {
    font-weight: 700;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.tab-tickets .tickets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tab-tickets .ticket-item {
    padding: 50px 75px 50px 50px;
    position: relative;
    border: 1px solid var(--black);
    display: flex;
    flex-direction: column;
}

.tab-tickets .ticket-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-tickets .ticket-item .ticket-info {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.tab-tickets .ticket-item .title {
    text-transform: uppercase;
}

.tab-tickets .ticket-item .price {
    font-weight: 700;
    text-transform: uppercase;
}

.tab-tickets .ticket-item .button {
    background-color: var(--default-color);
    color: var(--black);
    border-color: var(--black);
}

.tab-tickets .ticket-item .button:hover {
    background-color: var(--black) !important;
    color: var(--white);
}

.tab-tickets .ticket-item .button::before,
.tab-tickets .ticket-item .button::after {
    display: none;
}

.tab-tickets .ticket-item.ticketing-map {
    grid-column: 1 / -1;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
    padding-bottom: 0;

    max-height: 400px;
    overflow: hidden;
    transition: all 0.5s;
}

.tab-tickets .ticket-item.ticketing-map::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    pointer-events: none;
}

.tab-tickets .ticket-item.ticketing-map.open {
    max-height: 100%;
    padding-bottom: 50px;
}

.tab-tickets .ticket-item.ticketing-map .content {
    max-width: 712px;
    margin: 20px auto 0;
}

.tab-tickets .ticket-item.ticketing-map .content img {
    aspect-ratio: 713/436;
    width: 100%;
    min-height: 436px;
}

.tab-tickets .ticket-item.ticketing-map .action {
    color: var(--white);
    text-transform: uppercase;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-weight: 700;
    cursor: pointer;
}

.tab-tickets .ticket-item.ticketing-map.open .action {
    position: relative;
    bottom: 0;
    padding-top: 20px;
}

/* Summersalt Color */


/* body.brand-summersalt .tour-info .tour-item,
body.brand-summersalt .select-show-wrap,
body.brand-summersalt .event-tabs .nav-item,
body.brand-summersalt .tab-tickets .ticket-item .button,
body.brand-summersalt .cta .cta-content {
    background-color: var(--gold-color);
} */

.TourPage .cta-single {
    padding-top: 25px;
}

body.brand-summersalt .cta-single {
    background-color: transparent;
}



/* End Single Tour */

/* Archive Tour */
.page-title {
    padding-top: 60px;
}

.TourHolderPage .page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/bg-page-title.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    z-index: -1;
    height: 340px;
}

.page-title .heading {
    text-align: center;
    padding-bottom: 50px;
    line-height: 1;
}

.filter-tours-wrap {}

.filter-tours-wrap .filter-tours {
    display: flex;
    gap: 25px;
    font-family: "Syne", sans-serif;
}

.filter-tours-wrap .filter-tours h5.heading {
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
}

.filter-tours-wrap .filter-tours .filter-wrap {
    width: 70%;
    border-top: 1px solid var(--white);
    padding-top: 25px;
}

.filter-tours-wrap .filter-tours .show-tours {
    width: 28.3%;
    border-top: 1px solid var(--white);
    padding-top: 25px;

    border-top: none;
}

/* End Archive Tour */


/* Filter */
.filter-bar {
    gap: 10px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.filter-button {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    min-height: 50px;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
}

.filter-dropdown {
    position: relative;
}

#filters .dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    min-width: 550px;
    z-index: 3;
    border-radius: 0;
}

.dropdown-content-date {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.dropdown-content-date .date-header {
    display: flex;
    color: var(--black);
    align-items: center;
    justify-content: space-between;

    grid-column: 1 / -1;
}

.dropdown-content-date .month-grid {
    display: grid;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: var(--white);
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-width: 550px;
    z-index: 1;
    border-radius: 0;
    margin-top: 10px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
}

#filters .dropdown-content.show {
    display: grid;
}

.check-option {
    display: flex;
    padding: 8px 12px;
    border: 1px solid #A5A5A5;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    background-color: var(--white);
    color: var(--black);
    transition: background 0.2s ease;
    min-height: 44px;
    align-items: center;
    font-family: 'Syne';
    font-size: 16px;
}

.check-option:hover {
    background-color: #f0f0f0;
}

.check-option input[type="checkbox"] {
    appearance: none;
    border: 1px solid #121212;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
}

.check-option input[type="checkbox"]:checked::before {
    content: '✓';
    font-size: 12px;
    position: absolute;
    top: -1px;
    width: 20px;
    height: 20px;
    background: var(--black);
    border-radius: 50%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.selected-filters {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--white);

    display: none;
}

#selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-tag {
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 35px;
    padding: 0 15px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

.selected-tag button {
    background: none;
    border: none;
    color: #ff5c5c;
    cursor: pointer;
    font-size: 23px
}

#reset-filters {
    padding: 5px 15px;
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 16px;
}

.date-header .year-item {
    width: 45px;
    height: 40px;
    border: 1px solid #A5A5A5;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-header .year-item.prev-year {
    border-radius: 20px 0 0 20px;
}

.date-header .year-item.next-year {
    border-radius: 0 20px 20px 0;
}

/* End filter */
.btn-tabs-tours {
    background: rgb(246 246 246 / 20%);
    border: 1px solid var(--white);
}

.btn-tabs-tours .nav-item {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.btn-tabs-tours .nav-item .nav-link {
    width: 100%;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-tabs-tours .nav-item .nav-link.active,
.btn-tabs-tours .nav-item .nav-link:hover {
    background-color: var(--white);
    color: var(--black);
}

.TourHolderPage .list-tours-wrap {
    padding-top: 50px;
}

#accordionFilter .accordion-item {
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--white);
}

#accordionFilter .accordion-button {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
}

#accordionFilter .accordion-button:not(.collapsed) {
    background-color: var(--white);
}

#accordionFilter .accordion-button:focus {
    border: none;
    box-shadow: none;
}

#accordionFilter .accordion-body {
    padding: 0;
}

.no-tours-message {
    grid-column: 1/-1;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
}

.hero-banner .banner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 60px 0 30px;
    text-transform: uppercase;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.about-content {
    display: flex;
    align-items: start;
    gap: 30px;
}

.about-content .col-content,
.about-content .col-image {
    width: 50%;
}

.about-content .col-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content:not(:has(.col-image)) .col-content {
    width: 100%;
}

.about-brands .list-brands {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-brands .brand-item {
    background: #222;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.about-brands .brand-item .col-logo {
    max-width: 20%;
    width: 100%;
}

.about-brands .brand-item .col-logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.about-brands .brand-item .col-content {
    max-width: 50%;
    width: 100%;
}

.about-brands .brand-item .col-content a:hover {
    text-decoration: underline;
}

.about-brands .brand-item .col-content .heading {
    font-weight: 700;
    margin-bottom: 10px;
}

.about-brands .brand-item .col-image {
    max-width: 30%;
    width: 100%;
}

.about-brands .brand-item .col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-brands {
    padding-top: 70px;
    margin-top: 70px;
    border-top: 1px solid var(--white);
}

.about-brands > .heading {
    /* font-size: 50px; */
    padding-bottom: 50px;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
}

.ContactUsPage .contact-content {
    display: flex;
    align-items: start;
    gap: 50px;
}

.ContactUsPage .contact-content .col-left,
.ContactUsPage .contact-content .col-right {
    max-width: 50%;
    width: 100%;
}

.ContactUsPage .contact-content .col-left .the-content {
    padding-bottom: 20px;
}

.ContactUsPage .contact-content .col-left form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ContactUsPage .contact-content #custom_items_details {
    padding-top: 30px;
}

.ContactUsPage .contact-content #custom_items_details .hd {
    font-size: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.ContactUsPage .contact-content #custom_items_details .txt {
    font-size: 16px;
} 

.ContactUsPage .contact-content .col-right .heading {
    padding-bottom: 30px;
    text-transform: uppercase;
}

.ContactUsPage .contact-content .col-right form input,
.ContactUsPage .contact-content .col-right form textarea {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.ContactUsPage .contact-content .col-right form textarea {
    min-height: 200px;
    padding: 10px 15px;
}

.ContactUsPage .contact-content .col-right form .textarea {
    grid-column: 1/-1;
}

.ContactUsPage .contact-content .col-right form input::placeholder,
.ContactUsPage .contact-content .col-right form textarea::placeholder {
    color: var(--white);
}

.ContactUsPage .contact-content .col-right form .btn-toolbar .action:hover {
    background-color: var(--white);
    color: var(--black);
}

.the-content:has(#uff) + form {
    display: none;
}

.EventPage .event-info {
    align-items: center;
}

.EventPage .event-info .col-image {
    width: 55%;
}

.EventPage .event-info .col-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 20px;
}

.EventPage .event-info .col-image img {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.EventPage .event-content-wrap {
    padding: 60px 0;
}

.EventPage .event-info:not(:has(.col-image)) .col-content {
    width: 100%;
}

.EventPage .event-list {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 60px 0;
    border-bottom: 1px solid var(--white);
}

.EventPage .event-list .event-item {
    border-color: var(--white);
    padding: 50px;
}

.EventPage .event-list .event-item .ticket-info {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.EventPage .event-list .event-item .ticket-info a {
    border-color: var(--white);
    background-color: var(--white);
    margin-top: 0;
}

.EventPage .event-list .event-item .ticket-info a:hover {
    border-color: var(--white);
}

.EventPage .event-list .event-item .ticket-info a:nth-child(1) {
    background-color: transparent;
    color: var(--white);
}

.EventPage .event-list .event-item .ticket-info a:nth-child(1):hover {
    background-color: var(--white) !important;
    color: var(--black);
}

.Page .content {
    padding: 60px 0;
}

.Page .content h3 {
    margin-bottom: 1rem;
}

.Page .content ul li {
    list-style: disc;
}

.CurrentTourHolderPage .list-tours-wrap,
.PastTourHolderPage .list-tours-wrap,
.PastTourByYearPage .list-tours-wrap {
    padding-top: 0;
    padding-bottom: 60px;
}

.cta-trip-wrapper {
    overflow: hidden;
    background-color: #000;
}
body.open-menu .cta-trip-wrapper {
    display: none;
}

.cta-trip {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 14px 0;

    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.cta-trip .item {
    display: flex;
    align-items: center;
    gap: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-trip .item img {
    object-fit: contain;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Modal Form */
#form-popup {
    padding: 20px;
}

#form-popup .modal-dialog {
    max-width: 942px;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

#form-popup .modal-content {
    border-radius: 0;
    position: relative;
    background-color: var(--black);
    border: 1px solid var(--white);
    color: var(--white);
    position: relative;
}

#form-popup .modal-content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}

#form-popup .modal-body {
    padding: 95px 75px 75px;
}

#form-popup .modal-body .heading-wrap {
    text-align: center;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#form-popup .modal-body .title {
    font-size: 99px;
    font-family: 'Cormorant Garamond';
    line-height: 75px;
    letter-spacing: -1px;
    font-weight: 600;
}

#form-popup .modal-body .intro {
    font-size: 16px;
}

#form-popup .modal-body .Actions .action {
    width: 100%;
}

body:has(#form-popup.show) .fade.show {
    background-color: rgb(0 0 0 / 50%);
}

/* End Modal Form */
.cta-signup-wrap {
    overflow: hidden;
    padding: 15px 0;
    margin-bottom: 15px;
    background-image: url(../images/bg-footer-marquee.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}

.cta-signup,
.cta-signup .item {
    display: flex;
    align-items: center;
    gap: 35px;
    overflow: hidden;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.cta-signup .item .title {
    font-size: 52px;
    line-height: 0.82;
    text-transform: uppercase;
}

.list-tours.listTourSwiper {
    display: flex;
    gap: 0;
}

.list-tours-wrap {
    position: relative;
}

.listTourSwiper {
    position: unset;
}

.listTourSwiper .swiper-button-next::after {
    display: none;
}

.listTourSwiper .swiper-button-prev::after {
    display: none;
}

.listTourSwiper .swiper-button-next,
.listTourSwiper .swiper-button-prev {
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    background-size: 20px;
    border: 1px solid #000;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/arror-next.svg');
}

.listTourSwiper .swiper-button-next {
    right: -25px;
}

.listTourSwiper .swiper-button-prev {
    left: -25px;
    transform: rotate(180deg);
}

.listTourSwiper .swiper-pagination {
    display: none;
}

.listTourSwiper .see-all-tours {
    position: relative;
}

.listTourSwiper .see-all-tours video {
    aspect-ratio: 369/703;
    aspect-ratio: 369 / 552;
    object-fit: cover;
}

.listTourSwiper .see-all-tours .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 700;
}


/* list-events */
.tour-dates-wrap .heading-wrap {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 0;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

.list-events .event-item {
    background-color: transparent;
    border-bottom: 1px solid #fff !important;
    position: relative;
}

.list-events .event-item .accordion-header {
    position: sticky;
    top: 0;
    z-index: 2;
    overflow: unset;
}

.list-events .event-item .accordion-button {
    padding: 18.5px 0;
    color: var(--white);
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.list-events .event-item .accordion-button:focus,
.list-events .event-item .accordion-button:active,
.list-events .event-item .accordion-button:not(.collapsed) {
    border: none;
}

.list-events .event-item .accordion-button.collapsed {
    background-color: transparent;
}

.list-events .event-item .accordion-button:not(.collapsed) {
    background-color: var(--orange-color);
    color: var(--black); 
    position: relative;
}

.list-events .event-item:has(.accordion-button[aria-expanded="true"])::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -25px;
    width: calc(100% + 50px);
    height: calc(100% + 25px);
    background-color: var(--orange-color);
}
.list-events .event-item:has(.accordion-button[aria-expanded="true"]) {
    margin-bottom: 25px;
}

.list-events .event-item .accordion-button::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/icon-plus.svg');
    background-position: center;
}

.list-events .event-item .accordion-button:not(.collapsed)::after {
    background-image: url('../images/icon-min.svg');
    background-size: 13px;
}

.list-events .event-item .accordion-button:focus {
    box-shadow: none;
}

.list-events .event-item .event-info {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 54%;
    justify-content: space-between;
}

.list-events .event-item .event-info .date {
    min-width: 100px;
    text-align: center;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.list-events .event-item .event-info .date .venue-mobile {
    display: none;

    font-size: 13px;
    font-weight: 400;
}

.list-events .event-item .event-info .location-venue {
    display: flex;
    gap: 10px;
}

.list-events .event-item .event-info .location-venue .separator,
.list-events .event-item .event-info .location-venue .venue {
    font-weight: 400;
}

.list-events .accordion-item .event-detail {
    padding-right: 50px;
}

.list-events .accordion-item .event-detail .badge {
    min-width: 170px;
    background: #F05433;
    border-radius: inherit;
    padding: 11.5px 5px;
    color: #121212;
    font-weight: 700;
    font-size: 15px;
}

.list-events .accordion-item .event-detail .badge.badge-new {
    background-image: url('../images/badge-new.png');
}

.list-events .accordion-item .event-detail .badge.badge-sold-out {
    background: linear-gradient(90deg, rgba(207, 194, 182, 0.5) 0%, rgba(207, 194, 182, 0.2) 100%), #121212 !important;
}

.list-events .accordion-body {
    padding: 0;
}

.accordion-collapse.show .event-tabs-wrap .sticky {
  position: sticky;
  top: 75px;
  z-index: 2;
  overflow: unset;
}

.event-tabs {
    border-radius: 0;
    border: none;

    position: relative;
    top: -1px;
    right: 0px;
    width: calc(100% + 1px);
}

ul.nav.nav-tabs.event-tabs::before {
    content: '';
    position: absolute;
    width: 100%;
    z-index: 9999999;
    bottom: -23px;
    height: 25px;
    background: linear-gradient(180deg, #F2F3F1 0%, #F2F3F1 8%, rgba(242, 243, 241, 0.75) 8%, rgba(242, 243, 241, 0.15) 70%, rgba(242, 243, 241, 0) 100%);
}

.event-tabs .nav-item.active, .event-tabs .nav-item:hover,
.event-tabs .nav-item.active, .event-tabs .nav-item a:hover {
    color: var(--black);
}

.event-tabs .nav-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--orange-color);
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
    border: none !important;
    text-transform: uppercase;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.event-tabs .nav-item a {
    padding: 18px 10px;
    display: flex;
    justify-content: center;
}

.event-tabs .nav-item::before, 
.event-tabs .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.event-tabs .nav-item.active::before, 
.event-tabs .nav-item:hover::before {
    transform: translateY(0);
}

.event-tabs .nav-item a {
    display: flex;
    justify-content: center;
    padding: 19px 10px;
}

.tab-tickets .tickets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tab-tickets .ticket-item {
    padding: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.tab-tickets .ticket-item .ticket-heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-tickets .ticket-item .ticket-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 25px;
    justify-content: end;
}

.tab-tickets .ticket-item .ticket-content .description {
    max-height: 50px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.tab-tickets .ticket-item .ticket-content .description p:has(+ ul) {
    padding-bottom: 0;
}

.tab-tickets .ticket-item.expanded .ticket-content .description {
    max-height: 400px;
}

.tab-tickets .ticket-item .ticket-content .description ul, 
.tab-tickets .ticket-item .ticket-content .description li {
    list-style: disc;
}

.tab-tickets .ticket-item .ticket-content .description ul {
    padding-left: 30px;
}

.tab-tickets .ticket-item {
    padding: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.tab-tickets .ticket-item .btn-wrap {
    display: flex;
    flex-direction: row;
    gap: 10.5px;
}

.tab-tickets .ticket-item .button {
    min-width: 180px;
    padding: 0 10px;
}

.tab-tickets .ticket-item .button-readmorre {
    background: transparent;
}

.tab-tickets .ticket-item .button-ticket {
    background-color: var(--orange-color);
}

.tab-artists .artists-item .button-readmorre {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    display: flex;
}
.tab-artists .artists-item .button-readmorre:hover {
    color: var(--black);
}

.tab-event-info .event-info-content {
    column-count: 2;
    column-gap: 25px;
}

.tab-event-info .event-info-content > * {
    break-inside: avoid;
}

.tab-event-info .event-info-content .event-info-item {
    padding: 25px 0 50px;
    border-top: 2px solid var(--black);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.tab-event-info .event-info-content .event-info-item .description a:hover {
    color: var(--black);
    text-decoration: underline;
} 

.tab-event-info .event-info-content .event-info-item .title {
    text-transform: unset;
    font-weight: 700;
}


/* End list-events */

.TourPage .cta-content {
    background-color: var(--orange-color);
}

/* Infinite scroll */
.brands-track {
    display: flex;
    align-items: center;
    gap: 150px;
    width: max-content;
    animation: brandScroll 60s linear infinite;
}

/* @keyframes brandScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
} */

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.TourPage .tour-content .right h2 {
    line-height: 1.09;
    font-size: 30px;
}

/* Not child */
.event-tabs-wrap.not-child .sticky {
    position: sticky;
    top: 0;
    z-index: 2;
    overflow: unset;
}

.bar-work .back-to-home {
    background: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.bar-work .back-to-home a {
    background-color: var(--black) !important;
    color: #fff;
    width: max-content;
    border: none;
}

.bar-work .bar-work-wraper {
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 80px;
}

.bar-work-wraper .img-responsive {
    width: 100%;
    margin-bottom: 50px;
    max-height: 430px;
    object-fit: cover;
}

.bar-work-wraper .heading {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
}

.bar-work-wraper p {
    float: left;
    width: 100%;
    line-height: 28px;
    color: #fff;
    font-size: 18px;
    margin: 0 0 30px;
}

.bar-work-wraper .footer-wrapper {
    width: 100%;
    border-top: solid 2px #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

.bar-work-wraper form .form-step {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.bar-work-wraper form .FormHeading {
    color: #E27E35;
    font-weight: 600;
    font-size: 20px;
    grid-column: 1/-1;
}

.bar-work-wraper form .middleColumn .text {
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    font-size: 17px;
    -webkit-appearance: none!important;
    appearance: none!important;
    outline: none;
    border: 1px solid #ccc;
    box-shadow: none !important;
    border-radius: 0px;
    text-align: left;
    background-color: transparent;
}

.bar-work-wraper form label {
    margin-bottom: 5px;
    font-weight: 700;
    display: inline-block;
}

.bar-work-wraper form .file {
    background: transparent;
    color: #fff;
    padding: 0;
    min-height: auto;
}

.bar-work-wraper form textarea.textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #FFF;
    padding: 10px 15px;
    color: #FFF;
}

.bar-work-wraper form #EditableTextField_73c63,
.bar-work-wraper form #EditableTextField_f6d93 {
    grid-column: 1/-1;
}

.bar-work-wraper form.userform .error.message {
    color: red;
    display: block;
    padding-top: 5px;
    font-size: 14px;
}































/* RESPONSIVE */

@media (min-width: 768px) {
    #accordionFilter .accordion-button {
        display: none !important;
    }

    #accordionFilter .accordion-collapse {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}


@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    .filter-tours-wrap .filter-tours {
        flex-direction: column;
    }

    .filter-tours-wrap .filter-tours .filter-wrap,
    .filter-tours-wrap .filter-tours .show-tours {
        width: 100%;
    }

    #filters .dropdown-content {
        grid-template-columns: 1fr;
        min-width: 100%;
    }

    .list-events .event-item:has(.accordion-button[aria-expanded="true"])::before {
        display: none;
    }
    .list-events .event-item:has(.accordion-button[aria-expanded="true"]) {
        margin-bottom: 0;
    }

}

@media (max-width: 1024px) {
    h1,
    .h1 {
        font-size: 52px;
        line-height: 0.82;
    }

    .home-heading {
        margin-bottom: 50px;
        height: 100px;
    }

    .home-heading-content .heading {
        max-width: 400px;
    }

    .list-tours {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-top .left,
    .footer-top .right {
        width: 100%;
        gap: 35px;
    }

    .footer-top .right {
        padding-top: 35px;
        gap: 35px;
    }

    .footer-top .right .content {
        align-items: end;
    }

    .footer-top .right .content .links ul {
        flex-direction: column;
        gap: 0px;
        text-align: left;
        align-items: start;
    }

    .tab-tickets .ticket-item .button {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .ss-border-top {
        flex-direction: column;
    }

    .ss-border-top .item {
        padding-top: 15px;
    }

    .ss-border-top>.left,
    .ss-border-top>.right {
        width: 100%;
    }

    .ss-border-top>.left {
        gap: 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .list-tours-wrap {
        padding-top: 50px;
    }

    .list-tours-content .heading {
        margin-bottom: 25px;
    }

    .HomePage .event-ss {
        display: none;
    }

    .cta .cta-content {
        flex-direction: column;
        gap: 15px;
    }

    .cta .cta-content .heading {
        max-width: 273px;
        text-align: center;
    }

    .get-on-list {
        padding: 50px 0;
    }

    .get-on-list-content {
        padding-top: 15px;
    }

    .get-on-list-content .left {
        flex-direction: column;
        gap: 20px;
    }

    .get-on-list-content .left .content {
        max-width: 100%;
    }

    .our-brands-content {
        padding-top: 15px;
    }

    .footer-top .left {
        padding-top: 20px;
    }

    .footer-top .left .heading {
        font-size: 40px;
    }

    .icon-bar-menu {
        width: 40px;
        height: 40px;
        border: 1px solid var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.open-menu .icon-bar-menu {
        background-color: var(--white);
    }

    body.open-menu .icon-bar-menu img {
        content: url('../images/icon_close.png');
    }

    .header .header-content {
        justify-content: end;
    }

    .header .header-content>.button {
        display: none;
    }

    .header .header-content>.logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .offcanvas-menu .offcanvas-body {
        padding: 100px 25px 32px;
        border: none;
        background-color: var(--black);
    }

    .offcanvas-menu .nav-main li a {
        font-size: 50px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content .col-content, 
    .about-content .col-image {
        width: 100%;
    }

    .about-brands .brand-item {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding: 40px 20px;
    }

    .about-brands .brand-item .col-logo,
    .about-brands .brand-item .col-content,
    .about-brands .brand-item .col-image {
        max-width: 100%;
    }

    .about-brands .brand-item .col-logo img {
        max-width: 300px;
    }

    .ss-border-top .right .btn-readmore {
        margin: 20px auto 0 0;
    }

    .EventPage .event-info .col-image,
    .EventPage .event-info .col-content {
        width: 100%;
    }

    .EventPage .event-list {
        grid-template-columns: 1fr 1fr;
    }

    .HomePage .offcanvas-menu .offcanvas-body {
        background: var(--black);
        padding: 0;
    }

    #form-popup .modal-body {
        padding: 70px 50px 50px;
    }

    #form-popup .modal-body .title {
        font-size: 60px;
        line-height: 1;
    }

    .list-events .event-item .event-info {
        flex-direction: column;
        align-items: start;
        gap: 0;
        width: 80%;
    }

    .tour-dates-wrap .container {
        padding: 0;
    }

    .list-events .event-item .event-info .location-venue .separator, 
    .list-events .event-item .event-info .location-venue .venue {
        display: none;
    }

    .list-events .event-item .accordion-button {
        padding: 15px 10px;
        font-size: 13px;
    }

    .list-events .event-item .event-info .date {
        font-size: 13px;
        text-align: left;
    }

    .tab-tickets .ticket-item .button {
        padding: 0 10px;
        min-width: auto;
    }

    .event-tabs-wrap .tab-content {
        padding: 0 25px;
    }

    .tab-tickets .ticket-item {
        padding: 20px;
    }

    .tab-artists .artists-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px 25px;
    }

    .accordion-collapse.show .event-tabs-wrap .sticky {
        top: 59px;
    }

    .list-events .event-item:has(.accordion-collapse.collapsing) .date .venue-mobile,
    .list-events .event-item:has(.accordion-collapse.show) .date .venue-mobile {
        display: flex;
    }

    .list-events .event-item:has(.accordion-collapse.collapsing) .event-detail,
    .list-events .event-item:has(.accordion-collapse.show) .event-detail {
        display: none;
    }

    .tour-dates-wrap .heading-wrap {
        text-align: left;
        padding: 15px 10px;
    }

    .tour-dates-wrap .heading-wrap h4 {
        font-size: 18px;
    }

    .bar-work-wraper form .form-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bar-work .bar-work-wraper {
        padding-top: 60px;
    }

}

@media (max-width: 768px) {
    h3 {
        font-size: 24px;
        line-height: 23px;
    }

    .tour-info {
        flex-direction: column;
    }

    .tour-info .tour-item {
        width: 100%;
    }

    .tour-info .tour-item:nth-child(1) {
        border: none;
        border-bottom: 1px solid var(--black);
    }

    .hero-banner .banner-content .img-desktop {
        display: none;
    }

    .hero-banner .banner-content .img-mobile {
        display: block;
    }

    .tour-content-wrap .right .tour-table tbody tr td .info {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .event-tabs-wrap .tab-content {
        padding: 0 10px;
    }

    .tab-event-info .accordion-button {
        padding: 20px 10px;
    }

    .tab-event-info .accordion-body {
        padding: 0 15px 20px;
    }

    .tour-content-wrap .left h2 {
        font-size: 51px;
        line-height: 1.1;
    }

    .tour-content-wrap .right .tour-table {
        font-size: 13px;
        line-height: 1.2;
    }

    .event-tabs .nav-item .nav-link {
        font-size: 14px;
    }

    .tab-event-info .accordion-button {
        font-size: 18px;
    }

    .tab-artists .artists-content {
        grid-template-columns: 1fr;
        gap: 50px 25px;
    }

    .tab-tickets .tickets-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tab-tickets .ticket-item {
        padding: 25px;
        gap: 20px;
    }

    .tab-tickets .ticket-item .title {
        padding-right: 40px;
        font-size: 18px;
    }

    .tab-tickets .ticket-item .price {
        font-size: 14px;
    }

    .tab-tickets .ticket-item .ticket-content {
        font-size: 14px;
    }

    .tab-tickets .ticket-item.ticketing-map {
        max-height: 100%;
        padding-bottom: 25px;
    }

    .tab-tickets .ticket-item.ticketing-map .content img {
        min-height: auto;
        height: auto;
    }

    .tab-tickets .ticket-item.ticketing-map .action {
        display: none;
    }

    .tab-tickets .ticket-item.ticketing-map .title {
        padding-left: 0;
    }

    .filter-tours .filter-bar {
        grid-template-columns: 1fr;
    }

    .btn-tabs-tours .nav-item .nav-link {
        font-size: 14px;
        min-height: 45px;
        padding: 0 10px;
    }

    .check-option {
        width: 100%;
        font-size: 14px;
        min-height: 40px;
    }

    .dropdown-content-date .month-grid {
        min-width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .filter-button {
        font-size: 14px;
        min-height: 45px;
    }

    .TourHolderPage .list-tours-wrap {
        padding-top: 15px;
    }

    .brands-swiper .brand-item img {
        max-height: 100px;
    }

    .hero-banner .banner-image {
        aspect-ratio: 16/9;
        height: auto;
    }

    .listTourSwiper .swiper-button-next, .listTourSwiper .swiper-button-prev {
        top: 0;
        transform: none;
    }

    .listTourSwiper .swiper-button-next {
        right: 0;
    }

    .listTourSwiper .swiper-button-prev {
        left: auto;
        right: calc(0% + 60px);
    }

    .list-tours-content .heading {
        /* padding-bottom: 30px; */
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .cta-signup .item .title {
        font-size: 24px;
    }

    .cta-signup, .cta-signup .item {
        gap: 25px;
    }

    .tab-tickets .ticket-item .icon {
        width: 40px;
        height: 40px;
    }

    .tab-tickets .ticket-item .icon svg {
        width: 25px;
    }

    .accordion-collapse.show .event-tabs-wrap .sticky {
        top: 68px;
    }

    .list-events .accordion-item .event-detail {
        padding-right: 22px;
    }

    .list-events .accordion-item .event-detail .badge {
        font-size: 10px;
        min-width: 105px;
        padding: 6px 5px;
    }

    .list-events .event-item .accordion-button::after {
        right: 5px;
    }

    .event-tabs .nav-item a {
        font-size: 13px;
        padding: 8px 5px;
    }

    .tab-tickets .ticket-item .button {
        width: 100%;
        font-size: 14px;
    }

    .tab-artists .artists-item,
    .tab-artists .artists-item .button-readmorre {
        font-size: 14px;
    }

    .tab-artists .artists-item .title {
        font-size: 18px;
    }

    .tab-event-info .event-info-content {
        column-count: 1;
        column-gap: 25px;
    }

    .tab-event-info .event-info-content .event-info-item {
        gap: 20px;
        font-size: 14px;
    }

    .tab-event-info .event-info-content .event-info-item .title {
        font-size: 18px;
    }

    .event-tabs-wrap .tab-content .tab-item.tab-artists, 
    .event-tabs-wrap .tab-content .tab-item.tab-event-info {
        padding-top: 50px;
        margin-top: 0;
    }

    .accordion-collapse.show .event-tabs-wrap .sticky {
        top: 58px;
    }

    .event-tabs-wrap .tab-content .tab-item.tab-tickets {
        padding-top: 25px;
    }

    .brands-track {
        gap: 100px;
    }

    .ContactUsPage .contact-content {
        flex-direction: column;
    }

    .ContactUsPage .contact-content .col-left, 
    .ContactUsPage .contact-content .col-right {
        max-width: 100%;
    }

    .ContactUsPage .breadcrumb {
        padding-top: 0;
    }



}

@media (max-width: 550px) {
    .container {
        padding: 0 10px;
    }

    .list-tours {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-top .right .menu li a {
        font-size: 18px;
    }

    .footer-top .right .content .links ul a {
        font-size: 13px;

    }

    .offcanvas-menu .offcanvas-body {
        padding: 100px 10px 32px;
        border: none;
        background-color: var(--black);
    }

    #form-popup .modal-body {
        padding: 50px 30px;
    }

    #form-popup .modal-body .title {
        font-size: 35px;
    }

    #form-popup .modal-content .close {
        top: 10px;
        right: 10px;
    }

    #form-popup .modal-body .heading-wrap {
        padding-bottom: 30px;
    }

    #form-popup .modal-content {
        max-height: 566px;
        overflow-y: scroll;
    }

    form #consent label {
        font-size: 14px;
    }

    .cta-trip .item a {
        font-size: 14px;
    }

    .footer-top .right .content .copyright span {
        display: block;
        text-align: right;
    }

    .footer-top .right .content .copyright .hide-mobile {
        display: none;
    }

    .cta-signup-wrap {
        display: block;
    }

    .tab-tickets .ticket-item {
        padding: 15px;
    }

    .tab-artists .artists-item .artists-info .content {
        max-height: 105px;
    }

    .home-heading-content .heading {
        font-size: 42px;
    }

    .our-brands-content>.heading {
        margin-top: 15px;
    }

    .brands-track {
        gap: 50px;
    }

    .home-heading {
        height: 60px;
    }

    .listTourSwiper .swiper-button-next,
    .listTourSwiper .swiper-button-prev {
        display: none;
    }

    .listTourSwiper {
        padding-bottom: 30px;
    }

    .listTourSwiper .swiper-pagination {
        display: flex;
        justify-content: center;
        bottom: 0;
    }

    .listTourSwiper .swiper-pagination .swiper-pagination-bullet {
        background: #fff;
    }

}

@media (max-width: 400px) {
    h1,
    .h1 {
        font-size: 44px;
        line-height: 0.82;
    }

    .home-heading {
        margin-bottom: 20px;
        height: 100px;
    }

    .home-heading-content .heading {
        transform: translateY(-85px);
    }

}







/* =============== */
.TourPage .tour-info .tour-item,
.TourPage .cta-content,
.TourPage .list-events .event-item:has(.accordion-button[aria-expanded="true"])::before,
.TourPage .list-events .event-item .accordion-button:not(.collapsed),
.TourPage .event-tabs .nav-item,
.TourPage .list-events .accordion-item .event-detail .badge,
.TourPage .tab-tickets .ticket-item .button-ticket {
    background-color: var(--tour-theme-color);
}

.list-tours-content {
    position: relative;
}

/* overlay full */
.swipe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* show */
.swipe-overlay.active {
    opacity: 1;
}

/* icon */
.swipe-icon img {
    width: 40vw;
    animation: swipeMove 1.2s ease-in-out infinite alternate;
    filter: brightness(0) invert(1);
}

/* animation qua lại */
@keyframes swipeMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}





