@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.btn:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn:hover {
    filter: brightness(1.1);
  }
}

.form-control {
  padding: 0 24px;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  color: #015251;
  background-color: #fff;
  border: 0;
  border-radius: 24px;
  width: 100%;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.form-control::placeholder {
  color: #7AA5A5;
  opacity: 1;
}

.radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

.radio-item {
  position: relative;
}
.radio-item + .radio-item {
  margin-left: 25px;
}
.radio-item input[type="radio"] {
  display: none;
}
.radio-item label {
  padding: 0 0 0 40px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  display: block;
  color: #015251;
  cursor: pointer;
}
.radio-item label:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.radio-item label:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #00383F;
  box-sizing: border-box;
  left: 6px;
  top: 6px;
  display: none;
}
.radio-item input:checked + label:after {
  display: block;
}
.radio-item input + label {
  transition: .7s ease;
}

.checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.checkbox-item {
  position: relative;
  display: block;
}
.checkbox-item + .checkbox-item {
  margin-top: 8px;
}
.checkbox-item input {
  display: none;
}
.checkbox-item label {
  padding: 0 0 0 40px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  display: block;
  color: #015251;
}
.checkbox-item label:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.checkbox-item label:after {
  content: '';
  background-image: url(../images/icon-check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  position: absolute;
  border-radius: 0;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  left: 0;
  top: 0;
  display: none;
}
.checkbox-item input:checked + label:after {
  display: block;
}
.checkbox-item input + label {
  transition: .7s ease;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 48px;
  padding: 0 48px 0 24px;
  font-weight: 400;
  line-height: 48px;
  color: #015251;
  font-size: 16px;
  vertical-align: middle;
  background: #fff url(../images/select-arrow.svg) right 24px center/20px 20px no-repeat;
  border: 0;
  border-radius: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form .form-control {
  border-radius: 24px;
}
.form textarea {
  height: 120px;
}
.form a {
  color: #786512;
  text-decoration: underline;
}
.form .form-section + .form-section {
  margin-top: 24px;
}
.form .form-label {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.form .form-label .required {
  position: absolute;
  top: .1em;
}
.form .required {
  color: #FBC859;
  font-size: 24px;
  position: relative;
  top: .1em;
  left: 0;
  margin-right: 6px;
}
.form .check-row {
  padding-top: 32px;
}
.form .check-row a {
  text-decoration: underline;
  color: #786512;
}
.form .check-row a:active {
  text-decoration: none;
}
@media (hover: hover) {
  .form .check-row a:hover {
    text-decoration: none;
  }
}

.modal-dialog {
  width: calc(100% - 16px * 2);
  max-width: 900px;
  margin: 20px auto;
}
.modal-content {
  position: relative;
  border: 0;
  border-radius: 20px;
  padding: 40px 40px 60px;
  background: #0F8B94;
  background: linear-gradient(360deg, #0f8b94 0%, #087a89 100%);
  font-size: 20px;
  line-height: 29px;
  color: #fff;
  word-break: break-all;
  text-align: justify;
}
.modal .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-image: url(../images/modal-close.svg);
  background-color: transparent;
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  box-sizing: border-box;
}
.modal .btn-close:active {
  opacity: .8;
}
@media (hover: hover) {
  .modal .btn-close:hover {
    opacity: .8;
  }
}
.modal .heading {
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  background: #FFA62C;
  background: linear-gradient(to right, #ffa62c 0%, #ffbc60 52%, #f3e249 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal p + p {
  margin-top: 16px;
}

.modal-backdrop {
  background-color: rgba(255, 255, 255, 0.7);
}

.modal-backdrop.show {
  opacity: 1;
}

@media (max-width: 750px) {
  .modal-dialog {
    max-width: 344px;
  }
  .modal-content {
    padding: 70px 24px 40px;
    font-size: 16px;
    line-height: 24px;
  }
  .modal .heading {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .modal p + p {
    margin-top: 12px;
  }
}
html {
  min-width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: #333;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin: 0;
}

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

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.scroll--hidden {
  overflow: hidden;
}

#container {
  overflow: hidden;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
  position: relative;
}

.text-block {
  display: inline-block;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

/* fade image in while loading and show a spinner as background image (good for progressive images) */
.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
  transition: opacity 300ms;
  background: #f7f7f7;
}

.site-content {
  position: relative;
  z-index: 1;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.site-header .container {
  max-width: 1280px;
}
.site-header .logo {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-image: url(../images/logo.png);
  position: absolute;
  display: block;
  top: 27px;
  left: 24px;
  z-index: 2;
  width: 281px;
  height: 32px;
}
@media (min-width: 751px) {
  .site-header.sticky .menu-toggle {
    display: block;
  }
  .site-header.sticky .menu-panel {
    display: none;
    background: #0F8B94;
    background: linear-gradient(360deg, #0f8b94 0%, #087a89 100%);
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding: 100px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }
  .site-header.sticky .main-menu {
    width: 388px;
  }
  .site-header.sticky .main-menu li {
    padding: 24px 0;
    border-bottom: 1px solid #5CD2DC;
    position: relative;
  }
  .site-header.sticky .main-menu li:before, .site-header.sticky .main-menu li:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 7px;
    height: 7px;
    border: 1px solid #5CD2DC;
    border-radius: 50%;
    background-color: #0b818e;
  }
  .site-header.sticky .main-menu li:before {
    left: 0;
  }
  .site-header.sticky .main-menu li:after {
    right: 0;
  }
  .site-header.sticky .main-menu li:last-child {
    border-bottom: 0;
  }
  .site-header.sticky .main-menu li:last-child:before, .site-header.sticky .main-menu li:last-child:after {
    display: none;
  }
  .site-header.sticky .main-menu a {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    letter-spacing: .08em;
    width: 100%;
    height: auto;
  }
  .site-header.sticky .main-menu a:before {
    display: none;
  }
  .site-header.sticky .main-menu a span {
    display: block;
  }
  .site-header.sticky .main-menu a .text-small {
    display: block;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: .12em;
  }
  .site-header.sticky .main-menu a:active {
    color: #fff;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .site-header.sticky .main-menu a:hover {
    color: #fff;
  }
}
@media (min-width: 751px) {
  .site-header.sticky .main-menu .active,
  .site-header.sticky .main-menu .mPS2id-highlight-first {
    color: #fff;
  }
  .site-header.sticky .site-menu {
    top: 0;
    right: 0;
  }
  .site-header.sticky .site-menu .menu-toggle {
    display: block;
  }
  .site-header.sticky .site-menu .menu-toggle.is-hide {
    display: none;
  }
  .site-header.sticky .site-menu .menu-close {
    display: block;
  }
  .site-header.sticky .site-menu.is-view .menu-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu {
    display: block;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .menu-close {
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }
}

.site-menu {
  position: absolute;
  top: 40px;
  right: 28px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.main-menu li {
  position: relative;
  padding: 0 12px;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 38px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  width: 112px;
  height: 39px;
}
.main-menu a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/menu-item.png);
  background-size: 100% 100%;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.main-menu a span {
  position: relative;
}
.main-menu a .text-small {
  display: none;
  color: #FFBC60;
  background: #FFA62C;
  background: linear-gradient(to right, #ffa62c 0%, #ffbc60 52%, #f3e249 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-menu a:active {
  color: #321704;
  font-weight: 700;
}
.main-menu a:active:before {
  background-image: url(../images/menu-item-active.png);
}
@media (hover: hover) {
  .main-menu a:hover {
    color: #321704;
    font-weight: 700;
  }
  .main-menu a:hover:before {
    background-image: url(../images/menu-item-active.png);
  }
}
.main-menu .active,
.main-menu .mPS2id-highlight-first {
  color: #321704;
  font-weight: 700;
}
.main-menu .active:before,
.main-menu .mPS2id-highlight-first:before {
  background-image: url(../images/menu-item-active.png);
}

.section {
  position: relative;
  z-index: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: .08em;
}
.section.in-view {
  opacity: 1;
  animation: none;
}
.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  background-color: transparent;
}
.section a {
  text-decoration: none;
}
.section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section .section-header .text-small {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  letter-spacing: .12em;
  font-family: 'Roboto', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  color: #03A9A7;
  text-transform: uppercase;
}
.section .heading {
  font-size: 36px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  color: #015251;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.section .heading:before, .section .heading:after {
  content: "";
  width: 75px;
  height: 8px;
  background-image: url(../images/heading-line.svg);
  background-size: 75px 8px;
  display: inline-block;
  margin-top: 4px;
}
.section .heading span {
  padding: 0 18px;
}
.section .section-content {
  margin: 0 auto;
}

.kv {
  position: relative;
  width: 100%;
  z-index: 0;
  padding: 0;
  background-color: #01717d;
}
.kv .bg {
  background-image: url(../images/kv-bg.jpg);
  background-position: center top;
  background-size: auto 100%;
}
.kv .container {
  padding: 0;
  max-width: 1280px;
  z-index: 2;
}
.kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  font-size: 0;
}
.kv .layer img {
  width: 100%;
  height: auto;
}
.kv.active .bg {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
}
.kv.active .kv-slogan {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: .1s;
}
.kv.active .kv-main {
  -moz-animation: zoomInDown 0.8s both;
  -webkit-animation: zoomInDown 0.8s both;
  animation: zoomInDown 0.8s both;
  animation-delay: .4s;
}

.about .bg {
  background: #0F8B94;
  background: linear-gradient(360deg, #0f8b94 0%, #087a89 100%);
}
.about .container {
  padding-top: 50px;
  padding-bottom: 70px;
}
.about .section-header .text-small {
  color: #FED52B;
  background: #FED52B;
  background: linear-gradient(to top left, #fed52b 0%, #ffe23e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .section-header .heading {
  color: #fff;
}
.about .section-content {
  color: #fff;
}
.about .text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}
.about .text p + p {
  margin-top: 16px;
}
.about .text .text-lg {
  color: #FED52B;
  font-size: 32px;
  line-height: 40px;
  margin-top: 20px;
  background: #FED52B;
  background: linear-gradient(to left, #fed52b 0%, #ffe23e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .info {
  margin-top: 50px;
}
.about .info .item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: left;
}
.about .info .item + .item {
  margin-top: 8px;
}
.about .info .image {
  margin-right: 12px;
  width: 40px;
}
.about .info .image img {
  width: 100%;
}
.about .info .main-text {
  font-size: 24px;
  font-weight: 700;
}
.about .info .sub-text {
  font-size: 16px;
  font-weight: 400;
}
.about .info .text-lg {
  font-size: 38px;
  font-weight: 900;
}
.about .info .text-md {
  font-size: 32px;
  margin: 0 -.4em;
}
.about .action {
  text-align: center;
  margin-top: 40px;
}
.about .btn {
  background-image: url(../images/btn-bg.png);
  background-size: 100% 100%;
  background-position: center top;
  font-size: 24px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  color: #43090A;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 190px;
  height: 60px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 51px 100px rgba(114, 68, 0, 0.23), 0 12px 22px rgba(114, 68, 0, 0.14), 0 4px 7px rgba(114, 68, 0, 0.09);
}
.about .btn img {
  margin: 0 0 0 6px;
  width: 32px;
}

.speaker .bg {
  background: #B5E6E6;
  background: linear-gradient(360deg, #b5e6e6 0%, #eeffff 100%);
}
.speaker .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.speaker .section-header {
  margin-bottom: 35px;
}
.speaker .section-header .heading:before, .speaker .section-header .heading:after {
  background-image: url(../images/heading-line2.svg);
}
.speaker .section-content {
  max-width: 1110px;
}
.speaker .landing-swiper-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.speaker .l-swiper {
  z-index: 0;
}
.speaker .swiper-slide {
  width: calc(100% / 3);
}
.speaker .item {
  padding: 25px;
  display: block;
  position: relative;
  word-break: normal;
  color: #015251;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: .08em;
}
.speaker .image {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 2px 3px 25px rgba(6, 66, 69, 0.2);
}
.speaker .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.speaker .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker .content {
  padding-top: 30px;
}
.speaker .top-text {
  color: #008F8E;
  margin-bottom: 4px;
}
.speaker .main-text {
  font-size: 32px;
  line-height: 46px;
  font-weight: 700;
}
.speaker .sub-text {
  font-weight: 700;
}
.speaker .text-small {
  font-size: 15px;
}
@media (min-width: 751px) {
  .speaker .swiper-wrapper {
    transform: none !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .speaker .swiper-button-prev,
  .speaker .swiper-button-next {
    display: none;
  }
  .speaker .swiper-pagination {
    display: none;
  }
}

.agenda {
  letter-spacing: 0;
}
.agenda .bg {
  background: #007676;
  background: linear-gradient(360deg, #007676 0%, #017d7d 100%);
}
.agenda .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.agenda .section-header {
  margin-bottom: 50px;
}
.agenda .section-header .text-small {
  color: #FED52B;
  background: #FED52B;
  background: linear-gradient(to top left, #fed52b 0%, #ffe23e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.agenda .section-header .heading {
  color: #fff;
}
.agenda .section-content {
  max-width: 800px;
}
.agenda .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  gap: 12px 56px;
  margin: 0 0 24px;
  color: #fff;
}
.agenda .info .item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: left;
}
.agenda .info .image {
  margin-right: 12px;
  width: 52px;
}
.agenda .info .image img {
  width: 100%;
}
.agenda .info .content {
  width: calc(100% - 52px - 12px);
}
.agenda .info .main-text {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  color: #FED52B;
  background: #FED52B;
  background: linear-gradient(to top left, #fed52b 0%, #ffe23e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.agenda .info .sub-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
}
.agenda .info .text-lg {
  font-size: 28px;
}
.agenda .info .text-md {
  font-size: 24px;
  margin: 0 -.4em;
}
.agenda .agenda-table {
  max-width: 784px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  color: #063131;
  letter-spacing: 0;
}
.agenda .agenda-table__header {
  background-color: #0C4B4B;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.agenda .agenda-table__header .agenda-table__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.agenda .agenda-table__header img {
  width: 24px;
  margin-right: 4px;
}
.agenda .agenda-table__content {
  font-size: 20px;
  font-weight: 700;
}
.agenda .agenda-table__content .agenda-table__row {
  background-color: #fff;
}
.agenda .agenda-table__content .agenda-table__col {
  padding: 18px 12px;
}
.agenda .agenda-table__content .col-time {
  font-size: 18px;
}
.agenda .agenda-table__content .row-bg {
  background-color: #DFFFFF;
}
.agenda .agenda-table__content .row-bg2 {
  background-color: #A4E4E4;
}
.agenda .agenda-table__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.agenda .agenda-table__col {
  padding: 12px;
}
.agenda .agenda-table .col-time {
  width: 25%;
  text-align: center;
}
.agenda .agenda-table .col-agenda {
  width: 35%;
}
.agenda .agenda-table .col-speaker {
  width: 40%;
}
.agenda .agenda-table .text-small {
  font-size: 14px;
  line-height: 1.1;
}
.agenda .agenda-table .highlight {
  color: #1F9E9E;
}
.agenda .agenda-table .mb-1 {
  margin-bottom: .25em;
}
.agenda .agenda-table .mb-2 {
  margin-bottom: .5em;
}
.agenda .agenda-table .mb-3 {
  margin-bottom: .75em;
}
.agenda .bottom-text {
  color: #fff;
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}
.agenda .bottom-text .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -6px;
}
.agenda .bottom-text .block {
  margin: 0 6px;
}
.agenda .bottom-text ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -6px;
}
.agenda .bottom-text ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 6px;
}
.agenda .bottom-text ul img {
  width: 20px;
  margin-right: 4px;
}

.registration .bg {
  background: #B5E6E6;
  background: linear-gradient(360deg, #b5e6e6 0%, #eeffff 100%);
}
.registration .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.registration .section-header {
  margin-bottom: 24px;
}
.registration .section-header .heading:before, .registration .section-header .heading:after {
  background-image: url(../images/heading-line2.svg);
}
.registration .form {
  max-width: 550px;
  margin: 0 auto;
  color: #015251;
}
.registration .top-text {
  width: 165px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1;
  color: #29848F;
  text-align: center;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.registration .top-text .required {
  color: #FBC859;
  font-size: 24px;
  position: relative;
  top: .1em;
  margin-right: 6px;
}
.registration .action {
  margin-top: 32px;
}
.registration .btn {
  background-image: url(../images/btn-bg_lg.png);
  background-size: 100% 100%;
  background-position: center top;
  font-size: 24px;
  line-height: 63px;
  font-weight: 700;
  text-align: center;
  color: #43090A;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
  height: 63px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 51px 100px rgba(114, 68, 0, 0.23), 0 12px 22px rgba(114, 68, 0, 0.14), 0 4px 7px rgba(114, 68, 0, 0.09);
}
.registration .btn img {
  margin: 0 0 0 6px;
  width: 32px;
}

.site-footer {
  background-color: #063131;
  color: #fff;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}
.site-footer .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-footer span {
  display: inline-block;
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 40px;
  right: 40px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
}
.menu-toggle.is-hide {
  display: none;
}

.menu-close {
  display: block;
  position: fixed;
  top: 40px;
  right: 40px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: contain;
  background-image: url(../images/menu-close.png);
}

.side-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.side-sticky.is-view .btn-top {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
}
.side-sticky a {
  display: block;
  cursor: pointer;
}
.side-sticky .btn {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.side-sticky .btn + .btn {
  margin-top: 22px;
}
.side-sticky .btn-cta {
  width: 74px;
}
.side-sticky .btn-top {
  width: 52px;
  margin: 0 auto;
  border-radius: 13px;
  box-shadow: 0 0 1.63px #0d94a0, 0 3.25px 24.38px rgba(255, 255, 255, 0.4);
}

.floating {
  animation-name: floating;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, -5px);
  }
  to {
    transform: translate(0, 0);
  }
}
.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
@media (min-width: 1280px) {
  .kv {
    background-image: url(../images/kv-bg_xl.jpg);
    background-position: center top;
    background-size: auto 100%;
  }
  .kv .bg {
    background-image: url(../images/kv-bg_lg.jpg);
  }
}
@media (max-width: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    padding: 0 15px;
    max-width: 375px;
  }

  .site-menu {
    top: 0;
    right: 0;
  }
  .site-menu .menu-toggle {
    display: block;
    top: 16px;
    right: 16px;
  }
  .site-menu .menu-toggle.is-hide {
    display: none;
  }
  .site-menu .menu-close {
    display: block;
    top: 16px;
    right: 16px;
  }
  .site-menu.is-view .menu-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .site-menu.is-view .menu-panel .main-menu {
    display: block;
  }
  .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-menu.is-view .menu-panel .menu-close {
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }

  .menu-panel {
    display: none;
    background: #0F8B94;
    background: linear-gradient(360deg, #0f8b94 0%, #087a89 100%);
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding: 100px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }

  .main-menu {
    width: 276px;
  }
  .main-menu li {
    padding: 24px 0;
    border-bottom: 1px solid #5CD2DC;
    position: relative;
  }
  .main-menu li:before, .main-menu li:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 7px;
    height: 7px;
    border: 1px solid #5CD2DC;
    border-radius: 50%;
    background-color: #0b818e;
  }
  .main-menu li:before {
    left: 0;
  }
  .main-menu li:after {
    right: 0;
  }
  .main-menu li:last-child {
    border-bottom: 0;
  }
  .main-menu li:last-child:before, .main-menu li:last-child:after {
    display: none;
  }
  .main-menu a {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: .08em;
    width: 100%;
    height: auto;
  }
  .main-menu a:before {
    display: none;
  }
  .main-menu a span {
    display: block;
  }
  .main-menu a .text-small {
    display: block;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: .12em;
  }
  .main-menu a:active {
    color: #fff;
  }
}
@media (max-width: 750px) and (hover: hover) {
  .main-menu a:hover {
    color: #fff;
  }
}
@media (max-width: 750px) {
  .main-menu .active,
  .main-menu .mPS2id-highlight-first {
    color: #fff;
  }

  .side-sticky {
    bottom: 18px;
    right: 18px;
  }
  .side-sticky.change-bottom {
    bottom: -15px;
  }
  .side-sticky .btn-cta {
    width: 70px;
  }

  .section .bg {
    background-size: 100% auto;
  }
  .section .container {
    max-width: 375px;
    padding: 0 15px;
  }
  .section .section-header {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .section .section-content {
    max-width: 100%;
  }

  .kv .bg {
    background-image: url(../images/kv-bg_s.jpg);
    background-size: auto 100%;
  }
  .kv .container {
    padding: 0;
    max-width: 375px;
  }

  .about .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about .text span {
    display: inline-block;
  }
  .about .info {
    margin-top: 50px;
  }
  .about .info .image {
    margin-right: 8px;
    width: 40px;
  }
  .about .info .main-text {
    font-size: 20px;
  }
  .about .info .sub-text {
    font-size: 15px;
  }
  .about .info .text-lg {
    font-size: 24px;
  }
  .about .info .text-md {
    font-size: 20px;
  }

  .speaker .container {
    padding: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .speaker .section-header {
    margin-bottom: 0;
  }
  .speaker .section-content {
    max-width: 100%;
  }
  .speaker .landing-swiper-container {
    padding: 0 15px;
  }
  .speaker .swiper-pagination {
    display: block;
  }
  .speaker .swiper-slide {
    width: 100%;
  }
  .speaker .item {
    padding: 30px 15px;
  }
  .speaker .image {
    max-width: 240px;
  }
  .speaker .content {
    padding-top: 20px;
  }

  .agenda .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .agenda .section-header {
    margin-bottom: 32px;
  }
  .agenda .info {
    margin: 0 0 24px;
    display: block;
  }
  .agenda .info .item {
    margin: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .agenda .info .item + .item {
    margin-top: 12px;
  }
  .agenda .info .image {
    margin-right: 4px;
  }
  .agenda .info .main-text {
    font-size: 20px;
    line-height: 28px;
  }
  .agenda .info .sub-text {
    font-size: 16px;
    line-height: 22px;
    margin-top: 5px;
  }
  .agenda .info .text-lg {
    font-size: 24px;
  }
  .agenda .info .text-md {
    font-size: 20px;
  }
  .agenda .agenda-table__header .col-time,
  .agenda .agenda-table__header .col-speaker {
    display: none;
  }
  .agenda .agenda-table__header .col-agenda {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .agenda .agenda-table__content .agenda-table__row {
    padding: 16px;
  }
  .agenda .agenda-table__content .agenda-table__col {
    padding: 0;
  }
  .agenda .agenda-table__content .col-time {
    font-size: 18px;
  }
  .agenda .agenda-table__row {
    display: block;
  }
  .agenda .agenda-table__col {
    padding: 12px;
  }
  .agenda .agenda-table .col-time {
    width: 100%;
    text-align: left;
    color: #1F9E9E;
    margin-bottom: 8px;
  }
  .agenda .agenda-table .col-agenda {
    width: 100%;
  }
  .agenda .agenda-table .col-speaker {
    width: 100%;
    border-top: 1px solid #39A7A7;
    padding-top: 12px;
    margin-top: 12px;
  }
  .agenda .agenda-table .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
  }
  .agenda .agenda-table .item + .item {
    margin-top: .75em;
  }
  .agenda .agenda-table .item .mb-1 {
    margin-bottom: 0;
    margin-right: .25em;
    white-space: nowrap;
  }
  .agenda .agenda-table .item .mb-3 {
    margin-bottom: 0;
  }
  .agenda .agenda-table .item + .text-small {
    margin-top: .25em;
  }
  .agenda .bottom-text {
    font-size: 16px;
  }
  .agenda .bottom-text .group {
    display: block;
    margin: 0;
  }
  .agenda .bottom-text .block {
    margin: 0 6px;
  }
  .agenda .bottom-text ul {
    display: block;
    margin: 12px 0 0;
  }
  .agenda .bottom-text ul li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0;
  }

  .registration .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .registration .form {
    width: 327px;
  }
  .registration .btn {
    background-image: url(../images/btn-bg_sm.png);
  }

  .site-footer .container {
    padding: 20px 10px;
  }
}
