/* Reset CSS */

:root {
    --main-color: #f16d15;
    --warning-color: rgb(231, 33, 19);
    --close-color: #cc0707;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Common */

.text-white {
    color: #fff !important;
}

.row {
    margin-left: -8px;
    margin-right: -8px;
}

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

.col {
    float: left;
    padding-left: 8px;
    padding-right: 8px;
}

.col-half {
    width: 50%;
}

.col-full {
    width: 100%;
}

.col-third {
    width: 33.33333%;
}

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

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

.text-center {
    text-align: center !important;
}

.btn {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 11px 16px;
    display: inline-block;
    margin-top: 15px;
    border: none;
    font-size: 15px;
}

.btn:hover {
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
}

.pull-right {
    float: right !important;
}


/* Main */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 46px;
    background-color: #000;
    z-index: 1;
}

#nav,
#nav>li {
    display: inline-block;
}

#nav li {
    position: relative;
}

#nav li .subnav a {
    color: #000;
    line-height: 38px;
}

#nav li a {
    text-decoration: none;
    line-height: 46px;
    padding: 0 24px;
    font-size: 13pt;
    display: block;
}

#nav>li>a {
    color: white;
    text-transform: uppercase;
}

#nav .subnav li:hover a,
#nav>li:hover>a {
    background-color: var(--main-color);
    color: #fff;
}

#nav,
.subnav {
    list-style-type: none;
}

#nav li .subnav {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#nav li:hover .subnav {
    display: block;
}

#header .mobile-search-btn {
    position: absolute;
    top: 0;
    right: 0;
}

#header .mobile-search-btn,
#header .search-btn {
    float: right;
    padding: 0 21px;
}

#header .mobile-search,
#header .nav-search {
    color: #fff;
    line-height: 46px;
    font-size: 18px;
}

#header .search-btn:hover {
    background-color: var(--main-color);
    cursor: pointer;
}

#header .mobile-search-btn {
    display: none;
}

#slider {
    margin-top: 46px;
    position: relative;
}

#slider .slider-img {
    width: 100%;
    height: auto;
}

#slider .text-content {
    position: absolute;
    color: #fff;
    bottom: 80%;
    width: 100%;
    text-align: center;
}

#slider .text-heading {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 15px;
}

#slider .text-description {
    font-size: 18px;
}


/* #content {} */

#content .content-section {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 0 112px;
    padding-left: 16px;
    padding-right: 16px;
}

#content .section-heading {
    font-size: 30px;
    letter-spacing: 4px;
    text-align: center;
    font-weight: 500;
    margin: 10px 0;
    text-transform: uppercase;
}

#content .section-sub-heading {
    font-style: italic;
    color: gray;
    text-align: center;
    margin: 15px 0px;
}

#content .about-text {
    margin: 20px 0px;
    text-align: justify;
}

#content .member-img {
    width: 90px;
    height: auto;
    border-radius: 100%;
    margin-top: 15px;
}

#content .member-item {
    float: left;
    width: 14.28%;
}

#content .member-name {
    font-size: 15px;
    font-weight: 500;
}

#content .members-list {
    margin-top: 34px;
    overflow: hidden;
}


/* Tour section */

#content .tour-section {
    background-color: #000;
}

.ticket-list li {
    background-color: #fff;
    padding: 9px 16px;
    border-bottom: 1px solid #ddd;
}

.ticket-list {
    margin-top: 40px;
    font-size: 15px;
    color: #757575;
    list-style: none;
}

.ticket-list .sold-out {
    background-color: var(--warning-color);
    color: #fff;
    padding: 3px 8px;
    margin-left: 16px;
    border-radius: 30px;
}

.ticket-list .quantity {
    float: right;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    text-align: center;
    line-height: 24px;
    margin-top: -2px;
}

.places-list {
    margin-top: 16px;
}

.place-item {
    float: left;
    width: 33.33333%;
    padding: 0 8px;
}

.place-img {
    width: 100%;
    display: block;
}

.place-img:hover {
    opacity: 0.6;
}

.place-body {
    background-color: #fff;
    padding: 16px;
    font-size: 15px;
}

.place-heading {
    font-size: 15px;
    /* font-weight: 600; */
}

.place-time {
    margin-top: 15px;
    color: #757575;
}

.place-desc {
    margin-top: 15px;
    line-height: 1.4;
}

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

.modal.open {
    display: flex;
}

.modal-container {
    width: 900px;
    max-width: calc(100% - 32px);
    margin: 0 16px;
    background-color: #fff;
    min-height: 200px;
    position: relative;
    animation: ModalFadeIn ease 0.4s;
}

.modal-header {
    background-color: var(--main-color);
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    letter-spacing: 3px;
}

.modal-heading-icon {
    margin-right: 16px;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 25px;
    padding: 5px;
}

.modal-close:hover {
    background-color: var(--close-color);
    color: #fff;
}

.modal-body {
    padding: 16px;
}

.modal-label {
    display: block;
    font-size: 15px;
    margin-bottom: 12px;
}

.modal-input {
    width: 100%;
    border: #ccc solid 1px;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 24px;
}

#buy-tickets {
    width: 100%;
    background: var(--main-color);
    border: none;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding: 15px;
    cursor: pointer;
}

#buy-tickets:hover {
    opacity: 0.9;
}

.modal-footer {
    padding: 16px;
    text-align: right;
}

.modal-footer a {
    color: rgb(17, 126, 250)
}

@keyframes ModalFadeIn {
    from {
        opacity: 0.3;
        transform: translateY(-140px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* contact-section */

.contact-content {
    margin-top: 48px;
}

.contact-infor {
    font-size: 18px;
    line-height: 1.6;
}

.contact-infor i[class*="bi"] {
    width: 40px;
    display: inline-block;
}

.contact-form input {
    font-size: 15px;
}

.contact-form .form-control {
    padding: 10px;
    border: 1px #ccc solid;
    border-radius: 3px;
    width: 100%;
}

.map-section img {
    width: 100%;
}

#footer {
    padding: 64px 16px;
}

#footer .socials-list a {
    font-size: 24px;
    color: rgb(80, 80, 80);
}

#footer .copyright a:hover,
#footer .socials-list a:hover {
    color: var(--main-color);
}

#footer .copyright {
    margin-top: 15px;
    color: rgb(80, 80, 80);
}

#footer .copyright a {
    color: rgb(80, 80, 80);
}