@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&display=swap');
@import url('https://redrabbittravel.com.tw/css/tour_style.css');
body {
  font-family: 'Outfit', sans-serif, 'Noto Sans', 'Noto Sans TC', sans-serif;
  overflow-x: hidden;
  letter-spacing: 1px;
  background-color: #000;
}
html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  padding: 10px;
  border: 1px solid #ccc;
}
img {
  max-width: 100%;
  height: auto;
}
div:focus {
  outline: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: #F6420D;
}
textarea {
  resize: none;
}
.gotop {
  position: fixed;
  right: 20px;
  top: 65%;
  z-index: 999;
  width: 40px;
  text-align: center;
}
.floating-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 999;
  width: 40px;
}
.floating-btn a, .floating-btn a:hover {
  color: #fff;
  padding: 10px 0;
}
.img {
  width: 100%;
  aspect-ratio: 1 / 2.2;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 30px;
}
.img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s ease-out;
}
.img:hover::before, a:hover .img::before {
  transform: scale(1.1);
}
.img_4x3 {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  overflow: hidden;
  position: relative;
}
.img_4x3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.card:hover .img_4x3 img, a:hover .img_4x3 img {
  transform: scale(1.1);
}
.img_21x9 {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  position: relative;
}
.img_21x9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.card:hover .img_21x9 img, a:hover .img_21x9 img {
  transform: scale(1.1);
}
.img_16x9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.img_16x9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.card:hover .img_16x9 img, a:hover .img_16x9 img {
  transform: scale(1.1);
}
.img_1x1 {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.img_1x1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.card:hover .img_1x1 img, a:hover .img_1x1 img {
  transform: scale(1.1);
}
.a_pic {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  z-index: 0;
}
.a_pic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s ease-out;
}
.a_pic:hover::before, a:hover .a_pic::before {
  transform: scale(1.1);
}
.pic_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.pic_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.pic_img::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.border_30 {
  border-radius: 30px;
}
/*--------------------------------------------------------------
# font-size
--------------------------------------------------------------*/
.fs_6 {
  --min-size: 14;
  --max-size: 17;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_5 {
  --min-size: 16;
  --max-size: 20;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_4 {
  --min-size: 16;
  --max-size: 24;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_3 {
  --min-size: 18;
  --max-size: 33;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_2 {
  --min-size: 26;
  --max-size: 40;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_1 {
  --min-size: 35;
  --max-size: 50;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_small {
  --min-size: 13;
  --max-size: 15;
  --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
  font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.font_vertical_title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 25px;
}
.font_vertical_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 70px;
}
/*--------------------------------------------------------------
# pagination
--------------------------------------------------------------*/
.pagination {
  justify-content: center;
}
.page-link {
  color: #333;
  border-radius: 0px;
  margin: 0 10px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  padding: 0;
  background-color: #fff;
  border: 0;
  border: 1px solid #F6420D;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #F6420D;
  border-color: #F6420D;
}
.page-link:hover {
  color: #fff;
  background-color: #F6420D;
  border-color: #F6420D;
}
.page-link:focus {
  z-index: 3;
  color: #fff;
  background-color: #d6011b;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
.page-item:first-child .page-link {
  border-radius: 0px;
}
.page-item.active .page-link {
  border-radius: 0px;
}
.page-item:last-child .page-link {
  border-radius: 0px;
}
/*--------------------------------------------------------------
# form style
--------------------------------------------------------------*/
.form-label {
  margin: 0;
  color: #8f8f8f;
}
.form-control {
  line-height: 28px;
  border-radius: 0px;
  background-color: #fff;
  color: #999;
  border: 1px solid #eee;
  padding: 10px;
}
.form-control::placeholder {
  color: #999;
}
.form-control:focus {
  box-shadow: 0 0 0 0 transparent;
  color: #999;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 10px;
}
.form-select {
  line-height: 28px;
  border-radius: 0px;
  background-color: #fff;
  color: #999;
  border: 1px solid #eee;
  padding: 10px;
}
.form-select:focus {
  box-shadow: 0 0 0 0 transparent;
  color: #999;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 10px;
}
.form-check-input {
  border: 1px solid #F6420D;
  background-color: #fff;
  padding-top: 8px;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 8px;
}
.form-check-label {
  color: #000;
}
.form-check-input:checked {
  background-color: #F6420D;
  border-color: #fff;
}
/*btn*/
.btn:focus {
  box-shadow: 0 0 0 0rem rgba(0, 140, 255, 1.00);
  -webkit-box-shadow: 0 0 0 0rem rgba(0, 140, 255, 1.00);
}
.main_btn {
  color: #fff;
  background-color: #ff0000;
  padding: 11px 13px;
  position: relative;
  border: 1px solid #ff0000;
  border-radius: 10px;
}
.main_btn:hover, a:hover.main_btn {
  border: 1px solid #ff0000;
  color: #ff0000;
  background-color: #fff;
  border-radius: 10px;
}
.air_btn {
  border-radius: 10px;
  color: #F6420D;
  padding: 10px 15px;
  border: 1px solid #F6420D;
  display: inline-block;
}
.d_btn {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #919191;
  line-height: 25px;
  color: #fff;
  font-size: 16px;
}
.d_btn:hover, a:hover.d_btn {
  background-color: #ff0000;
  color: #fff;
}
.btn_close {
  background-color: #CCC;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 999;
  text-align: center;
  line-height: 30px;
}
.search_btn {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #55b7f0;
  color: #fff;
  font-size: 18px;
}
.search_btn:hover {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #39F;
  color: #fff;
  font-size: 18px;
}
.search_box {
  margin-top: -40px;
  position: relative;
  z-index: 9;
}
/*countBtn*/
.countItemBox {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
}
.countBtn, a.countBtn {
  width: 50px;
}
.count {
  width: 150px;
  border: 0;
  text-align: center;
}
/*--------------------------------------------------------------
# color
--------------------------------------------------------------*/
.main_bg_color {
  background-color: #F6420D;
}
.main_color {
  color: #F6420D;
}
.gray_bg_color {
  background-color: #f4f4f4;
}
/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
#menu .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 10px;
  font-size: 1rem;
  z-index: 1100;
}
.navbar-nav {
  margin-top: 70px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}
.dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  content: '\f107';
  font-weight: 700;
  border: 0;
}
.navbar-light .navbar-toggler {
  border: 1px solid #fff;
  background-color: #fff;
  padding: 0;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #F6420D;
}
.navbar-light .navbar-toggler:hover {
  background-color: #910000;
  color: #fff;
  border: 1px solid #910000;
}
.navbar-light .navbar-nav .nav-link {
  color: #000;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.navbar-light .navbar-nav.show {
  color: #fff;
  background-color: #e83820;
  border-radius: 0px;
}
.navbar-light .navbar-nav a:hover.nav-link {
  color: #e83820;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .dropdown:hover > .nav-link {
  color: #F6420D !important;
  background-color: #fff;
}
.dropdown-menu a:hover {
  background-color: #F6420D;
  color: #fff;
  border-bottom: 1px solid #F6420D;
}
.navbar-collapse {
  height: 100vh;
  z-index: 999;
}
.navbar-nav .nav-link {
  padding: 15px 15px;
  border-bottom: 1px solid #eee;
}
.dropdown-menu {
  border: 0;
  background-color: #fff;
  padding: 0;
}
.dropdown-item {
  padding: 15px 15px;
  border-bottom: 1px solid #eee;
}
/* =========================*/
.submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  display: none !important;
  padding-left: 1rem;
}
.submenu.show {
  display: block !important;
  max-height: 500px;
}
ul .submenu li::marker {
  color: #fff;
}
.mt_top {
  margin-top: 70px;
}
.icon_pic img {
  width: 40px;
}
.line_style {
  position: relative;
  height: 100%;
}
.line_style::after {
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #999;
  position: absolute;
  top: 50%;
  left: 0%;
  content: '';
}
.total_box {
  border: 1px solid #F6420D;
  border-radius: 10px;
  padding: 20px;
}
/*--------------------------------------------------------------
# table
--------------------------------------------------------------*/
.table-responsive > .table > tbody > tr > td, .table-responsive > .table > thead > tr > th {
  white-space: nowrap;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table thead tr {
  background-color: #F63;
  color: #fff;
}
table.p_table thead tr {
  background-color: #fff;
  color: #F6420D;
  border: 1px solid #F6420D;
  padding: 8px 0;
  border-radius: 10px;
}
table.p_table th {
  padding: 10px 0;
}
table.p_table td {
  padding: 10px 0;
}
/*--------------------------------------------------------------
# owl-carousel_2
--------------------------------------------------------------*/
.owl-carousel_2 .owl-item img {
  transition: all 0.4s ease;
}
.owl-carousel_2 .owl-item img {
  opacity: 0.4;
  filter: brightness(1.15);
}
.owl-carousel_2 .owl-item.active img {
  opacity: 1;
  filter: brightness(1);
}
.owl-carousel_2 .owl-item {
  transition: transform 0.4s ease;
}
.owl-carousel_2 .owl-item:not(.active) {
  transform: scale(0.92);
}
.owl-carousel_2 .owl-item.active {
  transform: scale(1);
}
/*--------------------------------------------------------------
# cssmenu
--------------------------------------------------------------*/
ul.cssmenu {
  padding: 0;
  list-style: none;
  text-align: center;
  position: relative;
  z-index: 20;
}
ul.cssmenu li {
  margin: 8px 4px;
  padding: 5px 0;
  position: relative;
  color: #333;
  border-radius: 0px;
  display: inline-block;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #fff;
}
ul.cssmenu a li:hover, ul.cssmenu a li.current {
  background-color: transparent;
  color: #F6420D;
  border-bottom: 1px solid #F6420D;
  border-radius: 0px;
}
/*--------------------------------------------------------------
# main
--------------------------------------------------------------*/
.index_from_bg {
  background-image: url("../images/index_from_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.banner_area {
  font-weight: 500;
  font-size: 25px;
  line-height: 40px;
  color: #F6420D;
  position: relative;
  width: 100%
}
.blog_box {
  position: relative;
  z-index: 999;
  color: #fff;
  height: 100%;
}
a:hover .blog_box {
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 70%);
}
.name_text {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  position: relative;
  top: 25%;
  left: 0;
  height: 55%;
  letter-spacing: 5px;
}
.location_text {
  font-size: 25px;
  font-weight: 600;
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
}
.date_text {
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 100%;
}
.pic_text {
  position: absolute;
  top: 30%;
  left: 5%;
  color: #fff;
  z-index: 99;
  width: 90%;
  text-align: center;
}
.pic_text h1 {
  font-size: 37px;
  font-weight: 600;
}
.pic_text p {
  font-size: 16px;
  letter-spacing: 2px;
}
/*--------------------------------------------------------------
# login_box
--------------------------------------------------------------*/
.login_box {
  background-color: #fdf6f4;
  border: 0;
  border-radius: 15px;
}
.box_title {
  background-color: #F6420D;
  border-radius: 15px 15px 0px 0px;
  padding: 20px 20px;
}
.password-container {
  position: relative;
}
.password-input {
  width: 100%;
  padding: 10px;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.subTitle {
  letter-spacing: var(--letterSpacing150);
  width: 340px;
  position: relative;
}
.subTitle:after {
  width: 132px;
  height: 1px;
  content: '';
  background-color: #11659c;
  position: absolute;
  top: 50%;
  margin-left: 20px;
}
.icon_pic {
  width: 100%;
  max-height: 50px;
}
.login_btn_f {
  border: 1px solid #c0c0c0;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
}
.login_btn_f img {
  max-height: 35px;
  margin-right: 10px;
}
.login_btn_f p {
  font-size: 18px;
  text-align: left;
  line-height: 35px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
.tab-pane {
  background-color: #fdf6f4;
  padding: 30px 10px;
  border-radius: 0px 30px 30px 30px;
}
.nav-tabs {
  border-bottom: 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #F6420D;
  border-color: 0;
  border-radius: 10px 10px 0px 0px;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  margin-right: 2px;
  background-color: #ecebe9;
  border: 0;
  color: #666;
  border-radius: 10px 10px 0px 0px;
  padding: 8px 10px;
}
/*--------------------------------------------------------------
# cssmenu
--------------------------------------------------------------*/
ul.side_menu {
  padding: 0;
  list-style: none;
  text-align: center;
  position: relative;
  z-index: 20;
  margin-bottom: 50px;
  border-top: 1px solid #dc3606;
}
ul.side_menu a li {
  padding: 15px 10px;
  position: relative;
  color: #fff;
  border-radius: 0px;
  display: block;
  border: 0;
  border-bottom: 1px solid #dc3606;
  margin-bottom: 1px;
  font-weight: 600;
}
ul.side_menu a li:hover, ul.side_menu a li.current {
  background-color: transparent;
  color: #ffc3b2;
  border-radius: 0px;
}
ul.side_menu a li img {
  margin-right: 10px;
  width: 25px;
  vertical-align: bottom;
}
/*--------------------------------------------------------------
# mobile_dropdown
--------------------------------------------------------------*/
.accordion-button {
  position: relative;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
  background-color: #F6420D;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  transition: transform .2s ease-in-out;
  position: absolute;
  top: 35%;
  right: 15px;
  content: "\f078";
  color: #333;
  font-size: 20px;
  font-family: FontAwesome;
  line-height: 1;
  z-index: 1;
  background-image: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(-180deg);
  position: absolute;
  top: 25%;
  right: 15px;
  color: #fff;
}
ul.mobile_dropdown {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.mobile_dropdown li a {
  display: block;
  color: #000;
  padding: 15px 10px;
  font-size: 15px;
  margin: 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  text-align: left;
  position: relative;
}
ul.mobile_dropdown li a:hover {
  background-color: #F6420D;
  color: #fff;
  border-radius: 0px;
}
ul.mobile_dropdown li a img {
  width: 20px;
  margin-right: 10px;
  vertical-align: bottom;
  filter: brightness(0);
}
ul.mobile_dropdown li a:hover img {
  filter: brightness(0) invert(1);
}
/*--------------------------------------------------------------
# show journey
--------------------------------------------------------------*/
.plan_time {
  position: relative;
  border-bottom: 1px dotted #4577a1;
}
.plan_time::after {
  font-family: "Font Awesome 6 Free" !important;
  content: '\f072';
  position: absolute;
  top: 45%;
  right: -5%;
  color: #666;
  font-weight: 600 !important;
  font-size: 10px;
}
.content {
  position: relative;
  max-height: 300px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.content.expanded {
  max-height: 100%;
}
.toggle-btn {
  margin-top: 30px;
  color: #333;
  border: none;
  cursor: pointer;
  background-color: transparent;
  width: 100%;
  position: relative;
}
/*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
.tab_area {
  padding-left: 0;
  position: relative;
  width: 100%;
}
.tab_area {
  padding-top: 0;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
}
.tabs {
  position: fixed;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #fff;
  z-index: 0;
  flex-direction: column;
  width: 50px;
  top: 15%;
  display: none;
}
.tabs a {
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  text-transform: capitalize;
  padding: 10px 0;
}
.tabs a.active {
  color: #F6420D;
  font-weight: bold;
}
.text-wrapper {
  margin-bottom: 15px;
}
.text-container {
  max-height: 600px; /* �]�w��l��ܪ����� */
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}
.text-container.expanded {
  max-height: none; /* �i�}����ܥ������e */
}
.expand-btn {
  display: block;
  cursor: pointer;
  color: #fff;
  text-align: center;
  background-color: #ff0000;
  padding: 10px 15px;
  margin: 15px auto;
}
.section {
  box-sizing: border-box;
  padding: 0px 0;
  scroll-margin-top: 120px;
}
@media (min-width:375px) {
  .img {
    aspect-ratio: 1 / 2;
  }
}
@media (min-width:576px) {
  /*--------------------------------------------------------------
# cssmenu
--------------------------------------------------------------*/
  ul.cssmenu li {
    margin: 8px 20px;
  }
}
@media (min-width:768px) {
  .banner_area {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    padding: 1rem;
    max-width: 300px;
  }
  .navbar-collapse.show {
    right: 0;
  }
  /* =========================

========================= */
  .dropdown-submenu > .dropdown-menu.show {
    display: block;
  }
  .dropdown-submenu > a::after {
    content: "";
    float: right;
    font-size: 12px;
    transition: transform .2s;
  }
  .dropdown-submenu > a.active::after {
    transform: rotate(180deg);
  }
  .submenu {
    position: static;
    margin-top: 0.25rem;
  }
}
@media (min-width:992px) {
  /*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
  .navbar-nav {
    margin-top: 0px;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 10px;
  }
  .dropdown-toggle::after {
    display: none;
  }
  .navbar-nav .nav-link {
    border: 0;
  }
  .navbar-light .navbar-nav .nav-link {
    color: #fff;
    border-bottom: 0;
  }
  .navbar-light .navbar-nav.show {
    color: #fff;
    background-color: #e83820;
    border-radius: 0px;
  }
  .navbar-light .navbar-nav .nav-link {
    border-bottom: 0;
  }
  .navbar-collapse {
    height: auto;
  }
  .nav-item .nav-link {
    position: relative;
  }
  .nav-link {
    padding: 15px 0;
    border-bottom: 0;
  }
  .dropdown-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  .dropdown-menu {
    padding: 0;
  }
  /* =========================
========================= */
  .dropdown-submenu {
    position: relative;
  }
  .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    padding-left: 0;
    max-height: none;
    display: none;
    min-width: 150px;
  }
  .submenu.show {
    display: block;
  }
  .mt_top {
    margin-top: 60px;
  }
  .pic_img {
    aspect-ratio: 2 / 0.8;
  }
  .pic_text h1 {
    font-size: 50px;
  }
  .pic_text p {
    font-size: 28px;
  }
  /*--------------------------------------------------------------
# main
--------------------------------------------------------------*/
  .index_from_bg {
    background-size: 100%;
    background-color: #fff;
  }
  /*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
  .nav-tabs .nav-link {
    padding: 8px 20px;
  }
  .tab-pane {
    padding: 30px 40px;
  }
  /*--------------------------------------------------------------
# show journey
--------------------------------------------------------------*/
  .plan_time::after {
    position: absolute;
    top: 45%;
    right: -5%;
    font-size: 20px;
  }
  .content {
    max-height: 700px;
  }
  /*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
  .section {
    margin: auto;
    width: 100%;
    max-width: 1270px;
    padding: 40px 0;
  }
  .tab-pane {
    padding: 30px 40px;
  }
  .nav-tabs .nav-link {
    padding: 10px 20px;
  }
  .tabs {
    left: 5%;
    display: flex;
  }
}
@media (min-width:1200px) {
  .gotop {
    width: 50px;
  }
  .floating-btn {
    width: 50px;
  }
  /*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 20px;
  }
  .img {
    aspect-ratio: 1 / 2;
  }
  .pic_img {
    aspect-ratio: 2 / 0.5;
  }
  .pic_text h1 {
    font-size: 65px;
  }
  .pic_text p {
    font-size: 30px;
  }
}