@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=Mulish:wght@200;300;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bitter:wght@300;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  font-size: 16px;
}
@media (max-width: 768px) {
  :root {
    font-size: 12px;
  }
}

@font-face {
  font-family: "helvetica";
  src: url("../../assets/fonts/Helvetica.otf") format("otf"), url("../../assets/fonts/Helvetica.ttf") format("ttf"), url("../../assets/fonts/Helvetica.woff2") format("woff2"), url("../../assets/fonts/Helvetica.woff") format("woff");
}
* {
  font-family: "Noto Sans TC", sans-serif !important;
}

.btnRegistration {
  border-radius: 5px !important;
  overflow: hidden;
}
.btnRegistration a {
  border-radius: 5px !important;
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(238, 238, 238, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_primary {
  background: transparent;
  color: #fff;
}
.fix_aside .fx_item.is_primary span {
  font-size: 1rem;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(238, 238, 238, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.pic {
  transform: translate(-50%, -70%);
}
.fix_aside .fx_item .in_wrap.pic img {
  width: 60px;
  max-width: 60px;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("../../assets/images/icons/arrow_top.png") center/contain no-repeat;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  transition: all 0.2s ease-out;
}
header.is_active {
  background-color: rgba(255, 255, 255, 0.9);
}
header.is_active .nav_area .logo {
  width: 140px;
}
header.is_active .nav_area .logo.en {
  width: 180px !important;
}
header.is_active .nav_area ul {
  height: 65px;
}
header.is_active .nav_area ul li a {
  font-size: 1rem;
}
header .nav_language {
  position: absolute;
  top: 50%;
  right: 70px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_language .hover_holder {
  color: white;
}
header .nav_mobile {
  display: none;
}
header .nav_language {
  position: absolute;
  top: 50%;
  right: 70px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_language .hover {
  display: inline-block;
  position: relative;
}
header .nav_language .hover img {
  width: 30px;
  line-height: 0;
}
header .nav_language .hover:hover .hover_menu {
  display: flex;
}
header .nav_language .hover_holder {
  cursor: pointer;
}
header .nav_language .hover_holder img {
  filter: drop-shadow(0px 0px 5px #fff);
}
header .nav_language .hover_menu {
  position: absolute;
  top: auto;
  right: 0;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header .nav_language .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 10px;
  text-decoration: none;
}
header .nav_language .hover_menu .hover_item p {
  position: relative;
  box-sizing: border-box;
  padding: 5px 15px;
  width: 100px;
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  color: #071f37;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0 10px 0 10px;
  transition: all 0.3s ease-in-out;
}
header .nav_language .hover_menu .hover_item p:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}
header .nav_language .hover_menu .hover_item p span {
  font-size: 12px;
}
header .nav_sns {
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_sns .hover {
  display: inline-block;
  position: relative;
}
header .nav_sns .hover img {
  width: 40px;
  line-height: 0;
}
header .nav_sns .hover:hover .hover_menu {
  display: block;
}
header .nav_sns .hover_holder {
  cursor: pointer;
}
header .nav_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}
header .nav_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}
header .nav_area {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav_area .logo {
  position: relative;
  width: 160px;
  height: auto;
  margin: 0 auto 0 0;
  display: block;
  transition: all 0.2s ease-out;
}
header .nav_area .logo.en {
  width: 200px;
  margin-top: 10px;
}
header .nav_area .logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
header .nav_area ul {
  position: relative;
  width: auto;
  height: 70px;
  margin: 0 1% 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
header .nav_area ul li {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
header .nav_area ul li a {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  padding: 3px;
  color: #061F37;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1.44px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a.active {
  color: #F37229;
  font-weight: 700;
}
header .nav_area ul li a.register {
  position: relative;
  color: #fff;
  padding: 15px;
  background: #061F37;
  overflow: visible;
}
header .nav_area ul li a.register:before {
  content: "";
  position: absolute;
  background: #F37229;
  width: 18px;
  height: 18px;
  border: solid 3px rgba(255, 255, 255, 0.95);
  left: -5px;
  top: -5px;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a.register:hover {
  background: #F37229;
}
header .nav_area ul li a.register:hover:before {
  background: #061F37;
}
header .nav_area ul li a.English {
  margin-left: 20px;
}
header .nav_area ul li.btn a {
  padding: 8px 25px;
  color: #fff;
  border: 1px solid #222222;
  border-radius: 5px;
}
header .nav_area ul li.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #F39800, #9000FF);
  z-index: -1;
  transition: all 0.2s ease-out;
}
header .nav_area ul li.btn a:hover {
  color: #F39800;
  border: 1px solid #F39800;
}
header .nav_area ul li.btn a:hover::before {
  left: 100%;
}

.modal .modal-dialog {
  max-width: 900px;
}
.modal .modal-content {
  padding: 20px 30px;
  border-radius: 20px;
}
.modal .modal-header {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #F39800;
}
.modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.modal .modal-header .sub {
  position: relative;
  margin: 5px 0 0 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  color: #373F41;
  display: block;
}
.modal .modal-header .close {
  position: absolute;
  top: 25px;
  right: 30px;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.modal .modal-header .close:hover {
  transform: rotate(180deg);
}
.modal .modal-body {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  color: #373F41;
  line-height: 1.6;
}
.modal .modal-body .tab_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2%;
}
.modal .modal-body .tab_area .btn_tab {
  position: relative;
  box-sizing: border-box;
  padding: 5px;
  margin: 0 2%;
  background: transparent;
  border: solid 1px #F39800;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-out;
  text-align: center;
}
.modal .modal-body .tab_area .btn_tab.active {
  background: #F39800;
}
.modal .modal-body .tab_area .btn_tab.active input {
  color: white;
}
.modal .modal-body .tab_area .btn_tab input {
  color: #F39800;
  position: relative;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 3px;
  border: 0;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.modal .modal-body .intro {
  position: relative;
}
.modal .modal-body .intro img {
  width: 100%;
  max-width: 100%;
}
.modal .modal-body .intro .intro_pic {
  display: none;
}
.modal .modal-body .intro .intro_pic.active {
  display: block;
}
.modal .modal-body .intro .intro_pic img {
  width: 100%;
  max-width: 100%;
}
.modal .modal-body span {
  font-weight: bold;
}
.modal .modal-body .cnt {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  margin: 10px 0;
  font-size: 18px;
  border: dashed rgba(243, 152, 0, 0.3);
  border-width: 1px 0 1px 0;
}
.modal .modal-body ol {
  list-style: decimal;
  padding: 0 0 0 20px;
}
.modal .modal-body ul {
  font-size: 18px;
  list-style: disc;
  padding: 0 0 0 20px;
}
.modal .modal-footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
}
.modal .modal-footer .ps {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 20px 0;
}
.modal .modal-footer .btn {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 17px 40px;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 10px;
  color: #fff;
  background-color: #F39800;
  border: 1px solid #F39800;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.modal .modal-footer .btn:hover {
  color: #F39800;
  background-color: #fff;
}

@media (max-width: 1450px) {
  header .nav_area ul {
    margin: 0 0 0 0;
  }
  header .nav_area ul li a {
    font-size: 1.125rem;
  }
}
@media (max-width: 1300px) {
  header .nav_area {
    padding: 0 20px;
  }
  header .nav_area ul {
    margin: 0 7% 0 0;
  }
  header .nav_area ul li a {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  header {
    height: 35px;
    background-color: transparent;
  }
  header .nav_mobile {
    position: relative;
    display: block;
  }
  header .nav_mobile-btn {
    position: absolute;
    top: 5px;
    right: 0px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_mobile-btn-line {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background: #F39800;
    border-radius: 4px;
    margin: 2.5px 0;
  }
  header .nav_language {
    position: absolute;
    top: 110px;
    right: 5px;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_sns {
    position: absolute;
    top: 50px;
    right: 0;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_area {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    justify-content: flex-start;
  }
  header .nav_area .logo {
    width: 200px;
    margin: 50px auto;
  }
  header .nav_area ul {
    position: relative;
    width: auto;
    height: auto;
    margin: 2% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_area ul li {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  header .nav_area ul li a {
    position: relative;
    width: auto;
    height: auto;
    box-sizing: border-box;
    padding: 3px;
    color: #061f37;
    font-size: 1.6rem;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  header .nav_area ul li a:hover {
    color: #F39800;
  }
  header .nav_area ul li.btn a {
    padding: 12px 35px;
    color: #fff;
    background-color: #F39800;
    border: 1px solid #F39800;
    border-radius: 5px;
  }
  header .nav_area ul li.btn a:hover {
    color: #F39800;
    background-color: #fff;
  }
  header .nav_area ul li.active a {
    color: #F39800;
  }
  footer .footer_cnt {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .info {
    justify-content: center;
    align-items: center;
  }
  footer .info_detals {
    font-size: 14px;
  }
  footer .info_detals .detal {
    margin: 5px 0;
    justify-content: center;
    align-items: center;
  }
  footer .social_icons a {
    width: 30px;
    height: 30px;
    margin: 20px 10px 50px 10px;
  }
  footer.sp .footer_section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer.sp .footer_section .cnt {
    padding-left: 50%;
    transform: translateX(-25%);
  }
  .modal .modal-dialog {
    max-width: 800px;
  }
  .modal .modal-content {
    margin: 50px auto;
    padding: 10px 20px;
  }
  .modal .modal-header .modal-title {
    font-size: 24px;
  }
  .modal .modal-header .sub {
    font-size: 16px;
  }
  .modal .modal-body {
    font-size: 16px;
    line-height: 1.3;
  }
  .modal .modal-footer .ps {
    font-size: 18px;
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  .modal .modal-footer .btn {
    padding: 17px 40px;
    font-size: 24px;
  }
}
.controls {
  position: absolute;
  bottom: 10%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sd_arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat;
  cursor: pointer;
  filter: grayscale(1);
  transition: filter 300ms;
}
.sd_arrow:hover {
  filter: grayscale(0);
}

.arr_prev {
  left: 0;
  background-image: url("../../assets/images/icons/arr_prev.png");
}

.arr_next {
  order: 3;
  right: 0;
  background-image: url("../../assets/images/icons/arr_next.png");
}

.sd_dots {
  flex: 0 0 auto;
  margin: 15px 6px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.sd_dots li {
  margin: 0 6px;
  background-color: #bbb;
  line-height: 0;
  border-radius: 8px;
  height: 12px;
  width: 12px;
  overflow: hidden;
  transition: background 300ms, width 300ms;
}
.sd_dots li:hover {
  background-color: rgba(243, 152, 0, 0.6);
}
.sd_dots li.slick-active {
  background-color: #F39800;
  width: 24px;
}
.sd_dots button {
  font-size: 0;
  opacity: 0;
}

@media (max-width: 768px) {
  .controls {
    width: 90%;
  }
  footer {
    background: linear-gradient(360deg, #585858 60%, #EEEEEE 40%);
  }
  footer .footer_section .footer_section2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer .footer_section .footer_section2 .cnt {
    padding-left: 50%;
    transform: translateX(-25%);
  }
}
.modal .modal-dialog {
  max-width: 500px;
}
.modal .modal-dialog .modal-content {
  background-color: #0055a6;
  border-bottom: solid 10px #2e264a;
  border-right: solid 6px #2e264a;
  padding: 15px 30px 30px 20px;
}
.modal .modal-dialog .modal-content .modal-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: solid 1px #f9dc48;
  border-bottom: none;
}
.modal .modal-dialog .modal-content .modal-header h5 {
  text-align: center;
  color: white;
  padding: 1% 0;
  font-size: 18px;
}
.modal .modal-dialog .modal-content .modal-header .close {
  color: #f9dc48;
  text-shadow: none;
  opacity: 1;
  font-size: 20px;
}
.modal .modal-dialog .modal-content .modal-body {
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-dialog .modal-content .modal-body h3 {
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 3% 0 2% 0;
}

.kv_container {
  position: relative;
  height: 50vw;
  overflow: hidden;
  background-color: #3bc4f4;
}
.kv_container .kvBg {
  position: relative;
  animation: cloud 3s linear infinite alternate both;
}
.kv_container .kvBg img {
  width: 100%;
  max-width: 100%;
}
@keyframes cloud {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.kv_container .tit {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.kv_container .tit .t1 {
  position: absolute;
  width: 80%;
  left: 10%;
  margin-top: 2%;
}
.kv_container .tit .t1 img {
  width: 100%;
  max-width: 100%;
}
.kv_container .tit .people1 {
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  position: absolute;
  animation: p2_ani 5s ease-in-out 1s infinite normal both;
}
.kv_container .tit .people1 img {
  width: 100%;
  max-width: 100%;
}
.kv_container .tit .people2 {
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  width: 90%;
  position: absolute;
  animation: p2_ani 5s ease-in-out infinite normal both;
}
.kv_container .tit .people2 img {
  width: 100%;
  max-width: 100%;
}
@keyframes p2_ani {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
  35% {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
  40% {
    opacity: 1;
    transform: translateX(-50%) translateY(5%);
  }
  45% {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(5%);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
}
.kv_container .tit .df_logo {
  position: absolute;
  width: 10%;
  left: 2%;
  margin-top: 2%;
}
.kv_container .tit .df_logo img {
  width: 100%;
  max-width: 100%;
}

#home {
  width: 100%;
  max-width: 100%;
  background: white;
  position: relative;
  overflow: hidden;
}
#home .sections .title {
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections .title.en {
  font-size: 1.8rem;
}
#home .sections .title.sp {
  margin-top: -5%;
  display: inline-block;
  padding: 2% 10%;
  background-color: #061f37;
}
#home .sections .title span {
  position: relative;
  margin-left: 10px;
  font-size: 1rem;
  color: transparent;
  letter-spacing: 12px;
  line-height: 1.4rem;
  border: solid 0.5px white;
}
#home .sections .title span:after {
  content: "";
  position: absolute;
  border: solid 2px #061f37;
  width: 14px;
  height: 14px;
  background: #F37229;
  top: 60%;
  left: 60%;
  animation: orangeRun 2s linear 1s infinite alternate both;
}
@keyframes orangeRun {
  0% {
    top: 60%;
    left: 60%;
  }
  25% {
    top: 60%;
    left: -20%;
  }
  50% {
    top: -25%;
    left: -25%;
  }
  75% {
    top: -25%;
    left: 60%;
  }
  100% {
    top: 60%;
    left: 60%;
  }
}
#home .sections .sub_title {
  color: white;
  margin: 3% 0;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections .sub_title a {
  color: #FF9839;
}
#home .sections.intro {
  padding: 5% 0 5% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
}
#home .sections.intro .sc_intro .title {
  color: #0055a6;
}
#home .sections.intro .sc_intro .content {
  padding: 4% 5% 0 5%;
  color: #0055a6;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: left;
}
#home .sections.intro .sc_intro .content span a {
  font-weight: 500;
  color: #e7290f;
}
#home .sections.intro .gift_area {
  margin: 2% 5% 0 5%;
  padding: 2% 0;
  background-color: #0055a6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-radius: 10px;
}
#home .sections.intro .gift_area .text {
  flex: 0 0 60%;
  font-size: 18px;
  line-height: 25px;
  color: white;
  font-weight: 300;
}
#home .sections.intro .gift_area .text .fb a {
  color: #f9dc48;
  font-weight: 500;
}
#home .sections.intro .gift_area .gift {
  flex: 0 0 30%;
}
#home .sections.intro .gift_area .gift img {
  width: 100%;
  max-width: 100%;
}
#home .sections.intro .mainForm_tag {
  padding: 0 5%;
}
#home .sections.intro .mainForm_tag .tagName {
  position: relative;
  font-size: 22px;
  margin-top: 5%;
  letter-spacing: 0.2rem;
  color: #0055a6;
  font-weight: bold;
  cursor: pointer;
  border-bottom: none;
  padding: 0 0 10px 0;
  transition: all 0.6s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
#home .sections.intro .mainForm_tag .tagName span {
  font-size: 18px;
  letter-spacing: 0;
}
#home .sections.intro .mainForm_tag .tagName:before {
  position: absolute;
  content: "▼";
  transform: rotate(0deg);
  left: 28%;
  margin-top: 2px;
  transition: all 0.4s;
  font-size: 18px;
}
#home .sections.intro .mainForm_tag .tagName.active {
  border-bottom: solid 1px #0055a6;
}
#home .sections.intro .mainForm_tag .tagName.active:before {
  transform: rotate(-180deg);
  transition: all 0.4s;
}
#home .sections.intro .mainForm_tag .main_form {
  padding: 3% 2% 0 2%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
#home .sections.intro .mainForm_tag .main_form .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
#home .sections.intro .mainForm_tag .main_form .form-group.fb {
  flex-wrap: wrap;
  gap: 10px;
}
#home .sections.intro .mainForm_tag .main_form .form-group.fb .inputLabel {
  flex: 0 0 100%;
  width: 100%;
}
#home .sections.intro .mainForm_tag .main_form .form-group.fb .inputText {
  flex: 0 0 100%;
  width: 100%;
}
#home .sections.intro .mainForm_tag .main_form .form-group .inputLabel {
  flex: 0 0 20%;
  font-size: 18px;
}
#home .sections.intro .mainForm_tag .main_form .form-group .inputText {
  flex: 0 0 80%;
}
#home .sections.intro .mainForm_tag .main_form .form-group .inputText input {
  width: 60%;
}
#home .sections.intro .mainForm_tag .main_form .form-group.Q_select {
  margin-top: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
#home .sections.intro .mainForm_tag .main_form .form-group.Q_select .check {
  margin-left: 2.5%;
  margin-top: 1%;
  font-size: 16px;
  font-weight: 300;
}
#home .sections.intro .mainForm_tag .main_form .form-group.Q_select .check textarea {
  display: block;
  margin-top: 2%;
}
#home .sections.intro .mainForm_tag .main_form .btn_submit {
  margin-top: 3%;
  transition: all 0.4s;
}
#home .sections.intro .mainForm_tag .main_form .btn_submit a input {
  color: white;
  padding: 15px 25px 15px 30px;
  font-size: 24px;
  letter-spacing: 0.2rem;
  background: #0055a6;
  border-bottom: solid 8px #2e264a;
  border-right: solid 6px #2e264a;
  border-top: none;
  border-left: none;
}
#home .sections.intro .mainForm_tag .main_form .btn_submit:hover {
  transform: scale(0.95);
  transition: all 0.4s;
}
#home .sections.video_QA {
  background: #0055a6;
  padding: 5% 0;
}
#home .sections.video_QA .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .sections.video_QA .container .title {
  color: white;
  stroke-width: 1px;
}
#home .sections.video_QA .container .video_section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  gap: 25px;
}
#home .sections.video_QA .container .video_section .sections {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 0 15px 0;
}
#home .sections.video_QA .container .video_section .sections .section_title {
  position: relative;
  color: white;
  font-size: 20px;
  border: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
#home .sections.video_QA .container .video_section .sections .section_title span {
  font-size: 18px;
  letter-spacing: 0;
}
#home .sections.video_QA .container .video_section .sections .section_title:before {
  position: absolute;
  content: "▼";
  transform: rotate(0deg);
  left: 102%;
  margin-top: 2px;
  transition: all 0.4s;
  font-size: 16px;
}
#home .sections.video_QA .container .video_section .sections .section_title.active:before {
  transform: rotate(180deg);
  transition: all 0.4s;
}
#home .sections.video_QA .container .video_section .sections .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  padding: 30px 5% 30px 5%;
  background-color: #0099d1;
  border-radius: 10px;
}
#home .sections.video_QA .container .video_section .sections .content .iframe {
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .sections.video_QA .container .video_section .sections .content .iframe iframe {
  border-radius: 5px;
  border: solid 8px #0055A5;
}
#home .sections.video_QA .container .video_section .sections .content .des {
  color: white;
  border-top: dashed 1px white;
  margin-top: 3%;
  padding: 3% 0 0 0;
  font-size: 18px;
  line-height: 25px;
}
#home .sections.video_QA .container .video_section .sections .content .gift_area {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  padding: 1% 3%;
  background-color: #f9dc48;
  border-radius: 20px;
  margin-top: 3%;
  border-bottom: solid 5px #0055a6;
  border-right: solid 4px #0055a6;
}
#home .sections.video_QA .container .video_section .sections .content .gift_area .text {
  color: #0055a6;
  font-weight: bold;
  margin-top: 3%;
  font-size: 20px;
  line-height: 30px;
}
#home .sections.video_QA .container .video_section .sections .content .gift_area .gift {
  width: 70%;
}
#home .sections.video_QA .container .video_section .sections .content .gift_area .gift img {
  width: 100%;
  max-width: 100%;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 {
  width: 100%;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form {
  position: relative;
  width: 100%;
  padding: 5% 2% 0 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group .inputLabel, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group .inputLabel {
  color: white;
  flex: 0 0 15%;
  font-size: 18px;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group .inputText, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group .inputText {
  flex: 0 0 70%;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group .inputText input, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group .inputText input {
  width: 60%;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group.Q_select, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group.Q_select {
  margin-top: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group.Q_select .check, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group.Q_select .check {
  color: white;
  font-size: 16px;
  font-weight: 300;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .form-group.Q_select .check textarea, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .form-group.Q_select .check textarea {
  display: block;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .btn_submit, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .btn_submit {
  margin-top: 3%;
  transition: all 0.4s;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .btn_submit a input, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .btn_submit a input {
  color: white;
  padding: 15px 25px 15px 30px;
  font-size: 24px;
  letter-spacing: 0.2rem;
  background: #0055a6;
  border-bottom: solid 8px #2e264a;
  border-right: solid 6px #2e264a;
  border-top: none;
  border-left: none;
}
#home .sections.video_QA .container .video_section .sections .content #regForm_video2 .main_form .btn_submit:hover, #home .sections.video_QA .container .video_section .sections .content #regForm_video1 .main_form .btn_submit:hover {
  transform: scale(0.95);
  transition: all 0.4s;
}
#home .sections.video_QA .container .video_section .sections.section2 .content {
  background-color: #6d81bb;
}
#home .sections.footer {
  background-color: #0055A5;
}
#home .sections.footer .container .content {
  padding: 3% 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
#home .sections.footer .container .content .ci {
  flex: 0 0 25%;
  width: 100%;
}
#home .sections.footer .container .content .ci img {
  width: 100%;
  max-width: 100%;
}
#home .sections.footer .container .content .des {
  flex: 0 0 75%;
  font-size: 14px;
  line-height: 25px;
  position: relative;
  color: white;
}
#home .sections.footer .container .content .des span {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
}
#home .sections.features .featureItems {
  position: relative;
  padding: 4% 0 8% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
#home .sections.features .featureItems.en .item .img_inner .describtion {
  transform: translate(-50%, -30%);
}
#home .sections.features .featureItems .item {
  position: relative;
  flex: 0 0 30%;
  transition: all 0.6s ease-out;
}
#home .sections.features .featureItems .item:hover .img_inner .mask {
  opacity: 1;
}
#home .sections.features .featureItems .item:hover .img_inner .title {
  top: 35%;
}
#home .sections.features .featureItems .item:hover .img_inner .describtion {
  top: 55%;
  opacity: 1;
}
#home .sections.features .featureItems .item .img_inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#home .sections.features .featureItems .item .img_inner img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}
#home .sections.features .featureItems .item .img_inner .mask {
  position: absolute;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 1s ease-out;
}
#home .sections.features .featureItems .item .img_inner .title {
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.44px;
  line-height: normal;
  transition: all 0.4s ease-out;
}
#home .sections.features .featureItems .item .img_inner .describtion {
  width: 100%;
  max-width: 100%;
  position: absolute;
  padding: 0 12%;
  z-index: 3;
  opacity: 0;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.4rem;
  transition: all 0.6s ease-out;
}
#home .sections.speakers {
  padding: 5% 0;
  background: url("../../assets/images/layout/spk_bg.jpg");
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#home .sections.speakers .title span:after {
  border: none;
}
#home .sections.speakers .slick_banner {
  position: relative;
  margin-top: 4%;
}
#home .sections.speakers .slick_banner .slick_item {
  flex: 0 0 25%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 20px;
}
#home .sections.speakers .slick_banner .slick_item .pic img {
  width: 100%;
  max-width: 100%;
}
#home .sections.speakers .slick_banner .slick_item .item_Area {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#home .sections.speakers .slick_banner .slick_item .item_Area .item_title {
  color: white;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  margin: 0 0 5% 0;
}
#home .sections.speakers .slick_banner .slick_item .item_Area .item_content {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 5px 0;
  line-height: 1.2rem;
}
#home .sections.speakers .slick_banner .slick-dots {
  bottom: -80px;
}
#home .sections.speakers .slick_banner .slick-dots li button:before {
  color: rgba(255, 255, 255, 0.8);
}
#home .sections.speakers .slick_banner .slick-dots li.slick-active button::before {
  color: white;
  box-shadow: 0px 0px 1px black;
  border: solid 1px white;
  border-radius: 50px;
}
#home .sections.medium {
  padding: 8% 0;
}
#home .sections.medium .item_row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#home .sections.medium .item_row .item {
  flex: 0 0 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .sections.medium .item_row .item .medium_title {
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1.2px;
}
#home .sections.medium .item_row .item .medium_content {
  padding: 3% 14%;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.54px;
  line-height: 1.4rem;
  text-align: left;
}
#home .sections.medium .item_row .item.item1 {
  border-right: solid 2px white;
}
#home .sections.medium .item_row .item.item1 .medium_title:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  left: -50px;
  background: url("../../assets/images/icons/user.png");
  background-size: contain;
  background-position: center;
}
#home .sections.medium .item_row .item.item2 .medium_title:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  left: -50px;
  background: url("../../assets/images/icons/monitor.png");
  background-size: contain;
  background-position: center;
}
#home .sections.location .loc_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 4% 0;
}
#home .sections.location .loc_row .pic {
  width: 500px;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
}
#home .sections.location .loc_row .pic img {
  width: 500px;
}
#home .sections.location .loc_row .googleMap {
  display: inline-block;
  width: 500px;
  max-width: 100%;
  height: 280px;
}
#home .sections.email {
  position: relative;
  overflow: hidden;
}
#home .sections.email .orange_outter {
  width: 1200px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
#home .sections.email .orange_outter .orange_inner {
  position: absolute;
  width: 116px;
  height: 87px;
}
#home .sections.email .orange_outter .orange_inner .orangeStroke {
  position: absolute;
}
#home .sections.email .orange_outter .orange_inner .orangeStroke img {
  width: 29px;
}
#home .sections.email .orange_outter .orange_inner.orange1 {
  left: 13%;
  margin-top: 2%;
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_1 {
  left: 0px;
  top: 0px;
  animation: orangeMove1 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove1 {
  0% {
    top: 0px;
    left: 0px;
  }
  50% {
    top: 29px;
    left: 0px;
  }
  100% {
    top: 29px;
    left: 0px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_2 {
  left: 58px;
  top: 29px;
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_3 {
  left: 29px;
  top: 58px;
  animation: orangeMove3 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove3 {
  0% {
    left: 29px;
    top: 58px;
  }
  50% {
    left: 29px;
    top: 29px;
  }
  100% {
    left: 29px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange1 .orangeStroke1_4 {
  left: 87px;
  top: 58px;
  animation: orangeMove4 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove4 {
  0% {
    left: 87px;
    top: 58px;
  }
  50% {
    left: 87px;
    top: 29px;
  }
  100% {
    left: 87px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange2 {
  margin-top: 2%;
  left: 76%;
  transform: rotateY(180deg);
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_1 {
  left: 0px;
  top: 0px;
  animation: orangeMove2_1 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove2_1 {
  0% {
    left: 0px;
    top: 0px;
  }
  50% {
    left: 0px;
    top: 29px;
  }
  100% {
    left: 0px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_2 {
  left: 58px;
  top: 29px;
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_3 {
  left: 29px;
  top: 58px;
  animation: orangeMove2_3 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove2_3 {
  0% {
    left: 29px;
    top: 58px;
  }
  50% {
    left: 29px;
    top: 29px;
  }
  100% {
    left: 29px;
    top: 29px;
  }
}
#home .sections.email .orange_outter .orange_inner.orange2 .orangeStroke2_4 {
  left: 87px;
  top: 58px;
  animation: orangeMove2_4 1.2s steps(3, end) infinite alternate-reverse both;
}
@keyframes orangeMove2_4 {
  0% {
    left: 87px;
    top: 58px;
  }
  50% {
    left: 87px;
    top: 29px;
  }
  100% {
    left: 87px;
    top: 29px;
  }
}
#home .sections.email .formArea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .sections.email .formArea .email_title {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.72px;
  line-height: 2rem;
}
#home .sections.email .formArea .email_title.en {
  font-size: 1rem;
  line-height: initial;
}
#home .sections.email .formArea .email_input {
  width: 100%;
  padding: 0 20%;
  margin-top: 30px;
}
#home .sections.email .formArea .email_input.en {
  margin-top: 20px;
}
#home .sections.email .formArea .email_input input {
  width: 100%;
  padding: 5px 10px;
  border: solid 1px #F37229;
}
#home .sections.email .formArea .email_submit {
  position: relative;
  margin-top: 50px;
  overflow: visible;
}
#home .sections.email .formArea .email_submit:hover input {
  background: #061F37;
  border: solid 2px #F37229;
  color: #F37229;
}
#home .sections.email .formArea .email_submit:hover:before {
  background: #061F37;
  border: solid 3.5px #f37229;
}
#home .sections.email .formArea .email_submit input {
  padding: 15px 60px;
  background: #F37229;
  border: solid 2px #061F37;
  color: #fff;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2.32px;
  transition: all 0.2s ease-in-out;
}
#home .sections.email .formArea .email_submit:before {
  content: "";
  position: absolute;
  background: #F37229;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: solid 3.5px #061f37;
  left: -5px;
  top: -5px;
  transition: all 0.2s ease-in-out;
}
#home .blank_bg {
  width: 100%;
  max-width: 100%;
}
#home .tab {
  position: relative;
  width: 100%;
  background-color: rgba(29, 30, 39, 0.5);
  background-image: url(../../assets/images/layout/tab_mask.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10% 0 5% 0;
  margin: 0;
}
#home .tab .kv_arrow {
  position: absolute;
  width: 7%;
  max-width: 7%;
  z-index: 100;
  left: 50%;
  transform: translate(-50%);
  top: 0;
  animation: arrow_shine 1.2s ease-in-out both infinite;
}
#home .tab_cnt {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 20px 0 0 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home .tab_cnt .tab_pannel {
  padding: 5% 0 0 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .tab_cnt .tab_pannel .tab_section {
  width: 100%;
  max-width: 100%;
  padding: 1% 13%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .tab_cnt .tab_pannel .tab_section .tab_item {
  opacity: 0.4;
}
#home .tab_cnt .tab_pannel .tab_section .tab_item.active {
  opacity: 1;
}
#home .tab_cnt .tab_pannel .tab_section .tab_item img {
  width: 65%;
  max-width: 65%;
}
#home .tab_cnt .tab_pannel .tab_content {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .tab_cnt .tab_pannel .tab_content .content_item {
  display: none;
}
#home .tab_cnt .tab_pannel .tab_content .content_item.active {
  display: block;
}
#home .tab_cnt .tab_pannel .tab_content .content_item img {
  width: 100%;
  max-width: 100%;
}
#home .tab_cnt .t {
  margin-top: 10%;
  position: relative;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
#home .brand {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(rgba(29, 30, 39, 0.5), #1d1e27);
  margin: 0;
}
#home .brand .t {
  padding: 3% 0;
  position: relative;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
#home .brand .kv_arrow {
  position: absolute;
  width: 5%;
  max-width: 5%;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: 98%;
  animation: arrow_shine 1.2s ease-in-out both infinite;
}
#home .form {
  position: relative;
  padding: 5% 0;
}
#home .form_area {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#home .form_area-cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2% 6% 0 6%;
}
#home .form_area-cnt .groupTit {
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-align: left;
  color: white;
  line-height: 1.4em;
  z-index: 1;
  top: 0;
}
#home .form_area-cnt form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
#home .form_area-cnt form .input_area {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#home .form_area-cnt form .input_area .inputRow {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .form_area-cnt form .input_area .inputRow input {
  width: 100%;
  max-width: 100%;
  padding: 10px 0 10px 10px;
  margin: 1.5% 2%;
  border: none;
  border-radius: 6px;
}
#home .form_area-cnt form .textArea {
  margin-top: 1.5%;
}
#home .form_area-cnt form .textArea #detail_content {
  border: none;
  border-radius: 6px;
  padding: 10px 0 10px 10px;
  width: 650px;
}
#home .form_area-cnt .btn_submit {
  position: relative;
  width: 20%;
  text-align: center;
  margin: 55px auto;
}
#home .exp {
  position: relative;
  padding: 5% 0 1% 0;
  background-color: #1D1E27;
}
#home .exp_cnt {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}
#home .exp_cnt .t {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.1em;
}
#home .exp_cnt .sub_t {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #FFF;
  line-height: 1.5;
  padding: 0 10%;
  margin-top: 0;
}
#home .exp_cnt .exp_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5% 15%;
  transform: translateX(5%);
}
#home .exp_cnt .exp_content .exp_rows {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .exp_cnt .exp_content .exp_rows .exp_line {
  width: 100%;
  max-width: 100%;
  text-align: left;
  color: white;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.1rem;
  padding: 2% 0;
}
#home .exp_cnt .exp_content .exp_rows .exp_line .exp_title {
  color: #F39800;
  font-weight: 800;
  font-size: 32px;
  padding: 0 2%;
}

footer {
  background-color: white;
}
footer .des {
  padding: 2% 0;
  text-align: center;
}

@media (max-width: 768px) {
  #home .sections.intro {
    padding: 5% 0 10% 0;
  }
  #home .sections.intro .sc_intro .title {
    margin: 5% 0;
  }
  #home .sections.intro .sc_intro .content {
    font-size: 16px;
    line-height: 25px;
    padding: 2% 2% 3% 2%;
  }
  #home .sections.intro .gift_area {
    margin: 2% 0 0 0;
    flex-direction: column;
    padding: 5%;
  }
  #home .sections.intro .gift_area .text {
    font-size: 16px;
  }
  #home .sections.intro .mainForm_tag {
    padding: 5% 2% 0 2%;
  }
  #home .sections.intro .mainForm_tag .tagName span {
    display: none;
  }
  #home .sections.intro .mainForm_tag .tagName:before {
    left: 45%;
  }
  #home .sections.intro .mainForm_tag .main_form {
    padding: 5% 0 0 0;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .inputLabel {
    font-size: 16px;
    flex: 0 0 35%;
    line-height: 30px;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .inputLabel.short {
    letter-spacing: 1rem;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .inputText {
    flex: 0 0 65%;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .inputText input {
    width: 100%;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .check input {
    flex: 0 0 5%;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .check label {
    flex: 0 0 90%;
  }
  #home .sections.intro .mainForm_tag .main_form .form-group .check textarea {
    width: 100%;
  }
  #home .sections.video_QA .sc_intro .video_section {
    align-items: center;
    margin-top: 50px;
  }
  #home .sections.video_QA .sc_intro .video_section .sections {
    margin: 0 0 10px 0;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .section_title {
    font-size: 16px;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .section_title span {
    display: none;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content {
    padding: 8% 5%;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .iframe {
    border: none;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .iframe iframe {
    border: none;
    width: 100%;
    height: auto;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .des {
    padding: 5% 2%;
    font-size: 18px;
    font-weight: 300;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .gift_area {
    padding: 2% 5%;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .gift_area .gift {
    width: 100%;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .gift_area .text {
    font-size: 16px;
    line-height: 25px;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video1, #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video2 {
    padding: 5% 2% 0 2%;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video1 .form-group, #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video2 .form-group {
    width: 100%;
    justify-content: space-between;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video1 .form-group .inputLabel, #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video2 .form-group .inputLabel {
    flex: 0 0 30%;
    display: inline;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video1 .form-group .inputLabel.short, #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video2 .form-group .inputLabel.short {
    letter-spacing: 2rem;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video1 .form-group .inputText, #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video2 .form-group .inputText {
    flex: 0 0 60%;
  }
  #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video1 .form-group textarea, #home .sections.video_QA .sc_intro .video_section .sections .content .main_form.video2 .form-group textarea {
    width: 100%;
  }
  #home .sections.footer .container .content {
    padding: 10% 2% 5% 2%;
    flex-direction: column;
    gap: 25px;
  }
  #home .sections.footer .container .content .ci {
    width: 80%;
  }
}
span.required_mark {
  color: red;
  letter-spacing: 0.4rem;
}

select {
  border: solid 1px #3549cd;
  color: #3549cd;
  padding: 5px;
}

.form {
  position: relative;
  padding: 60px 0;
  background-color: #f4f4f4;
}
.form .slg {
  position: relative;
  margin: 0 0 35px 0;
}
.form .slg h3 {
  position: relative;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
}
.form .slg p {
  position: relative;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin: 15px auto;
}
.form .slg p a {
  color: #000;
}
.form_area {
  position: relative;
  width: 100%;
  border-radius: 25px;
  margin: 100px auto;
  box-sizing: border-box;
  padding: 3px;
}
.form_area-inner {
  position: relative;
  width: 100%;
  border-radius: 23px;
  box-sizing: border-box;
  border: solid 2px #f78319;
  background-color: white;
}
.form_area-tit {
  position: relative;
  width: 100%;
  text-align: center;
}
.form_area-tit_inner {
  position: relative;
  text-align: center;
  font-size: 2.125rem;
  letter-spacing: 0.9375rem;
  line-height: 1.5;
  font-weight: bold;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 120px;
  background-color: #f4f4f4;
  margin: -1.5625rem 0 0 0;
}
.form_area .groupTit {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 17px;
  margin: 35px 0 15px 0;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
}
.form_area .groupTit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, #F37229, 80%, #F37229);
}
.form_area-cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.form_area-cnt .cnt-tit {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin: 30px 0 10px 0;
  box-sizing: border-box;
  padding: 10px 30px;
  border-bottom: 1px solid #F39800;
}
.form_area-cnt form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.form_area-cnt .form-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.125rem;
  margin: 20px 0;
}
.form_area-cnt .form-group.info {
  flex-direction: row;
  justify-content: flex-start;
}
.form_area-cnt .form-group.info .inputLabel {
  border-bottom: none;
  font-weight: normal;
}
.form_area-cnt .form-group.info .inputText {
  margin-left: 2%;
  flex: 0 0 auto;
}
.form_area-cnt .form-group .inputLabel {
  position: relative;
  margin: 5px;
  text-align: left;
  color: #1254e0;
  padding-bottom: 10px;
  border-bottom: solid 1px white;
  font-size: 22px;
  font-weight: bold;
}
.form_area-cnt .form-group .inputLabel font {
  position: absolute;
  top: 50%;
  left: -15px;
  margin: -5px 0 0 0;
}
.form_area-cnt .form-group .check {
  margin-left: 5%;
  margin: 20px 0 0 35px;
  padding: 0 50% 0 0;
}
.form_area-cnt .form-group .check input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: solid 1px #3549cd;
}
.form_area-cnt .form-group .check label {
  color: #3549cd;
  margin-left: 5px;
}
.form_area-cnt .form-group .check textarea {
  margin-top: 2%;
  border: solid 1px #3549cd;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
}
.form_area-cnt .form-group .check.check5 label#Q2_5 {
  letter-spacing: 1.5px;
}
.form_area-cnt .form-group .inputText {
  position: relative;
  flex: 1 0 auto;
  border: solid 1px #3549cd;
  border-radius: 5px;
}
.form_area-cnt .form-group .inputText.mut {
  width: 150px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.form_area-cnt .form-group .inputText.mut .inputMut {
  width: 150px;
  margin: 0;
}
.form_area-cnt .form-group .inputText.mut .inputMut.S {
  width: 100px;
}
.form_area-cnt .form-group .inputText.mut .inputMut.M {
  width: 120px;
}
.form_area-cnt .form-group .inputText.mut .inputMut.L {
  width: 300px;
}
.form_area-cnt .form-group.full {
  width: 100%;
}
.form_area-cnt .form-group.check {
  width: 100%;
  margin: 0 0 30px 0;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.form_area-cnt .form-group.check .inputCheck {
  position: relative;
  margin: 5px 15px;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #2c2c2c;
}
.form_area-cnt .form-group.check .inputCheck input#agree {
  position: relative;
  width: 30px;
  height: 30px;
  transform: scale(1.5);
  margin: 0 15px 0 0;
}
.form_area-cnt .form-group.check .inputCheck input#product_id {
  position: relative;
  width: 20px;
  height: 20px;
  transform: scale(1);
  margin: 0 15px 0 0;
}
.form_area-cnt .ps {
  position: relative;
  width: 100%;
}
.form_area-cnt .ps .wording {
  color: #2c2c2c;
  position: relative;
  font-weight: 500;
  line-height: 1.5;
}
.form_area-cnt .ps .pr_box {
  position: relative;
  width: 100%;
  border-radius: 15px;
  margin: 25px auto;
}
.form_area-cnt .ps .pr_box-tit {
  position: relative;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 0;
  background-color: #f39800;
  color: #fff;
}
.form_area-cnt .ps .pr_box-tit .arr {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 30px;
  height: auto;
  margin: -15px 0 0 0;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.form_area-cnt .ps .pr_box-cnt {
  position: relative;
  width: 100%;
  line-height: 1.5;
  text-align: justify;
  box-sizing: border-box;
  padding: 30px;
  background-color: #FFF3E9;
  display: none;
}
.form_area-cnt .ps .pr_box-cnt ul {
  padding: 0 0 0 35px;
}
.form_area-cnt .ps .pr_box-cnt ol {
  padding: 0 0 0 35px;
}
.form_area-cnt .btn_submit {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 55px auto;
}
.form_area-cnt .btn_submit.email_submit {
  position: relative;
  margin-top: 50px;
  overflow: visible;
}
.form_area-cnt .btn_submit.email_submit:hover input {
  transform: scale(1.05);
  transition: all 0.2s ease-in-out;
}
.form_area-cnt .btn_submit.email_submit input {
  padding: 15px 60px;
  background: linear-gradient(45deg, #324dda, #5991eb);
  color: #fff;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2.32px;
  transition: all 0.2s ease-in-out;
}
.form .logos {
  position: relative;
  width: 100%;
  text-align: center;
}
.form .logos .title {
  position: relative;
  text-align: center;
  font-size: 1.625rem;
  font-weight: bold;
}
.form .logos .cnt_title {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 1.625rem;
  font-weight: bold;
  margin: 70px 0 15px 0;
  background-image: linear-gradient(90deg, #000, #000);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.form .logos .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.form .logos .items .item {
  position: relative;
  flex: 1 0 33%;
  max-width: 33%;
  box-sizing: border-box;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .logos .items .item img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 25px;
  transition: all 0.2s ease-out;
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}
.form .logos .items .item:hover img {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.form .logos .items.cnt_G .item {
  flex: 1 0 33%;
  max-width: 33%;
  padding: 5px 15px;
}

@media (max-width: 768px) {
  .form {
    padding: 30px 0;
  }
  .form .slg {
    margin: 0 0 25px 0;
    line-height: 1.3;
  }
  .form .slg h3 {
    font-size: 21px;
  }
  .form .slg p {
    font-size: 16px;
    margin: 15px auto;
  }
  .form_area {
    border-radius: 15px;
    margin: 60px auto;
  }
  .form_area-inner {
    border-radius: 13px;
    padding: 0 15px 10px 15px;
  }
  .form_area-tit_inner {
    font-size: 21px;
    padding: 0 40px;
    margin: -33px 0 0 0;
  }
  .form_area-cnt .cnt-tit {
    font-size: 18px;
    margin: 30px 0 15px 0;
    padding: 10px 15px;
  }
  .form_area-cnt .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 16px;
    margin: 10px 0;
  }
  .form_area-cnt .form-group .inputLabel {
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 2.5rem;
  }
  .form_area-cnt .form-group .check {
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .form_area-cnt .form-group .check input {
    flex: 0 0 1;
  }
  .form_area-cnt .form-group .check label {
    flex: 0 0 1;
    line-height: 1.5rem;
  }
  .form_area-cnt .form-group .check textarea {
    width: 100%;
  }
  .form_area-cnt .form-group .inputText {
    width: 100%;
  }
  .form_area-cnt .form-group .inputText select {
    width: 100%;
  }
  .form_area-cnt .form-group .inputText.mut {
    width: 100%;
  }
  .form_area-cnt .form-group .inputText.mut .inputMut {
    width: 40%;
    margin: 5px 0;
  }
  .form_area-cnt .form-group.check {
    margin: 0 0 20px 0;
  }
  .form_area-cnt .form-group.check .inputCheck {
    margin: 5px 15px;
  }
  .form_area-cnt .ps .wording {
    font-size: 1.3125rem;
  }
  .form_area-cnt .btn_submit {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 55px auto;
  }
  .form .logos {
    margin: 75px 0 0 0;
  }
  .form .logos .title {
    font-size: 1.625rem;
  }
  .form .logos .items {
    margin: 35px 0 0 0;
  }
  .form .logos .items .item {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 5px 35px;
  }
  .form .logos .items .item img {
    padding: 15px;
  }
  .form .logos .items.cnt_G .item {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0 5px;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}/*# sourceMappingURL=all.css.map */