* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ============COMMON============ */

:root {
    --header-height: 46px;
}

.white {
    color: #fff !important;
}

html {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.background-black {
    background-color: #000 !important;
}

.mt-8 {
    margin-top: 8px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.row {
    margin: 0 -8px;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.col {
    float: left;
    padding: 0 8px;
}

.col-full {
    width: 100%;
}

.col-half {
    width: 50%;
}

.col-third {
    width: 33.33333%;
}

.btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.btn:hover {
    background: #ccc;
    color: #000;
}

.height-auto {
    height: auto !important;
    animation: anim-mobile-menu 0.8s ease;
    -webkit-animation: anim-mobile-menu 0.8s ease;
}


/* ============MAIN============ */

.main {
    width: 100%;
    height: auto;
}

.header {
    height: var(--header-height);
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

ul.navigator {
    display: inline-block;
    font-weight: 580;
}

ul.navigator::after {
    content: "";
    display: block;
    clear: both;
}

ul.navigator .nav-arrow-down {
    font-size: 14px;
}

ul.navigator li {
    display: inline-block;
    line-height: var(--header-height);
    cursor: pointer;
    position: relative;
    line-height: 100%;
}

ul.sub-nav>li:hover>a,
ul.navigator>li:hover>a {
    color: #000;
    background-color: #ccc;
    transition: 0.2s linear;
}

ul.navigator>li:hover>.sub-nav {
    display: block;
}

ul.navigator .sub-nav>li>a,
ul.navigator>li>a {
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 22px;
    color: #fff;
    display: block;
    transition: 0.8s ease-out;
    line-height: 100%;
}

ul.navigator .sub-nav>li>a {
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
}

.sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
    background-color: #fff;
    transition: all 0.2 linear;
    min-width: 160px;
}

.sub-nav>li {
    width: 100%;
}

.sub-nav>li>a {
    text-decoration: none;
    text-transform: capitalize;
    font-family: Helvetica, Arial, sans-serif;
    padding: 0px 14px;
    display: block;
    transition: 0.2s ease-out;
    line-height: 38px;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -ms-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
}

.header .mobile-menu-switcher,
.header-search {
    height: var(--header-height);
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}

.header .mobile-menu-switcher {
    display: none;
}

.header-search .search-input {
    display: inline-block;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 3.5px 20px;
    max-width: 150px;
    width: 80%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    height: 100%;
    font-size: 10px;
}

.header-search .search-input:focus {
    border: 3px solid rgb(4, 247, 12);
    box-shadow: 0 4px 10px 0 rgba(154, 248, 3, 0.2), 0 4px 20px 0 rgba(208, 253, 5, 0.19);
    font-size: inherit;
}

.header-search .search-submit {
    display: inline-block;
    padding: 0 20px;
    border: 1px solid transparent;
    background-color: transparent;
    color: #ccc;
    outline: none;
    height: var(--header-height);
    font-size: 1rem;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.header-search .search-submit:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.slider {
    margin-top: var(--header-height);
    position: relative;
}

.slider img {
    width: 100%;
}

.slider .text-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 32px;
    background: rgba(0, 0, 0, 0.5);

}


.slider .text-area .title {
    font-size: 24px;
    text-shadow: 0 0 1px black;
}

.slider .text-area .description {
    margin-top: 24px;
    font-size: 16px;
    text-shadow: 0 0 1px black;
}

.content {}

.content .section {
    padding: 80px 16px;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.wrapper-section {
    width: 100%;
    background-color: transparent;
}

.content .section .section-heading {
    letter-spacing: 3px;
    font-weight: 450;
    text-align: center;
    margin-top: 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 30px;
}

.content .section .section-sub-heading {
    opacity: 0.7;
    text-align: center;
    font-family: "Lato", sans-serif;
    margin: 15px 0;
    font-style: italic;
}

.content .section .section-content {
    text-align: justify;
    line-height: 1.4;
    margin: 15px 0;
}

.content .member-list {
    text-align: center;
    padding: 32px 0;
}

.content .member-item .member-name {
    margin: 15px 0;
}

.content .member-item .member-avatar {
    width: 60%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.content .list-ticket {
    list-style: none;
}

.content .list-ticket>.ticket-detail {
    background-color: #fff;
}

.content .list-ticket .ticket-detail {
    padding: 8px 16px;
    border-bottom: 1px solid #ddd;
    color: #757575;
}

.content .list-ticket .ticket-sold-out {
    color: #fff !important;
    background-color: #f44336 !important;
    margin-left: 15px;
    display: inline-block;
    padding: 0px 8px;
}

.content .list-ticket .ticket-sold-in {
    float: right;
    color: #fff;
    padding: 0 8px;
    border-radius: 50%;
    margin-right: 16px;
    display: inline-block;
    text-align: center;
    background-color: #000;
    font-size: 16px;
}

.content .list-location {
    padding: 32px 0 80px 0;
}

.content .list-location .location-detail {
    border: 1px solid black;
    padding-bottom: 50px;
}

.content .location-detail img {
    width: 100%;
}

.content .location-detail img:hover {
    opacity: 0.6;
}

.content .location-detail .detail-wrapper {
    padding: 25px 10px 15px 10px;
    background-color: #fff;
}

.content .detail-wrapper .location-name {
    font-size: 15px;
}

.content .detail-wrapper .start-date {
    margin-top: 15px;
    opacity: 0.6;
}

.content .detail-wrapper .description {
    margin-top: 15px;
}

.content .detail-wrapper .buy-ticket {
    margin-top: 15px;
    color: #fff;
    padding: 8px 16px;
    display: inline-block;
    text-decoration: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal.modal-open {
    display: flex;
}

.modal.modal-close {
    display: none;
}

.modal .modal-container {
    width: calc(100% - 35px);
    max-width: 900px;
    background-color: #ddd;
    position: relative;
    animation: anim-open-modal 1s ease;
    -webkit-animation: anim-open-modal 1s ease;
    transition: all 1.5s linear;
}

.modal .modal-header {
    background-color: #009688;
    text-align: center;
    padding: 32px 16px;
    letter-spacing: 5px;
    color: white;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
}

.modal .modal-header .modal-title {
    margin: 16px;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    margin: 10px 0;
}

.modal .modal-header .modal-close-btn {
    float: right;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    opacity: 0.8;
    font-size: 18px;
}

.modal .modal-header .modal-close-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
}

.modal .modal-body {
    padding: 20px 0;
    padding: 20px;
}

.modal .modal-body .labe-icon {
    padding: 4px;
}

.modal .modal-body label,
input,
.modal-submit {
    display: block;
    width: 100%;
    font-weight: 500;
}

.modal .modal-body label {
    padding: 5px 2px;
    font-weight: 700;
}

.modal .modal-body input {
    margin-bottom: 25px;
    padding: 12px;
    outline: none;
    border: 1px solid #ccc;
}

.modal .modal-submit {
    background-color: #009688;
    padding: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 16px 0;
    cursor: pointer;
}

.modal .modal-submit:hover {
    background-color: #009687ab;
}

.modal .modal-help {
    text-align: right;
    margin: 15px 0;
}

.contact-wrapper {
    padding: 32px 0;
}

.contact-detail i {
    width: 30px;
    display: inline-block;
}

.contact-detail a {
    opacity: 0.8;
    text-decoration: none;
}

.contact-detail a:hover {
    opacity: 1;
    font-weight: bolder;
}

.contact-detail {
    line-height: 1.5;
    font-size: 18px;
}

.contact-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
}

.contact-form .contact-submit {
    text-align: end;
}

.contact-form .contact-submit-btn {
    margin: 16px 0;
    padding: 8px 16px;
}

.footer {
    padding: 64px 16px 22px 16px;
    text-align: center;
}

.footer>p>a {
    text-decoration: none;
}

.footer>p>a:hover {
    font-weight: bolder;
}

.footer .list-social a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    display: inline-block;
    transition: all 0.2s linear;
}

.footer .list-social a:hover {
    color: rgba(0, 0, 0, 0.8);
    font-size: 22px;
}

.footer p {
    padding: 20px 0;
    font-size: 0.9rem;
    font-style: italic;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
}