/* Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: Helvetica, Arial, sans-serif;
  /* font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; */
}

/* Variable */
:root {
  --header-height: 46px;
  --body-bg-light-color: #fff;
  --body-bg-dark-color: #000;
}

/* Common */
.clear {
  clear: both;
}

.text-white {
  color: #fff !important;
}
/*  */
.text-center {
  text-align: center !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-16 {
  margin-bottom: 16px !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-2 {
  width: 50%;
}

.col-3 {
  width: 33.33333%;
}

.col-full {
  width: 100%;
}

.float-right {
  float: right;
}

.btn {
  text-decoration: none;
  color: #fff;
  background-color: #000;
  padding: 11px 16px;
  display: inline-block;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.btn:hover {
  color: #000;
  background-color: #ccc;
}

/* Main */
#main {
}

#header {
  height: var(--header-height);
  background-color: #000;
  z-index: 1;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

#header .mobile-menu-btn,
#header .search-btn {
  padding: 0 24px;
  float: right;
}

#header .mobile-menu-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

#header .menu-icon,
#header .search-icon {
  line-height: var(--header-height);
  font-size: 14px;
  color: #fff;
}

#header .search-btn:hover {
  background-color: #ff4336;
  cursor: pointer;
}

#header .mobile-menu-btn:hover {
  background-color: #ccc;
}

#header .mobile-menu-btn:hover .menu-icon {
  color: #000;
}

#nav {
  display: inline-block;
}

#nav > li {
  display: inline-block;
}

#nav li {
  position: relative;
}

#nav > li > a {
  color: #fff;
  text-transform: uppercase;
}

#nav li a {
  text-decoration: none;
  line-height: var(--header-height);
  padding: 0 24px;
  display: block;
}

#nav > li:hover > a,
#nav .subnav li:hover a {
  background-color: #ccc;
  color: #000;
}

#nav .nav-arrow-down {
  font-size: 14px;
}

#nav .subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: #fff;
  list-style-type: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#nav li:hover .subnav {
  display: block;
}

#nav .subnav a {
  color: #000;
  display: block;
  padding: 0 12px;
  line-height: 38px;
}

#slider {
  position: relative;
  margin-top: var(--header-height);
  padding-top: 50%;
  /* height: calc(100vw / 2);  */
  background: url("../img/slider/slider-1.jpg") top center / cover no-repeat;
}

#slider .text-content {
  position: absolute;
  color: #fff;
  bottom: 47px;
  /* Cách 1 */
  /* left: 50%;
    transform: translateX(-50%); */

  /* Cách 2 */
  width: 100%;

  /* Cách 3 */
  /* left: 0;
    right: 0; */
  text-shadow: 0 0 1px #000;
}

#slider .text-heading {
  font-weight: 500;
  font-size: 24px;
}

#slider .text-decription {
  font-size: 15px;
  margin-top: 25px;
}

#content {
}

#content .content-section {
  max-width: 800px;
  padding: 64px 16px 112px;
  margin-left: auto;
  margin-right: auto;
}

#content .section-heading {
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
}

#content .section-sub-heading {
  font-size: 15px;
  font-style: italic;
  margin: 15px 0;
  opacity: 0.6;
}

#content .about-text {
  font-size: 15px;
  text-align: justify;
  margin: 15px 0;
  line-height: 1.4;
}

#content .members-list {
  padding-top: 32px;
}

#content .member-name {
  margin: 15px 0;
  font-size: 15px;
}

#content .member-img {
  margin-bottom: 16px;
  border-radius: 4px;
  /* width: 60%; */
  width: 154px;
}

/* Begin: Tour section */
.tour-section {
  background: #000;
}

.tickets-list {
  background-color: #fff;
  margin-top: 40px;
  list-style-type: none;
}

.tickets-list li {
  font-size: 15px;
  padding: 11px 16px;
  border-bottom: 1px solid #ddd;
  color: #757575;
}

.tickets-list .sold-out {
  margin-left: 16px;
  background-color: #f44336;
  padding: 3px 8px;
  color: #fff;
}

.tickets-list .quantity {
  color: #fff;
  float: right;
  background-color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  line-height: 24px;
  text-align: center;
  margin-top: -3px;
}
/* End: Tour section */

/* Begin: Places */
.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-size: 600;
}

.place-time {
  margin-top: 15px;
  color: #757575;
}

.place-desc {
  margin-top: 15px;
  line-height: 1.4;
}
/* End: Places */

/* Begin: Contact */
.contact-content {
  margin-top: 48px;
}

.contact-info {
  font-size: 18px;
  line-height: 1.5;
}

.contact-info i[class*="ti-"] {
  width: 30px;
  display: inline-block;
}

.contact-info a {
  color: #101aef;
  opacity: 0.8;
}

.contact-info a:hover {
  opacity: 1;
}

.contact-form {
  font-size: 15px;
}

.contact-form .form-control {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
}
/* End: Contact */

/* Begin: Map */
.map-section img {
  width: 100%;
}
/* End: Map */

/* Begin: Footer */
#footer {
  padding: 64px 16px;
  text-align: center;
}

#footer .socials-list {
  font-size: 24px;
}

#footer .socials-list a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

#footer .socials-list a:hover,
#footer .copyright a {
  color: rgba(0, 0, 0, 0.4);
}

#footer .copyright {
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.6);
}

#footer .copyright a {
  color: rgba(0, 0, 0, 0.6);
}

/* End: Footer */

/* Begin: Modal */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  display: none;
}

.modal.open {
  display: flex;
}

.modal-container {
  background-color: #fff;
  width: 900px;
  max-width: calc(100% - 32px);
  min-height: 200px;
  position: relative;
  animation: modalFadeIn ease 0.5s;
}

.modal-close {
  background-color: #009688;
  color: #fff;
  padding: 16px;
  position: absolute;
  right: 0;
  cursor: pointer;
}

.modal-close:hover {
  color: #000;
  background-color: #ccc;
}

.modal-header {
  height: 130px;
  background-color: #009688;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 6px;
  font-weight: 500;
  font-size: 30px;
}

.modal-heading-icon {
  margin-right: 16px;
}

.modal-body {
  padding: 16px;
}

.modal-label {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}

.modal-input {
  border: 1px solid #ccc;
  width: 100%;
  font-size: 15px;
  padding: 10px;
  margin-bottom: 24px;
}

#buy-tickets {
  width: 100%;
  padding: 16px 0;
  background-color: #009688;
  border: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

#buy-tickets:hover {
  opacity: 0.9;
}

.modal-footer {
  padding: 16px;
  text-align: right;
}

.modal-footer a {
  color: #2196f3;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End: Modal */
