* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.text-ct {
  text-align: center;
}
.flex-box {
  display: flex;
  justify-content: space-between;
}
.input {
  border: 1px solid #ccc;
  font-size: 15px;
  padding: 12px;
  width: 100%;
}
.margin-bot-48 {
  margin-bottom: 48px !important;
}
/* main */
#main {
}

#header {
  background-color: #000;
  height: 46px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#header #nav {
  display: inline-block;
}
#header #nav li {
  display: inline-block;
  position: relative;
}
#header #nav li a {
  line-height: 46px;
  font-size: 15px;
  padding: 0 24px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  display: block;
}
#header #nav li:hover > a {
  color: #000;
  background-color: #ccc;
}
#header #nav li:hover .subnav {
  display: block;
}
.subnav {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 0 2px;
}
.subnav li {
  display: block;
  width: 100%;
}
.subnav li a {
  color: black !important;
  display: block;
}
/* srech icon */
#header #search-icon {
  float: right;
  color: #fff;
  line-height: 46px;
  padding: 0 24px;
  font-size: 15px;
}
#header #search-icon:hover {
  background-color: #f44336;
  cursor: pointer;
}
.fa-caret-down {
  margin-left: 3px;
}
#slider {
  padding-top: 65%;
  background: url(../img/slider/slider3.jpg) top center/cover no-repeat;
  position: relative;
  color: #fff;
}
.slider-content {
  position: absolute;
  bottom: 46px;
  width: 100%;
  font-size: 15px;
}

.slider-heading {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 300;
}

.slider-desc {
}

#content {
}
#content .content-box {
  width: 800px;
  margin: 0 auto;
  padding: 64px 0 112px;
  font-size: 15px;
}

#content .content-heading {
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 30px;
}

#content .sub-content-heading {
  font-size: 15px;
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 15px;
}

.content-about {
  text-align: justify;
  line-height: 1.4;
  margin-bottom: 47px;
}
.content-img {
  margin-top: 15px;
  width: 60%;
  border-radius: 10px;
}
/* start tour */

.tour-section {
  color: #fff;
  background-color: #000;
}
.tour-section .time-tour {
  background-color: #fff;
  list-style-type: none;
}
.tour-section .time-tour .month {
  color: gray;
  padding: 8px 16px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.tour-section .time-tour .sold-out {
  margin-left: 16px;
  padding: 0 8px;
  background-color: #f44336;
  color: #fff;
  font-size: 15px;
}
.tour-section .time-tour .quality {
  float: right;
  background-color: #000;
  color: #fff;
  padding: 0 8px;
  margin-right: 16px;
  border-radius: 50%;
  line-height: 24px;
}
.place {
  margin-top: 32px;
  text-align: left;
}
.place .tour-img {
  width: 100%;
  display: block;
}
.place .place-items {
  width: 32%;
}
.place .place-items img:hover {
  opacity: 0.7;
}
.place .place-content {
  background-color: #fff;
  color: #000;
  padding: 15px;
}
.place .place-heading {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px;
}
.place .time-place {
  opacity: 0.7;
  margin-bottom: 15px;
}
.place .place-desc {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 15px;
}
.place .place-btn {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  font-size: 15px;
  border: none;
}
.place .place-btn:hover {
  color: #000;
  background-color: #ccc;
}
.location {
  margin-top: 50px;
}
.contact-info {
  font-size: 18px;
  line-height: 1.5;
}

.contact-info .fa-solid {
  width: 30px;
}
.contact-add {
  margin-bottom: 7px;
}
.contact-name {
  margin-right: 15px;
}

.location .contact-btn {
  float: right;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  padding: 8px 16px;
  margin-top: 16px;
}
.location .contact-btn:hover {
  color: #000;
  background-color: #ccc;
  cursor: pointer;
  border: none;
}
#content .map img {
  width: 100%;
}
#footer {
  text-align: center;
  padding: 64px 16px;
}
#footer .social-list i {
  color: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  margin-bottom: 16px;

  padding-right: 3px;
}
#footer .social-list i:hover,
#footer > p > a:hover {
  color: rgba(0, 0, 0, 0.5);
}
#footer > p > a {
  color: rgba(0, 0, 0, 0.9);
  margin-left: 3px;
  opacity: 0.7;
}
#modal {
  display: none;
}
#modal.open {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: Infade ease 0.5s;
}
#modal .modal-container {
  width: 900px;
  min-height: 200px;
  background-color: aliceblue;
  font-size: 15px;
  position: relative;
}

#modal .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 16px;
  color: #fff;
  opacity: 0.8;
}
#modal .modal-close:hover {
  background-color: #ccc;
  opacity: 1;
  cursor: pointer;
}

#modal .modal-header {
  background-color: #009688;
  height: 130px;
  color: #fff;
  font-size: 30px;
  line-height: 130px;
  text-align: center;
}
#modal .modal-header i {
  margin-right: 8px;
}
#modal .modal-body {
  padding: 16px;
}

#modal .modal-label i {
  width: 21px;
}

#modal .modal-input {
  margin-top: 15px;
  margin-bottom: 30px;
}

#modal .modal-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  background-color: #009688;
  border: none;
}
#modal .modal-btn:hover {
  color: #000;
  background-color: #ccc;
  cursor: pointer;
}

#modal .modal-footer {
  padding: 16px;
  float: right;
}
#modal .modal-footer a {
  color: #009688;
}
@keyframes Infade {
  from {
    opacity: 0;
    transform: translateY(-140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
