@charset "UTF-8";

:root {
  --nav_bg_color_1  : rgba(232, 230, 231, .8);
  --nav_bg_color_2  : #FFF;
  --nav_font_size_1 : 18px;
  --nav_text_color_1: #000;
  --nav_hover_1     : #37201A;
  --foot-bg-color_1 : #FFFCF9;
  --main-txt-color_1: #ffff;
  --main-font-size_s: 16px;
  --main-font-size_m: 20px;
  --main-font-size_l: 245px;
  --main-mb         : 20px;
}

* {
  margin            : 0;
  padding           : 0;
  -webkit-box-sizing: border-box;
  box-sizing        : border-box;
  list-style        : none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size  : var(--main-font-size_s);
  font-family: "Helvetica", "Arial", "LiHei Pro", "黑體-繁", "微軟正黑體", sans-serif;
}

/*  NAV_s */
#menuToggle input {
  display: none;
}

#menuToggle {
  position        : fixed;
  top             : 0;
  background-color: var(--nav_bg_color_1);
  z-index         : 2;
  width           : 100vw;
}

#menuToggle .nav-toggle-label {
  width       : 35px;
  height      : 30px;
  margin      : 10px 10px;
  position    : relative;
  margin-right: 30px;
}

#menuToggle .nav-toggle-label span {
  background-color  : var(--nav_bg_color_2);
  position          : absolute;
  border-radius     : 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition        : 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width             : 100%;
  height            : 4px;
  overflow          : hidden;
}

#menuToggle .nav-toggle-label span:nth-child(1) {
  top : 0px;
  left: 0px;
}

#menuToggle .nav-toggle-label span:nth-child(2) {
  top : 13px;
  left: 0px;
}

#menuToggle .nav-toggle-label span:nth-child(3) {
  bottom: 0px;
  left  : 0px;
}

#menuToggle .nav-toggle-label:hover span:nth-child(1) {
  -webkit-transform: scaleX(0.8);
  transform        : scaleX(0.8);
}

#menuToggle .nav-toggle-label:hover span:nth-child(2) {
  -webkit-transform: scaleX(0.5);
  transform        : scaleX(0.5);
}

#menuToggle .nav-toggle-label:hover span:nth-child(3) {
  -webkit-transform: scaleX(0.8);
  transform        : scaleX(0.8);
}

#menuToggle input:checked~.menu .item {
  display: block;
}

#menuToggle input:checked~.menu .nav-toggle-label span:nth-child(1) {
  -webkit-transform: rotate(90deg);
  transform        : rotate(90deg);
  top              : 13PX;
}

#menuToggle input:checked~.menu .nav-toggle-label span:nth-child(2) {
  -webkit-transform          : scale(0);
  transform                  : scale(0);
  -webkit-transition-duration: 50ms;
  transition-duration        : 50ms;
}

#menuToggle input:checked~.menu .nav-toggle-label span:nth-child(3) {
  top: 13PX;
}

/*==nav_a==*/
#menuToggle .logo {
  font-weight: 700;
  color      : var(--nav_text_color_1);
}

#menuToggle .logo a {
  color          : var(--nav_text_color_1);
  text-decoration: none;
}

#menuToggle .logo a:hover {
  text-decoration: none;
  color          : var(--nav_hover_1);
  text-shadow    : 0 0 1px #000;
}

#menuToggle .menu li {
  font-size  : var(--nav_font_size_1);
  padding    : 15px 5px;
  white-space: nowrap;
}

#menuToggle .logo {
  margin-left: 6vw;
}

#menuToggle .logo a,
#menuToggle .toggle a {
  font-size: 20px;
}

/* Mobile menu */
#menuToggle .menu {
  display              : -webkit-box;
  display              : -ms-flexbox;
  display              : flex;
  -ms-flex-wrap        : wrap;
  flex-wrap            : wrap;
  -webkit-box-orient   : horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction   : row;
  flex-direction       : row;
  -webkit-box-pack     : justify;
  -ms-flex-pack        : justify;
  justify-content      : space-between;
  -webkit-box-align    : center;
  -ms-flex-align       : center;
  align-items          : center;
}

#menuToggle .menu .item a {
  display: none;
}

#menuToggle .menu .item:hover>a {
  display: block;
  color  : var(--nav_hover_1);
}

#menuToggle .menu .item:hover>span {
  display: none;
}

#menuToggle .menu .item a,
.menu .item a,
span {
  color: var(--nav_text_color_1);
}

.nav-toggle-label {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order           : 1;
  order                    : 1;
}

.menu .item {
  width                    : 100%;
  text-align               : center;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order           : 2;
  order                    : 2;
  display                  : none;
}

/* Navbar Toggle */
.nav-toggle-label {
  cursor: pointer;
}

/* Tablet menu */
@media all and (min-width: 468px) {
  .menu {
    -webkit-box-pack: center;
    -ms-flex-pack   : center;
    justify-content : center;
  }

  .logo {
    -webkit-box-flex: 1;
    -ms-flex        : 1;
    flex            : 1;
  }
}

/* Desktop menu */
@media all and (min-width: 768px) {
  .menu .item {
    display: block;
    width  : auto;
  }

  .nav-toggle-label {
    display: none;
  }

  .menu .logo {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order           : 0;
    order                    : 0;
  }

  .menu .item {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order           : 1;
    order                    : 1;
  }

  .menu li {
    margin-right: 50px;
    padding     : 15px 10px;
  }
}

/*  End of nav */
/* index */
.index_box {
  width           : 100vw;
  height          : 100vh;
  background-color: #320033;
}

.index_container {
  position        : relative;
  text-align      : center;
  color           : #000;
  width           : 100vw;
  height          : 100vh;
  background-color: aqua;
  overflow        : hidden;
}

.box_img {
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .index_container {
    height: 80vh;
  }

  .bottom-right {
    position: absolute;
    bottom  : 8%;
    right   : 16%;
  }
}

.index_container .bottom-left,
.index_container .top-left,
.index_container .top-right,
.index_container .bottom-right {
  opacity                          : 0;
  -webkit-animation-name           : fadeIn, rotate;
  animation-name                   : fadeIn, rotate;
  -webkit-animation-duration       : 800ms, 80s;
  animation-duration               : 800ms, 80s;
  -webkit-animation-delay          : 1700ms;
  animation-delay                  : 1700ms;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count        : 1, infinite;
  -webkit-animation-fill-mode      : forwards;
  animation-fill-mode              : forwards;
  -webkit-animation-timing-function: ease-in, linear;
  animation-timing-function        : ease-in, linear;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform        : rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform        : rotate(0deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform        : rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform        : rotate(0deg);
  }
}

.bottom-left {
  position: absolute;
  bottom  : 7%;
  left    : 16%;
}

.top-left {
  position: absolute;
  top     : 8%;
  left    : 16%;
}

.top-right {
  position: absolute;
  top     : 10%;
  right   : 25%;
}

.bottom-right {
  position: absolute;
  bottom  : 7%;
  right   : 16%;
}

.centered {
  position         : absolute;
  top              : 38%;
  left             : 50%;
  width            : 80vw;
  -webkit-transform: translate(-50%, -50%);
  transform        : translate(-50%, -50%);
}

.centered h3 {
  font-family   : 'Yatra One', cursive, serif, sans-serif, cursive, fantasy, monospace;
  letter-spacing: 2px;
  color         : #fff;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .centered h3 {
    display: none;
  }
}

/*  about_video */
.video_box {
  display         : -webkit-box;
  display         : -ms-flexbox;
  display         : flex;
  -webkit-box-pack: center;
  -ms-flex-pack   : center;
  justify-content : center;
  overflow        : hidden;
  position        : relative;
  height          : auto;
}

video {
  width : 100vw;
  height: auto;
}

@media all and (max-width: 768px) {
  video {
    width : 100vw;
    height: auto;
  }
}

.wrap_video {
  height          : 100vh;
  background-color: #320033;
}

/* report */
/* my-search */
input[type=text] {
  width              : 250px;
  border             : 2px solid #ccc;
  border-radius      : 4px;
  font-size          : 18px;
  background-color   : rgba(214, 214, 214, 0.6);
  padding            : 12px 12px;
  -webkit-transition : width 0.4s ease-in-out;
  transition         : width 0.4s ease-in-out;
  color              : #000;
}

input[type=text]:focus {
  width: 60%;
}

input[type="submit"] {
  border             : 2px solid #ccc;
  border-radius      : 4px;
  font-size          : 18px;
  padding: 12px 12px;
  background-color   : rgba(214, 214, 214, 0.6);
  color              : #000;
}

@media all and (max-width: 768px) {
  input[type=text]:focus {
    width: auto;
  }
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #440513;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #000;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000;
}

@media all and (min-width: 768px) {
  .wrap_txt {
    -webkit-box-orient   : horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction   : row;
    flex-direction       : row;
  }
}

.r_img {
  -webkit-box-shadow: 0 2px 10px 0 rgba(6, 1, 48, 0.5);
  box-shadow        : 0 2px 10px 0 rgba(6, 1, 48, 0.5);
  border-radius     : 0 30px 0 0;
}

/* img_height */
.bg-image {
  width        : 100vw;
  height       : calc(100vh - 50px);
  margin-bottom: var(--main-mb);
  margin-top   : 46px;
}

/* contact */
.contact-box {
  color             : var(--nav_text_color_1);
  text-align        : center;
  -webkit-box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  box-shadow        : 0 0 20px rgba(65, 76, 100, 0.05);
  padding           : 20px 0 30px 0;
  background-color  : var(--nav_bg_color_1);
}

.contact-box a {
  color: var(--nav_text_color_1);
}

.contact-box i {
  font-size    : 32px;
  text-align   : center;
  color        : var(--nav_text_color_1);
  border-radius: 50%;
  padding      : 8px;
}

.contact-box h3 {
  font-size  : 20px;
  color      : #000;
  font-weight: bold;
  margin     : 10px 0;
}

.contact-box p {
  padding      : 0;
  line-height  : 24px;
  font-size    : 14px;
  margin-bottom: 0;
}

.con_img {
  background: url("../img/map.png") center center no-repeat;
}

.con_a-box {
  min-height: 400px;
}

@media (max-width: 768px) {
  .con_a-box {
    width     : 100%;
    min-height: 400px;
  }
}

/* footer */
.s {
  -webkit-box-shadow: 0 2px 10px 0 rgba(6, 1, 48, 0.5);
  box-shadow        : 0 2px 10px 0 rgba(6, 1, 48, 0.5);
  border-radius     : 0 30px 0 0;
}

.item_fo .text__1 a {
  color: #000;
}

.item_fo .text__1 h3 {
  text-align   : center;
  margin-bottom: 10px;
}

/* End of footer */